我有2個分支,master
和newfeature
。當我想合併newfeature
爲master
,我用:合併衝突.gitignore
git checkout master
git merge newfeature
我得到的錯誤:
Auto-merging .gitignore
CONFLICT (content): Merge conflict in .gitignore
Automatic merge failed; fix conflicts and then commit the result.
我打開了.gitignore
,現在看起來像一個好惹的文件的最後部分看像
<<<<<<< HEAD
public/img/ignore
=======
public/img/profiles
public/blog
public/recommendation
>>>>>>> newfeature
發生了什麼,以及如何來固定的,這樣我可以分支合併爲master
?