28 cls.HEADER = '\033[95m'
29 cls.OKBLUE = '\033[94m'
30 cls.OKGREEN = '\033[92m'
31 cls.WARNING = '\033[93m'
37 def git(*args, repository_path='.'):
38 return subprocess.check_output(["git"] + list(args), cwd=repository_path,
39 stderr=subprocess.STDOUT).decode()