1.我做了一个实验,先commit,再pull,并且FETCH_HEAD不同的情况下。然后我用下面第一种pull的写法,直接报错,不给合并。而第二种是可以自动merge的,只不过可能会有冲突。xxx:test_git horsen$ git pull origin developer:test1 From xxx ![rejected] developer -> test1 (non-fast-forward)xxx:test_git horsen$ git pull origin developer From xxxx * branch developer -> FETCH_HEAD Auto-merging ttt1.txt CONFLICT (content): Merge conflict in ttt1.txt Automaticmerge failed; fix conflicts and then commit the result.2.疑问第二种不就是省略了当前分支吗,讲道理第一种写法和第二种写法不是等价的吗为什么第二种可以merge,第二种直接rejected希望大佬解惑,谢谢
1 回答
牧羊人nacy
TA贡献1862条经验 获得超7个赞
git pull其实就是git fetch + git merge
所以..请问你可以git merge origin developer:test1?
git merge命令是用于从指定的commit合并到当前分支
的操作,注意是当前分支,你是不能指定合并到其他分支到
- 1 回答
- 0 关注
- 1079 浏览
添加回答
举报
0/150
提交
取消