您的位置:首页 > 编程语言 > Python开发

【Python】一键git脚本

2020-04-27 07:19 239 查看

使用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()
  • 点赞
  • 收藏
  • 分享
  • 文章举报
猫兮ぃCatci 发布了36 篇原创文章 · 获赞 3 · 访问量 3926 私信 关注
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: