Git Installation on CentOS RHEL Oracle Linux
Hey! DevOps engineer, In this blog post I would like to share my discussion target as 'Git for Beginners'. Here I would like to start the Git Installation and configuration on CentOS 7 or Oracle Linux or RHEL all looks like the same process. The configuration steps you can also run on the Windows Git Bash as well. Git Installation on CentOS This is a Very Simple process, let's do the experiment now. The pre-requisite is VM or Cloud instance ready to connect. The following experiment executed on the CentOS7 Virtual Box configured on the Vagrantfile. 1. Git Installation in RHEL/CentOS/Oracle Linux Install Git from Source Select the latest stable version from the Download location: https://mirrors.edge.kernel.org/pub/software/scm/git/ Before you begin, first you need to install required software dependencies from the default repositories, along with the utilities that needed to build a binary from source: yum groupinstall -y 'Development Tools'; yum in...