Often when I do diffs I want to edit my local file before committing. This works very well in Eclipse's compare view as it allows you to easily edit the local file as well as copy changes from the previous version.
I am trying to setup git and kdiff3 to work the same way. It works as expected when I'm using kdiff3 as my mergetool. However when I set it up as the difftool, it gives me a read-only view so I can't do any edits. According to the documentation ( http://kdiff3.sourceforge.net/doc/documentation.html ) I would expect the --output option to give me the two file merge I want, but it does not. The relevant part of my .gitconfig:
[diff]
tool = kdiff3
[difftool "kdiff3"]
cmd = /Applications/kdiff3.app/Contents/MacOS/kdiff3 $LOCAL $REMOTE --output $LOCAL
trustExitCode = false
$' in$LOCALand$REMOTE, or at least put\"around$LOCALand$REMOTE? – VonC Sep 26 '12 at 7:35