如果在linux版本的git安装是使用:yum install git,那么是自带的版本是1.7.1,这版本相对旧了。可以卸载(yum remove git)安装新版本的。
步骤如下:
- 安装编译所依赖的软件
1:yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc
2:yum install gcc perl-ExtUtils-MakeMaker
- 下载指定版本的git
1:git各版本网址:https://github.com/git/git/releases
或者linux的wget获取:wget https://github.com/git/git/archive/v2.25.0.tar.gz
- 解压编译安装
1:tar zxvf v2.25.0.tar.gz
2:cd git-2.25.0
3:make configure
4:./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
5:make all doc
6:make install install-doc install-html
- 配置环境变量(linux有两个配置文件配置/etc/profile和/etc/bashrc,其中一个就可以了)。
1:echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/profile
2:source /etc/profile
或者
1:echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
2:source /etc/bashrc
- 最后查看版本
1:git --version