I\'m trying to merge a pull request that has one conflict in one file (see below). The instructions for merging the pull request are provided by github are as follows. Its i
There's no way around resolving conflicts, that's how revision control works (if Alice says "a" and Bob says "b", how should Git know which one is correct unless you tell it?). All you can do is direct git to resolve them itself when merging in one of several possible ways, e.g.
git merge -s recursive -X theirs
(-s recursive is the default when there's only one so you can omit it here)
Now that you already have a conflict in your tree, you either
git add it (add in Git doubles as marking a file resolved)git commit to complete the merge; orgit merge --abort and retry the merge with the above-mentioned auto-resolution options