欢迎来到测试Test-Admin的博客

本来以为,学习了这么多年,我已经洞察了世界,真相却不过是蒙蔽了自己。原来世界如此精彩,而我却一无所知。昨天已经成为过去,明天还是一个未知,但今天是一个礼物。珍惜自己,把握每一寸光阴!

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编辑  收藏  举报

导航