centos7 更新git
首先检查当前git版本
git --version
卸载 git
yum remove git
启用Wandisco GIT存储库,在此之前我们先写入新yum存储库配置文件
vim /etc/yum.repos.d/wandisco-git.repo
插入
[wandisco-git]
name=Wandisco GIT Repository
baseurl=http://opensource.wandisco.com/centos/7/git/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco
导入存储库GPG密钥
sudo rpm --import http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco
安装git
yum install git