使用安装包安装git

源码安装git

前奏:

yum install gcc

yum install zlib-devel  

yum install perl-ExtUtils-MakeMaker

 

1、卸载自带git

yum remove git

2、进入git解压目录测试变量(在git解压目录下执行命令)

make configure
Centos7  Git源码安装 
注:报错/bin/sh: autoconf: command not found,使用yum安装autoconf即可

//然后重新执行测试命令

make configure
Centos7  Git源码安装

3、指定git安装目录

./configure --prefix=/usr/local/git
Centos7  Git源码安装

4、编译git

make profix=/usr/local/git
Centos7  Git源码安装

5、安装git

make install
Centos7  Git源码安装

6、设置环境变量

echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/profile

7、使环境变量生效

source /etc/profile

8、检查git版本

git --version
Centos7  Git源码安装 
注:以上所有操作完成了最新版本的git×××!

 

感谢原作者: https://blog.51cto.com/13043516/2152749

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章