views:

100

answers:

2

Is it any extension for git for MAC users? I would like to use git integrated with TextWrangler or any text editor in my MAC.

+2  A: 

Maybe the Git Bundle for TextMate is what you need http://blog.macromates.com/2008/git-bundle/

Romain Deveaud
A: 

I'm not sure what you're asking. I use TextWrangler as my text editor from git. In TextWrangler, under the application menu, choose "Install Command Line Tools". That installs /usr/bin/edit. Then in my ".gitconfig" file I use:

editor = /usr/bin/edit -w

This makes TextWrangler my git text editor. So when I run a git command like "git commit -a", TextWrangler will open and I can enter my commit comment. When I close TextWrangler I am taken back to the Terminal where I can continue using git.

regulus6633