In Mercurial it's possible to hg status only the modified/added/removed files by doing:

hg st -m
hg st -a
hg st -r

Is it possible to obtain the same behaviour for the diff command? From the man page, it seems not.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

One option would be to use something like this:

hg status -mar --no-status | xargs hg diff

The --no-status flag insures that just the file name is sent to STDOUT.

link|improve this answer
2  
That won't work if you (wrongly!) have spaces in your files names. Then you need to use --print0 and -0 in hg and xargs, respectively. – Ry4an Sep 7 '10 at 17:36
1  
If the color option is set, then both hg commands must also include --color=never. – Tim Henigan Sep 7 '10 at 18:24
Thank you. I've created aliases for these commands and I'm now happy. It's a pity hg diff -m is not available, though. – Roberto Aloi Sep 8 '10 at 9:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.