Skip to content

Instantly share code, notes, and snippets.

@ladder1984
Created December 21, 2015 09:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ladder1984/bd2d71144f0b903b878f to your computer and use it in GitHub Desktop.
Save ladder1984/bd2d71144f0b903b878f to your computer and use it in GitHub Desktop.
python执行git命令并得到结果
def git_shell(git_command):
try:
return os.popen(git_command).read().strip()
except:
return None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment