私は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
ますか?