summaryrefslogtreecommitdiff
path: root/git_remote_helpers/git/non_local.py
blob: f27389bb945ef423dc412c2368762439086f593e (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import os
import subprocess
 
from git_remote_helpers.util import die, warn
 
 
class NonLocalGit(object):
    """Handler to interact with non-local repos.
    """
 
    def __init__(self, repo):
        """Creates a new non-local handler for the specified repo.
        """
 
        self.repo = repo
 
    def clone(self, base):
        """Clones the non-local repo to base.
 
        Does nothing if a clone already exists.
        """
 
        path = os.path.join(self.repo.get_base_path(base), '.git')
 
        # already cloned
        if os.path.exists(path):
            return path
 
        os.makedirs(path)
        args = ["git", "clone", "--bare", "--quiet", self.repo.gitpath, path]
 
        child = subprocess.Popen(args)
        if child.wait() != 0:
            raise CalledProcessError
 
        return path
 
    def update(self, base):
        """Updates checkout of the non-local repo in base.
        """
 
        path = os.path.join(self.repo.get_base_path(base), '.git')
 
        if not os.path.exists(path):
            die("could not find repo at %s", path)
 
        args = ["git", "--git-dir=" + path, "fetch", "--quiet", self.repo.gitpath]
        child = subprocess.Popen(args)
        if child.wait() != 0:
            raise CalledProcessError
 
        args = ["git", "--git-dir=" + path, "update-ref", "refs/heads/master", "FETCH_HEAD"]
        child = subprocess.Popen(args)
        if child.wait() != 0:
            raise CalledProcessError
 
    def push(self, base):
        """Pushes from the non-local repo to base.
        """
 
        path = os.path.join(self.repo.get_base_path(base), '.git')
 
        if not os.path.exists(path):
            die("could not find repo at %s", path)
 
        args = ["git", "--git-dir=" + path, "push", "--quiet", self.repo.gitpath]
        child = subprocess.Popen(args)
        if child.wait() != 0:
            raise CalledProcessError