Last active
June 4, 2019 15:47
-
-
Save faridescate/b162a7e3f93d7c4916159c0377cbf178 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#--- Tested in Centos 7 ---# | |
#--- should run with sudo privileges ---# | |
GIT_VERSION=2.21.0 | |
yum -y groupinstall "Development Tools" | |
yum -y install zlib-devel | |
yum -y install curl-devel | |
wget https://github.com/git/git/archive/v$GIT_VERSION.tar.gz -O git.tar.gz | |
tar -zxf git.tar.gz | |
cd git-* | |
make configure | |
./configure --prefix=/usr/local | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment