标签:centos 6.8编译安装git 2.11.0 centos编译安装git
系统环境:CentOS release 6.8 (Final)
默认Git :1.7.1
需求git :2.11
卸载centos自带的git:yum remove git -y
下载git-2.11.0.tar.gz 上传至服务器,下载链接:http://distfiles.macports.org/git/
解压安装git 并添加git到环境变量
cd /usr/local/src/ tar zxvf git-2.11.0.tar.gz make prefix=/usr/local/git all make prefix=/usr/local/git install 添加git到环境变量 echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc 或者 echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/profile source /etc/bashrc 或者 source /etc/profile
查看git版本号
[root@localhost git-2.11.0]# git --version git version 2.11.0
本文出自 “506554897” 博客,请务必保留此出处http://506554897.blog.51cto.com/2823970/1899862
标签:centos 6.8编译安装git 2.11.0 centos编译安装git
原文地址:http://506554897.blog.51cto.com/2823970/1899862