shell script to resolve/cleanup git conflicts?

735 Views Asked by At

Was trying to merge new commits from opensource and faced conflicts. git introduced "<<<<<<< HEAD" and "=======" Thought of checking for any shell script to reduce the burden?

1

There are 1 best solutions below

0
On

You would reduce the burden through a mergetool, which would present you all the files with conflicts to resolve.

See for instance "Merging With a GUI" and "Merging with “git mergetool”"

git mergetool -t kdiff3

http://www.gitguys.com/gitguys/merging/images/kdiff3.png

That way, the GUI merge tool take care of those merge markers for you.