Suppose I'm on Git branch master and I git merge featurebranch. There is a conflict in foo.html.
When I open foo.html, I see, in the area of the conflict, what master has and what featurebranch has. But I can't really tell what change was made on master that conflicted with featurebranch; I only know what master has now.
I'd like to see the diff that each one applied.
Or, to get the same information, I could see:
- The version
masterhas now - The version
featurebranchhas now - The version their common ancestor had
How can I see this?