Skip to content

Instantly share code, notes, and snippets.

@jcf
Created December 19, 2008 09:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jcf/37937 to your computer and use it in GitHub Desktop.
Save jcf/37937 to your computer and use it in GitHub Desktop.
Download and install git from source (you can just copy and paste it all in to Terminal)
VERSION='1.6.0.6'
wget http://www.kernel.org/pub/software/scm/git/git-$VERSION.tar.gz
tar xzvf git-$VERSION.tar.gz
cd git-$VERSION
make configure
./configure --prefix=/usr/local
NO_MSGFMT=yes make prefix=/usr/local all
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment