Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mercurial generate file name only diff

Is there a way to generate a diff in mercurial that only gives the file names? I'd like to do something like

diff -r 1 --file-names-only

and get something like

+AddedFile.java
-RemovedFile.java
/ChangedFile.java
/AnotherChangedFile.java
like image 750
wmarbut Avatar asked Jan 04 '12 22:01

wmarbut


1 Answers

This should do the trick

hg status --rev revision1:revision2

Where revision1 and revision2 can be a changeset, tag etc.

like image 137
Carlo Chum Avatar answered Oct 21 '22 06:10

Carlo Chum