python怎么调用repo命令,执行文件push到服务器上?或者调用git命令,执行文件push到服务器上?最好搞几行代码把
1条回答 默认 最新
醒着的树懒 2019-02-28 21:52关注#!/usr/bin/env python3
import os
import redef execCmd(cmd):
r = os.popen(cmd)
text = r.read()
r.close()
return textdef main():
getGitSHA = execCmd('git rev-parse --short HEAD')
getGitBranch = execCmd('git symbolic-ref --short -q HEAD')
os.system('git reset HEAD^^ --hard')
os.system('git pull')
os.system('git cherry-pick '+getGitSHA)
os.system('git gt-dpush origin '+getGitBranch)
os.system('git log')if name == "__main__":
main()解决 无用评论 打赏 举报