Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List files that are different between two hg changesets [duplicate]

Tags:

diff

mercurial

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?

like image 334
jhourback Avatar asked Dec 10 '22 03:12

jhourback


1 Answers

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
like image 66
Christian Specht Avatar answered May 18 '23 21:05

Christian Specht