CentOS 6.8 自带的 Git 版本为 1.7.1,比较旧,yum 安装也停留在 1.7.1,还是源码编译安装吧。
下载源码:
wget -c https://github.com/git/git/archive/v2.12.1.tar.gz
卸载老版本Git
yum remove git
解压、编译、安装
tar zxvf v2.12.1.tar.gz cd git-2.12.1 make configure ./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv make all doc sudo make install install-doc install-html
修改环境变量
vim /etc/profile
在最后一行添加
export PATH=/usr/local/git/bin:$PATH
保存后使其立即生效
source /etc/profile
查看是否安装成功
git version
时间: 2024-11-25 07:34:27