Reputation: 919
Is there any way to quickly view an earlier version of a file (at an earlier revision) in an text editor?
Thanks
Upvotes: 1
Views: 62
Reputation: 3669
With command line Mercurial:
hg cat -r REV -o %s-%r FILE
edit FILE-REV
del FILE-REV
In TortoiseHG Workbench:
Or starting TortoiseHG from command line:
thg filelog FILE
Upvotes: 2