Installing git on mac osx
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