Created
March 1, 2010 16:38
-
-
Save nwjsmith/318526 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Run the following commands | |
========================== | |
wget "http://kernel.org/pub/software/scm/git/git-1.7.0.1.tar.bz2" | |
tar xvf git-1.7.0.1.tar.bz2 | |
mkdir $HOME/local/ | |
cd git-1.7.0.1 | |
./configure --prefix=$HOME/local/ | |
make | |
make install | |
Then add the following to ~/.profile | |
========================================= | |
export PATH="$HOME/local/bin:$PATH" | |
ALL DONE! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment