Lines Matching refs:popen
456 popen = subprocess.Popen(['git', 'rev-parse', 'HEAD'],
460 stdout, stderr = popen.communicate()
463 if not (popen.returncode or stderr):
477 popen = subprocess.Popen(['git', 'remote'],
481 stdout, stderr = popen.communicate()
485 if not (popen.returncode or stderr):
493 popen = subprocess.Popen(['git', 'remote', 'get-url', remote],
497 stdout, stderr = popen.communicate()
500 if not (popen.returncode or stderr):
509 popen = subprocess.Popen(['git', '-P', 'tag', '--points-at', revision],
513 stdout, stderr = popen.communicate()
517 if not (popen.returncode or stderr):