git多人协作的工作模式学习
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git多人协作的工作模式学习相关的知识,希望对你有一定的参考价值。
推送自己的修改后的分支:git push origin branch-name;
若推送失败,则因为远程分支比你的本地更新,需要先用git pull origin branch-name从远程仓库中获取最新的分支;
若合并有冲突,则解决冲突,并在本地提交;
这就是多人协作的工作模式。
tips:git pull提示“no tracking information”,则说明本地分支和远程分支的链接关系没有创建,用命令git branch --set-upstream branch-name origin/branch-name。若开始的时候使用git checkout -b branch-name origin/branch-name创建与远程仓库相关联的分支,则不会出现提示“no tracking information”。
以上是关于git多人协作的工作模式学习的主要内容,如果未能解决你的问题,请参考以下文章