On Feb 16, 2008, at 7:53 PM, Charles Bailey wrote:
Currently git mergetool is restricted to a set of commands defined in the script. You can subvert the mergetool.<tool>.path to force git mergetool to use a different command, but if you have a command whose invocation syntax does not match one of the current tools then you would have to write a wrapper script for it. [...] This is a preliminary patch which aims to make it easier to use a.n.other 3-way merge tool with git-mergetool without either hacking the source or writing a wrapper script for the tool.
Why not just add the tools you have in mind to git mergetool? If everyone did that eventually we would have direct support for a rather long list of tools. This would be the easiest solution for the end user: He could just choose the preferred tool and use it. The invocation of each merge tool would be coded in mergetool. The exact command line could be fine tuned and would be reviewed by other git developers. ...
git config --global mergetool.tortoise.cmd 'TortoiseMerge.exe \ /base:"$BASE" /theirs:"$REMOTE" /mine:"$LOCAL" /merged:"$path"' git config --global mergetool.p4.cmd 'p4merge.exe "$BASE" "$REMOTE" \ "$LOCAL" "$path"' git config --global mergetool.p4win.cmd 'P4WinMrg "$BASE" "$REMOTE" \ "$LOCAL" "$path"'
If you just integrated these tools directly I could use them right away instead of first reading the documentation of the custom mechanism and then looking up how to configure the right command line for the tool I want to use. If the tools were directly integrated I could for example just say "git mergetool --tool=p4". That does not mean I am opposed to adding a mechanism for handling custom tools. But easier for the end user would be if the tools were directly integrated. Steffen - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html