CentOS 安装最新版 Git
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.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
以上是关于CentOS 安装最新版 Git的主要内容,如果未能解决你的问题,请参考以下文章