码迷,mamicode.com
首页 > 其他好文 > 详细

腾讯云CentOS7升级自带Git版本

时间:2021-04-27 15:16:15      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:code   efi   文件   port   使用   etc   sof   targe   autoconf   

起因

CentOS7自带Git1.8版本,版本太低。

更新步骤

1 卸载旧版本Git

yum remove git

2 下载依赖(环境配置)

yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc xmlto perl-devel perl-CPAN autoconf*

3 下载最新的Git

3.1 最新git版本查看(找tag即可)

https://github.com/git/git/tree/v2.30.0
技术图片

3.2 下载地址

https://mirrors.edge.kernel.org/pub/software/scm/git/

3.3 下载至指定文件夹

wget -P /opt/git https://github.com/git/git/archive/v2.30.0.tar.gz

或者(下载速度更快)

wget -P /opt/git https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.30.0.tar.gz

3.4 依次执行

tar zxvf v2.30.0.tar.gz
cd git-2.30.0
make prefix=/usr/local/git all
make prefix=/usr/local/git install
echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/profile
source /etc/profile 

3.5 查看版本

git --version

4 非root用户使用git

如果是非root用户使用git,则需要配置下该用户下的环境变量

echo "export PATH=$PATH:/usr/local/git/bin" >> ~/.bashrc
source ~/.bashrc
git --version

腾讯云CentOS7升级自带Git版本

标签:code   efi   文件   port   使用   etc   sof   targe   autoconf   

原文地址:https://www.cnblogs.com/2yue/p/14707768.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!