I'd like to know the best/easiest way to get a visual diff of a file given two revisions in Mercurial. I.e., I'd like to visualize the difference between revision 3 and revision 12, etc.

link|improve this question

74% accept rate
feedback

1 Answer

up vote 4 down vote accepted

If by 'visual' you mean a text comparison you can do:

hg diff -r 3 -r 12

If you want a GUI tools you can easily configure and use the ExtDiff extension, which comes with Mercurial, and use:

hg yourdiff -r 3 -r 12

where yourdiff was configured in your hgrc file.

link|improve this answer
I'd like to do exactly this, but from TortoiseHG's Repository Explorer. I feel like this should be right in front of me but I'm not seeing it. – epalm Mar 31 '11 at 14:43
feedback

Your Answer

 
or
required, but never shown

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