Skip to content

Instantly share code, notes, and snippets.

View matthewriley's full-sized avatar
👨‍💻
Using Technology

Matt Riley matthewriley

👨‍💻
Using Technology
  • Phoenix, AZ
View GitHub Profile
@matthewriley
matthewriley / Git2171onRHEL7x.md
Created June 13, 2018 20:30
Install Git 2.17.1 from source on RHEL 7.x

Install Git 2.17.1 from source on RHEL 7.x

These are the Terminal commands I recently used (July 2017) to install Git 2.17.1 from source on RHEL 7.x. I ran this in a VirtualBox VM after a fresh install from the ISO.

You mileage will vary as the yum packages are updated over time. The yum install line below should include all the dependencies, at least it did for me. Depending upon how often you use yum update you may need to run yum --enablerepo=base clean metadata as su before you run the following commands.

cd ~/Downloads
su
# First remove old system git
yum erase git
@matthewriley
matthewriley / Git2230onRHEL7x.md
Created September 3, 2019 20:29
Install Git 2.23.0 from source on RHEL 7.x

Install Git 2.23.0 from source on RHEL 7.x

These are the Terminal commands I recently used (September 2019) to install Git 2.23.0 from source on RHEL 7.x. I ran this in a VirtualBox VM after a fresh install from the ISO.

You mileage will vary as the yum packages are updated over time. The yum install line below should include all the dependencies, at least it did for me. Depending upon how often you use yum update you may need to run yum --enablerepo=base clean metadata as su before you run the following commands.

cd ~/Downloads
su
# First remove old system git
yum erase git