the codemonky

ramblings, musing and code snippets from shawn veader
Apr 10
Permalink

Git on OSX

Hit a roadblock compiling git tonight. Thanks to jnewland for the last piece of the puzzle.

curl -O http://kernel.org/pub/software/scm/git/git-1.5.4.5.tar.bz2 
tar ixf git-1.5.4.5.tar.bz2
cd git-1.5.4.5
./configure --prefix=/usr/local
make NO_MSGFMT=1
sudo make installĀ