首页 > 代码库 > CentOS 安装最新版 Git

CentOS 安装最新版 Git

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.gzcd git-2.12.1make configure./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconvmake all docsudo make install install-doc install-html

修改环境变量

vim /etc/profile

在最后一行添加

export PATH=/usr/local/git/bin:$PATH

保存后使其立即生效

source /etc/profile

查看是否安装成功

git version

CentOS 安装最新版 Git