How do I configure Apple's FileMerge program to function as Mercurial's merge tool? I have my .hgrc file setup in my home directory and I simply want to configure FileMerge as the merge program.

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

As described in the hg wiki, this has worked for me with various versions of hg:

  • Create a script somewhere in your $PATH, say in /usr/local/bin:
$ more /usr/local/bin/opendiff-w
#!/bin/sh
# opendiff returns immediately, without waiting for FileMerge to exit.
# Piping the output makes opendiff wait for FileMerge.
opendiff "$@" | cat
  • Add the following sections to your ~/.hgrc:
[extdiff]
cmd.interdiff = hg-interdiff
cmd.opendiff = opendiff-w

[merge-tools]
filemerge.executable = opendiff-w
filemerge.args = $local $other -ancestor $base -merge $output

[extensions]
extdiff = 
link|improve this answer
3  
For others: opendiff-w is the script file which end up being referenced in the .hgrc file (this wasn't too obvious to me). The first code block is the contents. Also, changed the permissions to add execute chmod +x opendiff-w – Frank V Aug 27 '09 at 1:11
For others: Something that was not obvious to me: You now need to run $hg opendiff (to see the output in FileMerge); $hg diff will still show you the output on the command line – Vaibhav Bajpai Jun 24 '11 at 12:19
3  
For others: ... and you need to enable extdiff extension in ~/.hgrc – Vaibhav Bajpai Jun 24 '11 at 12:34
feedback

I haven't tried it, but I'm betting you need to point all the way to the FileMerge executable, not just the app bundle.

So:

[ui] merge = /Developer/Applications/Utilities/FileMerge.app/Contents/MacOS/FileMerge

link|improve this answer
I tried this, it isn't that easy. – Frank V Aug 20 '09 at 15:26
I tried it as well, I got: FileMerge[51550:30f] Couldn't create connection for root – jammon Sep 12 '11 at 5:43
feedback

Update: The Mercurial wiki has a page about FileMerge. Read that first.

I haven't tried to use FileMerge but a general overview might help. Most of what you want to know is described at the Mercurial wiki's MergeProgram page. The short version is your typical choices are:

Set the HGMERGE environment variable to point at the merge tool you want.

or, add the following to your .hgrc:

 [ui]
 merge = /path/to/toolname

 [merge-tools]
 toolname.args = $base $local $other

The key is that a merge tool needs to take three arguments: the base revision, your local changes, and the changes from the other branch. You use the first configuration to specify the tool, and the second to specify how it takes arguments.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.