centos7源码安装git2.10.0版本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7源码安装git2.10.0版本相关的知识,希望对你有一定的参考价值。
由于Centos7使用yum -y install git 安装的git版本是git --version
git version 1.9.x
想要升级到2.10.0:
升级安装git的时候,最好一次安装依赖。
yum install -y tk zlib-devel openssl-devel perl cpio expat-devel gettext-devel asciidoc xmlto
yum install perl-ExtUtils-MakeMaker package
yum remove git
wget https://github.com/git/git/archive/v2.10.0.tar.gz
tar zxvf v2.10.0.tar.gz
cd git-2.10.0
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
git version 2.10.0
以上是关于centos7源码安装git2.10.0版本的主要内容,如果未能解决你的问题,请参考以下文章