代码拉取完成,页面将自动刷新
#!/usr/bin/env python
#coding: utf-8
import subprocess
import datetime
def run_cmd(cmd):
code = subprocess.call(cmd, shell=True)
if code > 1:
raise Exception("'{}' 执行失败,返回code:{}".format(cmd, code))
def get_current_branch():
p = subprocess.Popen("git branch -a", shell=True, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
out, err = p.communicate()
rows = out.decode().split("\n")
for row in rows:
if row[0] == "*":
return row.split("* ")[1]
if __name__ == '__main__':
dt = datetime.datetime.now()
msg = dt.strftime("%Y%m%d%H%M")
current_branch = get_current_branch()
run_cmd("git add *")
run_cmd("git commit -a -m {}".format(msg))
run_cmd("git push origin {}".format(current_branch))
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。