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
Resolving a conflict is just like dealing with any other work in progress. All changes must be staged (git add) and then committed. Files which have successfully auto merged are already staged. Conflicted files are not.
Edit the conflicted files to your satisfaction, stage them (git add), and when that is all done, git commit.
In your case specifically...
test.cpp to fix the conflicts (they have <<<< markers)git add test.cppgit commit