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 Automatic
merge failed; fix conflicts and then commit the result.
2.疑问
第二种不就是省略了当前分支吗,讲道理第一种写法和第二种写法不是等价的吗
为什么第二种可以merge,第二种直接rejected
希望大佬解惑,谢谢
牧羊人nacy
相关分类