I branched off of master a month ago and worked on a big project. Then I merged it back to master. No surprise, there were merge conflicts. I resolved them and committed the merge. Now a few days later I am testing some code and I found some changes that had been made on master that are gone. Question: did I mess up my conflict resolution, or did git automatically merge out that change? To put the question another way, is there a way in git to look at a merge commit and know which files had conflicts and how they were resolved?
Picture of what I'm talking about. (I'm visual)
|
+ <-------------------------+ Merge back to master
| |
+ -- Change that got lost +
| |
+-------------------------> + My branch
|
master
git show merge-commit-id
is not doing it for me. I am using Visual Studio with git in Team Explorer. I can plainly see that the code was lost (in red) in the merge commit, but I don't know if it was a conflict resolution or automatic git merge. The reason I'm asking is because I have many other changes on master that I want to make sure are still there. Thank you.
(I could revert the merge commit and do it again, but there would be many conflicts to resolve again... is that my only option?)