Centos7安装IUS源
安装IUS源
为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国内源
# 配置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
Centos7使用yum安装git236版本-IUS源
卸载老版git
# 卸载老版git
yum autoremove git -y
查询源里的git版本号
# 查询源里的git版本号
yum search git|grep -E "^git2"
安装git236
# 安装git224
yum install git236 -y
查看git版本
git version
编译安装git2.9
参考: https://blog.csdn.net/u010046908/article/details/103956459
# 安装依赖包
yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc -y
yum install gcc perl-ExtUtils-MakeMaker -y
卸载旧版git
# 卸载旧版git
yum remove git
git源码包下载地址
https://mirrors.edge.kernel.org/pub/software/scm/git/
编译安装
# 下载源码包
cd /usr/local/src/
wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.9.5.tar.gz
tar -xvf git-2.9.5.tar.gz
cd git-2.9.5/
# 配置构建选项
./configure --prefix=/usr/local/git all
# 编译安装
make -j && make install
# 配置变量
echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
# 使变量生效
source /etc/bashrc
验证新git版本
# 验证新git版本
[root@localhost ~]# git --version
git version 2.23.0
非root用户使用
如果是非root用户使用git
,则需要配置下该用户下的环境变量。
# 添加变量
echo "export PATH=$PATH:/usr/local/git/bin" >> ~/.bashrc
# 使变量生效
source ~/.bashrc