How to make a Git merge operation ignore identical changes made to both branches?
Yesterday I had similar issue after a lot of cherry-pick from (and to) a side branch where I after merged with my main branch. A lot of conflicts with identical change. I solved this with a merge strategy: git checkout main-branch merge –no-commit -s recursive -X ours side-branch you can change “ours” to “theirs”. Be … Read more