Skip to content

Instantly share code, notes, and snippets.

@faridescate
Last active June 4, 2019 15:47
Show Gist options
  • Save faridescate/b162a7e3f93d7c4916159c0377cbf178 to your computer and use it in GitHub Desktop.
Save faridescate/b162a7e3f93d7c4916159c0377cbf178 to your computer and use it in GitHub Desktop.
#!/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