I'm new to git, on OSX, using it via command line. I come from the world of Tortoise SVN and Beyond Compare on Windows.

I want to be able to pipe in diffs to happen via FileMerge which I have installed already.

I was able to do this with TextMate simply by using:

git diff | mate

But I'm not sure how to get that set up so I can use FileMerge instead?

link|improve this question
feedback

2 Answers

Although it's not exactly the same as piping stdin into a script, you can do this:

git difftool -t opendiff -y

That will launch FileMerge once for each file. Doing the whole project tree at once takes a little scripting.

See also this question.

link|improve this answer
thanks!!!!!!!!!!!!!! so "difftool" basically is like a regular "diff" command but giving the choice for an external diff tool? and "opendiff" calls FileMerge specifically? and i can still pass a path to a specific file to diff just one? sorry, at home now and unable to test on my work machine ;) – Doug Mar 18 '10 at 5:29
actually, that isn't doing anything for me i see. my command line just returns a prompt. i tried having filemerge fired up, nothing. – doug Mar 18 '10 at 16:25
Hi, Doug. It might be having trouble finding the "opendiff" binary on your path. What happens when you create a couple of text files, and then type "opendiff file1.txt file2.txt" in Terminal? – undees Mar 18 '10 at 20:42
thanks, this is a huge help – eiu165 Dec 4 '11 at 3:21
feedback

Create an executable script git-dif-cmd.sh

#!/bin/bash

xattr -w com.apple.TextEncoding "UTF-8;134217984" "$2"
xattr -w com.apple.TextEncoding "UTF-8;134217984" "$5"

/usr/bin/opendiff "$2" "$5" -merge "$1"

Now edit your .gitconfig file to include the lines

[diff]
    external = <path-to>/git-diff-cmd.sh

...replacing <path-to> by the path to git-diff-cmd.sh. Now git diff will use FileMerge, and correctly display UTF-8 Unicode characters.

link|improve this answer
This works great, but can anyone explain how I’d use this script with difftool instead? It seems when using cmd = <path-to>/git-diff-cmd.sh the script doesn’t get the same variables as when using external. – Boblet Jan 19 at 4:15
feedback

Your Answer

 
or
required, but never shown

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