Skip to content

Instantly share code, notes, and snippets.

@jim80net
Created April 23, 2013 01:08
Show Gist options
  • Save jim80net/5440037 to your computer and use it in GitHub Desktop.
Save jim80net/5440037 to your computer and use it in GitHub Desktop.
Install git on cpanel server.
sudo su -
cd /usr/local/src
wget http://git-core.googlecode.com/files/git-1.7.6.4.tar.gz
tar zxvf git-1.7.6.4.tar.gz
cd git-1*
make clean && make distclean
make configure
./configure --prefix=/usr
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment