加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
git.py 542 Bytes
一键复制 编辑 原始数据 按行查看 历史
有鲤鱼777 提交于 2022-01-20 20:06 . 增加说明文档和注释
#!/usr/bin/env python3
import os
import sys
import time
if __name__ == '__main__':
comment = time.localtime(time.time())
repo = "local"
if len(sys.argv) >= 2:
comment = sys.argv[1]
if len(sys.argv) >= 3:
repo = sys.argv[2]
cmd = 'git add src README.md aarch64-build.py x86_64-build.py CMakeLists.txt .gitignore git.py'
os.system(cmd)
cmd = 'git commit -m "{}"'.format(comment)
os.system(cmd)
if repo == "remote":
cmd = 'git push origin master'
os.system(cmd)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化