Skip to content

Instantly share code, notes, and snippets.

@aimtiaz11
Last active August 29, 2015 14:03
Show Gist options
  • Save aimtiaz11/e147d90e8069f9007650 to your computer and use it in GitHub Desktop.
Save aimtiaz11/e147d90e8069f9007650 to your computer and use it in GitHub Desktop.
Git Install on Linux

Commands to install git in Linux:

yum install curl-devel expat-devel gettext-devel \ openssl-devel zlib-devel

wget https://git-core.googlecode.com/files/git-1.9.0.tar.gz

tar -xvzf git-1.9.0.tar.gz

cd git-1.9.0

make prefix=/usr/local all

make prefix=/usr/local install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment