1 Star 0 Fork 0

Aimerliu/echartbNoteBook

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
push.py 827 Bytes
一键复制 编辑 原始数据 按行查看 历史
Aimerliu 提交于 2022-01-11 10:03 . 刘娅清=>10:3:46-update
'''
Author: your name
Date: 2021-11-03 15:14:24
LastEditTime: 2021-11-11 18:25:59
LastEditors: your name
Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
FilePath: \middleground\push.py
'''
import os
import sys
import datetime
import winreg
if __name__ == '__main__':
default = '刘娅清'
if "GIT_NAME" in os.environ:
username = os.getenv('GIT_NAME')
else:
os.putenv('GIT_NAME', default)
username = default
if len(sys.argv) > 1:
desc = sys.argv[1]
else:
curr = datetime.datetime.now()
desc = f"{username}=>{curr.hour}:{curr.minute}:{curr.second}-update"
os.system('git add ./')
os.system(f'git commit -m "{desc}"')
os.system('git pull')
os.system('git push')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/aimerliu/echartb-note-book.git
git@gitee.com:aimerliu/echartb-note-book.git
aimerliu
echartb-note-book
echartbNoteBook
master

搜索帮助