Skip to content

Instantly share code, notes, and snippets.

@giwa
Created May 24, 2015 17:06
Show Gist options
  • Save giwa/3d0f02e0700e709e3c58 to your computer and use it in GitHub Desktop.
Save giwa/3d0f02e0700e709e3c58 to your computer and use it in GitHub Desktop.
Install git 2.4.1 in CentOS 6.6 ref: http://qiita.com/giwa/items/1b4d417432613100ac38
$ yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-ExtUtils-MakeMaker
$ wget https://www.kernel.org/pub/software/scm/git/git-2.4.1.tar.gz
$ tar -zxf git-2.4.1.tar.gz
$ cd git-2.4.1
$ make prefix=/usr/local all
$ make prefix=/usr/local install
$ git --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment