nathanblend

Installing git on mac osx

leave a comment »

Here’s how to install git on osx from source (or any other *nix system for that matter).


wget http://www.kernel.org/pub/software/scm/git/git-1.5.3.8.tar.gz
tar xzvf  git-1.5.3.8.tar.gz
cd git-1.5.3.8
./configure
sudo make && sudo make install

Test it out by checking out merb-core:


git clone git://github.com/wycats/merb-core.git

Written by nathanblend

January 15, 2008 at 9:19 pm

Posted in Uncategorized

Leave a Reply