how to quickly tell which files differ in mercurial revisions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:33:39Z http://stackoverflow.com/feeds/question/822628 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/822628/how-to-quickly-tell-which-files-differ-in-mercurial-revisions 5 how to quickly tell which files differ in mercurial revisions Jason S 2009-05-04T23:32:41Z 2009-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#822652 7 Answer by dfa for how to quickly tell which files differ in mercurial revisions dfa 2009-05-04T23:42:25Z 2009-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#828107 3 Answer by Cyberdrow for how to quickly tell which files differ in mercurial revisions Cyberdrow 2009-05-06T05:11:27Z 2009-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 &lt;XXXXXX.YYYY@xxxxxxxx.com&gt; (475752c35880) * osinfo.py: new file. * os-info.py: deleted file. * os-info.py, osinfo.py: Rename os-info.py -&gt; osinfo.py. 2008-08-03 21:52 +0200 XXXXXX &lt;XXXXXX.YYYY@xxxxxxxx.com&gt; (babf6df75ff4) * iterate_file_lines.py, osinfo.py: Add keyword substitution strings. 2008-08-03 21:53 +0200 XXXXXX &lt;XXXXXX.YYYY@xxxxxxxx.com&gt; (bc6fc22adb8e) * iterate_file_lines.py: Remove comment about coding conventions. 2008-08-08 19:43 +0200 XXXXXX &lt;XXXXXX.YYYY@xxxxxxxx.com&gt; (dbea6914b20f) * .hgignore: new file. * .hgignore: Add .hgignore. </code></pre>