git2.0的安装-centos6.5

centos6.5 安装git2.0
1.安装编译git时需要的包

# yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel
# yum install  gcc perl-ExtUtils-MakeMaker

2.删除已有的git

# yum remove git

3.下载git源码,2.0.0版本的下载地址:http://pan.baidu.com/s/1qXFnOxI

# cd /usr/src
# wget https://www.kernel.org/pub/software/scm/git/git-2.0.5.tar.gz
# tar xzf git-2.0.5.tar.gz

4.编译安装

# cd git-2.0.5
# make prefix=/usr/local/git all
# make prefix=/usr/local/git install
# echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
# source /etc/bashrc

5.检查一下版本号

# git --version

转载自:https://www.cnblogs.com/fuyuanming/p/5804695.html

猜你喜欢

转载自blog.csdn.net/yu876876/article/details/81145239