CentOS系统中升级Git版本
# 1.通过git源升级
vim /etc/yum.repos.d/wandisco-git.repo
1
# 2.新建配置文件
[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
1
2
3
4
5
6
2
3
4
5
6
# 3.更新git
yum -y update git
1
如果更新的过程里出错,则移除,重新安装
yum remove git
yum install git
1
2
2
# 4.校对版本
git --version
1
上次更新: 2024/01/30, 00:35:17
- 01
- Node与GLIBC_2.27不兼容解决方案08-19
- 02
- Git清空本地文件跟踪缓存08-13