For a given file in a Mercurial repository, how can you see the revision history?
And how can you diff two revisions of the file?
Ideally doing all this wi
For readability
hg diff -r revision1:revision2 file
Where revision1 and revision2 can be a tag, changeset etc.