命令:
yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc
yum install gcc perl-ExtUtils-MakeMaker
wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz
tar zxvf libiconv-1.14.tar.gz
cd libiconv-1.14
./configure --prefix=/usr/local/libiconv
make && make install
卸载centos 内置git
yum remove git
下载git2.2.1并将git添加到环境变量中
wget https://github.com/git/git/archive/v2.2.1.tar.gz #目前git版本升级很快,如果下载地址不存在,请尝试到https://github.com/git/git/releases进行查找下载地址。
#git备用下载地址 https://github.com/git/git/archive/master.zip
tar zxvf v2.2.1.tar.gz
cd git-2.2.1
make configure
./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
make all doc
make install install-doc install-html
echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
source /etc/bashrc
查看版本号
git --version
转载请注明:苏demo的别样人生 » Centos Git1.7.1升级到Git2.2.1