我有 2 个分支,master
并且newfeature
. 当我想合并newfeature
到master
时,我使用了:
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
?