Given a conflicted file foo.txt, how to tell git diff to show changes between the base version of the file and "their" version of the file?

I can see each of the versions via git show :1:foo.txt or git show:3:foo.txt - is there a simple way to compare the two versions?

link|improve this question

80% accept rate
feedback

1 Answer

Simply type git diff and it will show only the conflicts.

Further reading: 5_advanced_branching_and_merging

Notice the --base and --theirs arguments for diff

link|improve this answer
I only want to see "their" changes. When the chunks are large it is rather hard to infer that from the output of git diff alone. – Rafał Dowgird Dec 13 '11 at 11:43
If you mean that it's hard to see you might wanna use git difftool and then select your favourite diff ui, for instance meld. – Thomas Rawyler Dec 13 '11 at 11:45
Thanks, I know this (and also the diff3 conflict style option). I am just looking for a quick way to see "their" changes on a file. – Rafał Dowgird Dec 13 '11 at 11:51
As to --base and --theirs arguments for diff: can they be used to compare --base with --theirs? This would be what I'm looking for. – Rafał Dowgird Dec 13 '11 at 11:52
Sorry I got you wrong. git diff --base --theirs seems to change nothing in the output. – Thomas Rawyler Dec 13 '11 at 12:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.