Lines Matching defs:subprocess
4 import subprocess
42 ret = subprocess.call(['git', 'cat-file', '-e', commit],
43 stdout=subprocess.DEVNULL,
44 stderr=subprocess.DEVNULL)
52 ret = subprocess.call(['git', 'merge-base', '--is-ancestor',
54 stdout=subprocess.DEVNULL,
55 stderr=subprocess.DEVNULL)
64 out = subprocess.check_output(['git', 'log', '--format=%H',
67 stderr=subprocess.DEVNULL)
80 out = subprocess.check_output(['git', 'rev-parse', commit],
81 stderr=subprocess.DEVNULL)
89 out = subprocess.check_output(['git', 'remote', '--verbose'],
90 stderr=subprocess.DEVNULL)