I am working in my own git-branch in a big project. Once I have a stable feature I send a pull request to get my updates into master
.
Other colleagues however have their own branches and we have a blessed repo that we merge into our own branch to have the current newest stable global state.
Now here is the problem: When I fetch and then merge the blessed repo into my own branch, then I encounter a merge conflict (A prompt opens and just states -> conflicting)
Now the issue is that this happens for all the pom.xml
(basically my whole project explorer is glowing red with merge conflicts in all the pom.xml
, even on ones I never touched and are not relevant for my files)
If I open a pom.xml
there are merge annotations like <----- HEAD
and so on.
Now how do I resolve this? Do I really have to manually go into each and every file and edit this? Can't I just have the merge overwrite all my stuff ... except for the few classes I edited?