I want to use opendiff as default diff-tool for git diff. This used to work but for some reason stopped working. I'm using a script:

echo opendiff $2 $5 > opendiff-git.sh

which is set in .gitconfig:

[diff]
external = ~/opendiff-git.sh

This stopped working for me lately. What is wrong?

Update: When I cloned a new repository everything worked fine! Strange!

link|improve this question
Is it reporting an error? Or just giving a regular built-in diff? – cxreg Jun 15 '11 at 5:59
No it's not reporting an error when using git diff it just print the diff in the terminal. I can also use opendiff by itself. – Ida Jun 15 '11 at 6:57
feedback

2 Answers

make sure your opendiff-git.sh file has its executable bits set:

chmod +x ~/opendiff-git.sh
link|improve this answer
The executable bits is set. – Ida Jun 15 '11 at 6:56
feedback

I found this question while I was trying to set opendiff as my git diff & merge tool. Weird thing is that when I used the echo opendiff $2 $5 > opendiff-git.sh to create a script the script did not contain the argument place holders $2 $5 I added them in manually and it started working!

This command

echo opendiff $2 $5 > opendiff-git.sh

Resulted in opendiff-git.sh file containing

opendiff

I added the two argument placeholders $2 $5 manually

opendiff $2 $5

Made the shell script executable as suggested by knittl

chmod +x ~/opendiff-git.sh

And it works!

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.