class GitCommand:
def __getattr__(self, name):
- def call(*args, suppress_stderr = False):
+ def call(*args, get_stderr = False):
cmd = ["git", name.replace('_', '-')] + list(args)
- with subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE if suppress_stderr else None) as p:
- (stdout, stderr) = p.communicate()
- if p.returncode != 0:
- raise Exception("Running %s returned non-zero exit code %d" % (str(cmd), p.returncode))
- stdout = stdout.decode('utf-8').strip('\n')
- return stdout
+ output = subprocess.check_output(cmd, stderr=subprocess.STDOUT if get_stderr else None)
+ return output.decode('utf-8').strip('\n')
return call
git = GitCommand()
if isBranch: # make sure we track the correct remote branch
git.branch("-u", self.commit, branchname)
# update it to the latest remote commit
- git.checkout(branchname, suppress_stderr=True)
+ git.checkout(branchname, get_stderr=True)
if mode == MODE_RESET:
git.reset("--hard", self.commit)
else: