一、首次提交
1、git init 初始化
2、git add REAME.md
3、git config --global user.name "xxx" 名字
4、git config --global user.email "xxxxxx@.163.com" 邮箱
5、git commit -m "备注这里随便写"
6、git remote add orgin https://github.com/xxxx/xxxx.git 项目地址
7、最后git push 或者 git push -u origin master
二、首次提交后、同一个项目以后就可以这样啦
1、先查看状态 git status
2、避免不必要的麻烦 再拉取 git pull
3、再git add . 代表全部的master
4、本次提交的备注 git commit -m "xxxx"
5、最后git push就好了
三、首次拉取
1、git config --global user.name "xxx" 名字
2、git config --global user.email"xxx" 邮箱
3、git clone https://github.com/xxxxx/xxx.git 项目地址啦
四、首次拉去后以后同一个项目
直接git pull