tobyaw: (Default)
Toby Atkin-Wright ([personal profile] tobyaw) wrote2008-04-13 06:31 pm
Entry tags:

Installing git on Mac OS X

More to aid my memory than for anything else.

curl -O http://www.kernel.org/pub/software/scm/git/git-1.5.5.tar.gz
tar -xf git-1.5.5.tar.gz 
cd git-1.5.5
make configure
./configure --prefix=/usr
make all
sudo make install