Thursday, 30 June 2016

Install GIT 2.9 on Linux without YUM

When yum install git is not available 

Download from
https://github.com/git/git/releases

tar -zxf git-2.9.0.tar.gz
$ cd git-2.9.0
$ make configure
$ ./configure --prefix=/usr
$ make all doc info
$ sudo make install install-doc install-html install-info

No comments:

Post a Comment