为RHEL和CentOS提供高质量、最新版的软件,如PHP, Python, MySQL等。
# 导入gpg key
rpm --import https://repo.ius.io/RPM-GPG-KEY-IUS-7
# 官方方法安装IUS源
yum install https://repo.ius.io/ius-release-el7.rpm https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -y
# 通过aliyun安装IUS源
yum install -y https://mirrors.aliyun.com/ius/ius-release-el7.rpm
安装完成后在/etc/yum.repos.d
目录下会出现ius.repo
文件,默认启用源.
# 配置IUS国内源
sed -i "s|repo.ius.io|mirrors.tuna.tsinghua.edu.cn/ius|g" /etc/yum.repos.d/ius.repo
# 刷新缓存
yum repolist && yum clean all && yum makecache
# 卸载老版git
yum autoremove git -y
# 查询源里的git版本号
yum search git|grep -E "^git"
# 安装git224
yum install git236 -y
git version