XCode付属のgitのパス


/Applications/Xcode.app/Contents/Developer/usr/bin/git

でした。XCode4.3で確認。
新しいマシンのセットアップ中にwhichしてもいないなーどこだろーと思っていたので、メモメモ。

ターミナルからgitを使いたいときは、

sudo ln /Applications/Xcode.app/Contents/Developer/usr/bin/git /usr/local/bin/git

こんな感じで/usr/local/bin/とかにリンクをはるか、

もしくは.bash_profileとか.zshrcとかに

alias git="/Applications/Xcode.app/Contents/Developer/usr/bin/git"

とか書いておくのがいいのかな。
homeにおいたgit-completionも反映されます。


gccとかも入ってるし、サーチパスに入れてしまうのもありなのかも?

export PATH=$PATH:Applications/Xcode.app/Contents/Developer/usr/bin/git