vote up 4 vote down star
3

I have my editor setup to be textmate but when I do a git diff it uses vi to show me the diff output, is there any way to set it to show the diff in textmate?

flag

3 Answers

vote up 8 vote down check

I normally pipe the contents to mate like this:

git diff | mate -
link|flag
Also, just as an interesting point: you don't need to specify the - when piping to mate because mate reads from stdin when run with no parameters. – thenduks Oct 22 at 22:03
vote up 2 vote down

If you have the Terminal link installed it's simple:

git diff | mate

I personally have an alias setup that maps 'diffmate' to that command.

link|flag
vote up 3 vote down

The GIT_PAGER environment variable is used to specify which program to use to show multi-page output. You should be able to set this to point to textmate.

link|flag
Thanks, I was looking for this. Here's the git config equivalent: git config --global core.pager "/usr/bin/mate" – cobra libre Jun 9 at 4:21

Your Answer

Get an OpenID
or

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