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 status
can do this.
The main purpose of hg status
is showing modified files in the working directory (in comparison to the last commit).
But you can use the --rev
parameter to let it compare two specific revisions instead, like this:
hg status --rev 5 --rev 10
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With