Skip to content

Instantly share code, notes, and snippets.

@sydcanem
Last active September 22, 2015 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sydcanem/a0af0b226edd87d41eb6 to your computer and use it in GitHub Desktop.
Save sydcanem/a0af0b226edd87d41eb6 to your computer and use it in GitHub Desktop.
Git install from source on Centos7
sudo yum groupinstall "Development Tools"
sudo yum install gettext-devel openssl-devel perl-CPAN perl-devel zlib-devel curl-devel
wget https://github.com/git/git/archive/v2.5.1.tar.gz -O git.tar.gz
tar -zvf git.tar.gz
cd git-*
make configure
./configure --prefix=/usr/local
sudo make install
git --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment