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

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

#!/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()