tags:

views:

54

answers:

4

Hey,

I'm just curious, Where Git get installed (via DMG) on Mac OS X file system?

+2  A: 

Mostly in /usr/local/git (there are also /etc/paths.d/git and /etc/manpaths.d/git items).

Amber
+2  A: 

Is it in your PATH? If so just run which git in the terminal and it will tell you.

ScottD
A: 

On Linux the command is whereis. Alternatively you can issue find / -name git and wait for an eternity. Alternatively try echo $PATH | sed "s/:/ /g" | xargs -L 1 ls | grep git

Novikov
+1  A: 

On most of UNIX based sys, its at /usr/bin/git (if installed with default options)
all git related scripts are at /usr/libexec/git-core

theSTIG