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.
|
feedback
|
|
As described in the hg wiki, this has worked for me with various versions of hg:
| |||||||||||
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 | |||||
feedback
|
|
Update: The Mercurial wiki has a page about FileMerge. Read that first. I haven't tried to use Set the or, add the following to your
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. | ||||
|
feedback
|