CentOS6.5升级git

来源:互联网 发布:老干部网络意思是贬义 编辑:程序博客网 时间:2024/05/18 01:35

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'
  1. # rpm --import http://apt.sw.be/RPM-GPG-KEY.dag.txt
  1. # rpm -i 'http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm'

  1. # yum clean all

Install New Version from RPM Forge

  1. # cd /etc/yum.repos.d
  1. # vim (or whatever) rpmforge.repo

change the enabled=0 flag to enabled=1 in the section labelled [rpmforge-extras].

  1. # yum  update

  1. # yum provides git

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
  1. # git --version

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.

                                             
0 0
原创粉丝点击