I am using mercurial for version control of a few files in a directory. Suppose I have 10 commits (10 changesets or revisions). I want to just view how a particular file, say th
To extract a specific revision of a specific file you can do this in Windows:
hg cat "" -r 9 > ""
Here, 9 is the revision number.
Or even better:
hg cat "" -r 9 -o ""