summaryrefslogtreecommitdiff
path: root/git_remote_helpers/git/importer.py
blob: af2919d92cee77b5e806dfdcb8361187d86e4b0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
import subprocess
 
 
class GitImporter(object):
    """An importer for testgit repositories.
 
    This importer simply delegates to git fast-import.
    """
 
    def __init__(self, repo):
        """Creates a new importer for the specified repo.
        """
 
        self.repo = repo
 
    def do_import(self, base):
        """Imports a fast-import stream to the given directory.
 
        Simply delegates to git fast-import.
        """
 
        dirname = self.repo.get_base_path(base)
        if self.repo.local:
            gitdir = self.repo.gitpath
        else:
            gitdir = os.path.abspath(os.path.join(dirname, '.git'))
        path = os.path.abspath(os.path.join(dirname, 'git.marks'))
 
        if not os.path.exists(dirname):
            os.makedirs(dirname)
 
        args = ["git", "--git-dir=" + gitdir, "fast-import", "--quiet", "--export-marks=" + path]
 
        if os.path.exists(path):
            args.append("--import-marks=" + path)
 
        subprocess.check_call(args)