Is possible to change default diff tool in Mercurial? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T06:05:36Zhttp://stackoverflow.com/feeds/question/238183http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/238183/is-possible-to-change-default-diff-tool-in-mercurial5Is possible to change default diff tool in Mercurial?Matías2008-10-26T16:14:44Z2009-09-18T14:53:50Z
<p>Hi,</p>
<p>Everytime that I do an 'hg diff file.ext' I end up using a console diff application. Is there a way to change that? I can't find a reference in Mercurial documentation (<strong>I'm not talking about merge!</strong>). I would like to use Kdiff3 or WinMerge (I'm using Windows).</p>
<p>Thanks for your time.
Best regards.</p>
http://stackoverflow.com/questions/238183/is-possible-to-change-default-diff-tool-in-mercurial/238235#2382350Answer by Bogdan Maxim for Is possible to change default diff tool in Mercurial?Bogdan Maxim2008-10-26T16:42:51Z2008-10-26T16:42:51Z<p>Hi,</p>
<p><a href="http://stackoverflow.com/questions/42980/how-to-use-p4merge-as-the-mergediff-tool-for-mercurial">Hope this post helps</a>.</p>
http://stackoverflow.com/questions/238183/is-possible-to-change-default-diff-tool-in-mercurial/241018#2410185Answer by Matías for Is possible to change default diff tool in Mercurial?Matías2008-10-27T18:45:54Z2008-10-27T18:45:54Z<p>I've solved this using a Mercurial built-in extension... I just have to add the following lines to Mercurial.ini (on Mercurial folder):</p>
<pre><code>[extensions]
hgext.extdiff=
[extdiff]
cmd.vdiff = kdiff3
</code></pre>
<p>When I want to use kdiff3 instead of diff I only have to use:</p>
<pre><code>hg vdiff file.ext
</code></pre>
http://stackoverflow.com/questions/238183/is-possible-to-change-default-diff-tool-in-mercurial/1445060#14450600Answer by Marcus Leon for Is possible to change default diff tool in Mercurial?Marcus Leon2009-09-18T14:53:50Z2009-09-18T14:53:50Z<p>With this config</p>
<pre><code>[extdiff]
cmd.kdiff3 =
</code></pre>
<p>I use this command to see diffs:</p>
<pre><code>hg kdiff
</code></pre>
<p>This shows a directory tree with all files that have changed. You click a file to see diffs for just the file. You may be able to add a file parameter to the command to just see one file.</p>
<p>More info <a href="http://mercurial.selenic.com/wiki/KDiff3" rel="nofollow">here</a>.</p>