CentOS7.7 yum安装新版git

CentOS7.7自带git版本较老

先卸载自带git

# yum remove 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密钥

rpm --import http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco

安装git

# yum -y install git

完成之后验证一下

# git --version

原文地址:https://www.cnblogs.com/ddif/p/13474288.html