Reputation: 23
I recently resolved merge conflicts on 4 different files on the GitHub web editor. I am trying to go back and view the 4 files that had merge conflicts but I can't seem to find any merge conflict history.
Is there a way to view resolved merge conflicts on GitHub?
Upvotes: 2
Views: 176
Reputation: 1324268
Is there a way to view resolved merge conflicts on GitHub?
No, because once resolved, a file which had merge conflict (meaning merge markers) no longer has those markers, and is just a regular file part of a merge commit.
You would need, in a local clone of that GitHub repository, to:
Upvotes: 1