git操作
1、进入到项目根目录
2、右击鼠标选择Git Bash Here
3、设置你的名字和Email地址 (第一次使用时设置)
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
4、Git init # 初始化
5、git add --all # 添加项目
6、git commit -m "first commit" # 提交项目
7、第一次添加时,告诉Git要添加到哪里。
git remote add origin https://github.com/administrator-root/python17-api.git
8、push
git push -u origin master
posted on 2021-09-23 20:07 Test-Admin 阅读(24) 评论(0) 编辑 收藏 举报