As of this writing, CentOS 6.5 has a default git version of 1.7.1-2. This version is what you will have installed if you run the typical install command:
1 | # yum install git |
However, GitHub and many other services require git version 1.7.10 or higher. It turns out there is a very easy way to get git. You need to do this from a privileged account, but then the process is simple.
Add RPM Forge to Yum Repos
1 | # wget 'http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm' |
Install New Version from RPM Forge
1 | # cd /etc/yum.repos.d |
change the enabled=0 flag to enabled=1 in the section labelled [rpmforge-extras].
1 | # yum update |
This will return a longer list of available git modules.
Install the newer git by copying the FULL REPO NAME. For example:
1 | # yum install git-1.7.12.4-1.el6.rfx.x86_64 |
You should have the new release installed.
Now go back and edit rpmforge.repo and disable the rpmforge-extras repository. Then ensure the yum directory is cleaned up.