Skip to content

Instantly share code, notes, and snippets.

@graymic
Created June 10, 2014 15:53
Show Gist options
  • Save graymic/eb848becb86e7c1d8f20 to your computer and use it in GitHub Desktop.
Save graymic/eb848becb86e7c1d8f20 to your computer and use it in GitHub Desktop.
Installs Git 1.8.3.4
#!/bin/bash
wget http://git-core.googlecode.com/files/git-1.8.3.4.tar.gz
wget -O git-manpages-1.8.3.4.tar.gz http://code.google.com/p/git-core/downloads/detail?name=git-manpages-1.8.3.4.tar.gz&can=2&q=
sudo yum install zlib-devel perl-CPAN gettext
tar xvfz git-1.8.3.4.tar.gz
cd git-1.8.3.4
./configure
make
sudo make prefix=/usr install
git --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment