Lines Matching refs:GIT
25 GIT = subprocess.check_output([WHICH, 'git']).splitlines()[0] variable
79 subprocess.check_call([GIT, 'clone', repo_url, dest_dir])
93 output = subprocess.check_output([GIT, 'stash'])
98 GIT, 'rev-parse', '--abbrev-ref', 'HEAD']).rstrip()
101 GIT, 'rev-parse', 'HEAD']).rstrip()
104 subprocess.check_call([GIT, 'fetch', 'origin'])
106 subprocess.check_call([GIT, 'checkout', '-b', self._branch,
111 subprocess.check_call([GIT, 'reset', '--hard', 'HEAD'])
112 subprocess.check_call([GIT, 'checkout', self._orig_branch])
114 subprocess.check_call([GIT, 'stash', 'pop'])
115 subprocess.check_call([GIT, 'branch', '-D', self._branch])