How can I configure Mercurial to use WinMerge for merges, under cygwin? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T16:38:00Zhttp://stackoverflow.com/feeds/question/548520http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/548520/how-can-i-configure-mercurial-to-use-winmerge-for-merges-under-cygwin1How can I configure Mercurial to use WinMerge for merges, under cygwin?Joel Spolsky2009-02-14T05:01:07Z2009-02-14T05:06:26Z
<p>When Mercurial is running under cygwin, it's a bit tricky to figure out how to spawn <a href="http://winmerge.org/" rel="nofollow">WinMerge</a> to resolve merge conflicts. How can I do this?</p>
http://stackoverflow.com/questions/548520/how-can-i-configure-mercurial-to-use-winmerge-for-merges-under-cygwin/548525#5485252Answer by Joel Spolsky for How can I configure Mercurial to use WinMerge for merges, under cygwin?Joel Spolsky2009-02-14T05:06:26Z2009-02-14T05:06:26Z<p>The trick is that cygwin paths are not the same as Windows paths, so you need a little script that converts the cygwin paths to Windows paths before passing them as arguments to WinMerge.</p>
<p>Here's how to do it:</p>
<p>(1) Create a shell script in <code>/usr/bin/winmerge</code> as follows:</p>
<pre><code>#!/bin/sh
"/cygdrive/c/Program Files/WinMerge/WinMergeU.EXE" /e /ub /dl other /dr local `cygpath -aw $1` `cygpath -aw $2` `cygpath -aw $3`
</code></pre>
<p>Note: <code>cygpath</code> converts path names. If WinMerge isn't in the default location, change the path here.</p>
<p>(2) Make that file executable</p>
<pre><code> chmod +x /usr/bin/winmerge
</code></pre>
<p>(3) Add the following to your <code>~/.hgrc</code> file:</p>
<pre><code>[ui]
merge = winmerge
[merge-tools]
winmergeu.executable=/usr/bin/winmerge
winmergeu.args=$other $local $output
winmergeu.fixeol=True
winmergeu.checkchanged=True
winmergeu.gui=False
</code></pre>
<p>Note! You probably already have a [ui] section with your name in it. Remember to merge my changes with yours, don't just add a new [ui] section. For example, my .hgrc looks like this:</p>
<pre><code>[ui]
username = Joel Spolsky <spolsky@example.com>
merge = winmergeu
[extensions]
fetch =
[merge-tools]
winmergeu.executable=/usr/bin/winmerge
winmergeu.args=$other $local $output
winmergeu.fixeol=True
winmergeu.checkchanged=True
winmergeu.gui=False
</code></pre>