how to quickly tell which files differ in mercurial revisions - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T21:33:39Zhttp://stackoverflow.com/feeds/question/822628http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/822628/how-to-quickly-tell-which-files-differ-in-mercurial-revisions5how to quickly tell which files differ in mercurial revisionsJason S2009-05-04T23:32:41Z2009-05-06T05:11:27Z
<p>This seems like it should be obvious but I can't figure it out.</p>
<p>Suppose I have mercurial revisions 4 and 7 and I want to see which files changed between those revisions. I can do a <code>hg diff -r 4 -r 7</code> to list the entire set of diffs... is there a way to just list the files that have changed?</p>
http://stackoverflow.com/questions/822628/how-to-quickly-tell-which-files-differ-in-mercurial-revisions/822652#8226527Answer by dfa for how to quickly tell which files differ in mercurial revisionsdfa2009-05-04T23:42:25Z2009-05-05T06:57:45Z<pre><code>hg status --rev 4:7
</code></pre>
http://stackoverflow.com/questions/822628/how-to-quickly-tell-which-files-differ-in-mercurial-revisions/828107#8281073Answer by Cyberdrow for how to quickly tell which files differ in mercurial revisionsCyberdrow2009-05-06T05:11:27Z2009-05-06T05:11:27Z<p>You can use "hg log" for this.</p>
<pre><code>hg log --verbose --rev=4:7 --style=changelog
</code></pre>
<p>Example:</p>
<pre><code>$ hg log -v -r4:7 --style=changelog
2008-08-03 21:40 +0200 XXXXX <XXXXXX.YYYY@xxxxxxxx.com> (475752c35880)
* osinfo.py: new file.
* os-info.py: deleted file.
* os-info.py, osinfo.py:
Rename os-info.py -> osinfo.py.
2008-08-03 21:52 +0200 XXXXXX <XXXXXX.YYYY@xxxxxxxx.com> (babf6df75ff4)
* iterate_file_lines.py, osinfo.py:
Add keyword substitution strings.
2008-08-03 21:53 +0200 XXXXXX <XXXXXX.YYYY@xxxxxxxx.com> (bc6fc22adb8e)
* iterate_file_lines.py:
Remove comment about coding conventions.
2008-08-08 19:43 +0200 XXXXXX <XXXXXX.YYYY@xxxxxxxx.com> (dbea6914b20f)
* .hgignore: new file.
* .hgignore:
Add .hgignore.
</code></pre>