hg: how do I view a file as it was at a particular revision?
In Mercurial, I can do
hg glog templates/base.html
to see the complete revision history for a file.
How can I view the file as it was at, say, changeset 1000开发者_StackOverflow社区?
thanks!
hg cat -r 1000 templates/base.html
精彩评论