系统相关
首页 > 系统相关> > CentOS7.7 yum安装新版git

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

标签:git,http,GPG,wandisco,yum,opensource,CentOS7.7
来源: https://www.cnblogs.com/ddif/p/13474288.html