Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to quickly tell which files differ in mercurial revisions

Tags:

mercurial

This seems like it should be obvious but I can't figure it out.

Suppose I have mercurial revisions 4 and 7 and I want to see which files changed between those revisions. I can do a hg diff -r 4 -r 7 to list the entire set of diffs... is there a way to just list the files that have changed?

like image 255
Jason S Avatar asked May 04 '09 23:05

Jason S


1 Answers

hg status --rev 4:7
like image 65
dfa Avatar answered Sep 21 '22 00:09

dfa