1.git init
2.git remote add origin http://xxxxxxx.git #添加
3.git fetch origin #获取远程更新
4.git merge origin/master #把更新的内容合并到本地分支
5.git branch --set-upstream-to=origin/master master #需要将远程仓库和本地仓库关联起来
6.git pull --allow-unrelated-histories 然后使用git pull整合远程仓库和本地仓库
本地修改代码后提交
1.git commit -a
2.git push