Possible Duplicate:
Generating a list of which files changed between hg versions
hg diff -r 5 -r 10 will give the differences between revisions 5 and 10. But I want to see specifically just a list of files that are different – I don’t want to see the full diffs. Is there a quick way to do this?
hg statuscan do this.The main purpose of
hg statusis showing modified files in the working directory (in comparison to the last commit).But you can use the
--revparameter to let it compare two specific revisions instead, like this: