【Python】一键git脚本
使用git bash上传仓库是比较繁琐的,此脚本可以一键将你写好的项目上传到github配置git环境变量以下为windows配置方法找到git的安装路径,将以下路径添加到环境变量磁盘名称:\...\Git磁盘名称:\...\Git\mingw64\libexec\git-core磁盘名称:\...\Git\mingw64\bin检验是否配置完毕cmd输入pythonimpo...
·
使用git bash上传仓库是比较繁琐的,此脚本可以一键将你写好的项目上传到github
配置git环境变量
以下为windows配置方法
找到git的安装路径,将以下路径添加到环境变量
磁盘名称:\...\Git
磁盘名称:\...\Git\mingw64\libexec\git-core
磁盘名称:\...\Git\mingw64\bin
检验是否配置完毕
cmd输入
python
import os
os.system('git')
若出现上图所示情况,代表配置成功
PS:
1:请在cmd或powershell中输入命令,在Python的原生shell中会只返回1
一键git脚本模块
main.py
可能以后会有更新
import os
import time
__AUTHOR__ == 'Catci'
def updata(description=None,gitsite=None):
os.system('git init')
os.system('git add .')
os.system('git status')
description = input('please input your Repositories description:\n')
os.system('git commit -m' + description)
gitsite = input('please input your Repositories website:\n')
if gitsite[:19] =='https://github.com/'
print('website is no wrong')
os.system('git remote add origin' + gitsite)
os.system('git push origin master')
list_ = [i for os.popen(command).readlines() in os.popen(command)]
if list_[2][:5} == 'error'
os.system('git pull origin master')
os.system('git pull origin master')
print('updata successfully')
else:
print('updata successfully')
else:
print('your gitsite is wrong,please check it!\nthe right site is https://github.com/....')
time.sleep(3)
if __name__ == '__main__':
updata()
更多推荐
所有评论(0)