dm菜鸟编程 2015-11-26 07:45 采纳率: 0%
浏览 1209

python怎么调用repo命令,执行文件push到服务器上?

python怎么调用repo命令,执行文件push到服务器上?或者调用git命令,执行文件push到服务器上?最好搞几行代码把

  • 写回答

1条回答 默认 最新

  • 醒着的树懒 2019-02-28 21:52
    关注

    #!/usr/bin/env python3
    import os
    import re

    def execCmd(cmd):

    r = os.popen(cmd)

    text = r.read()

    r.close()

    return text

    def 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()

    评论

报告相同问题?