CentOS7 源码包安装Git
Posted 皮卡丘的猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 源码包安装Git相关的知识,希望对你有一定的参考价值。
引言:大家好,我是热爱coding,崇尚开源,乐于分享的【皮卡丘的猫】
Step1:安装依赖包
yum install perl cpio curl curl-devel zlib-devel openssl-develexpat-devel gettex-devel -y
Step2:下载并编译安装
源码下载地址:https://github.com/git/git/releases
wget https://github.com/git/git/archive/v2.11.0-rc1.tar.gz
tar zxvf v2.11.0-rc1.tar.gz
cd git-2.11.0-rc1/
make configure
./configure --prefix=/usr/local/git
make
make install
make configure #注意这一步,默认无法直接进行./configure,不存在configure文件,需要执行这一步。
./configure --prefix=/usr/local/git #安装到/usr/local/git 目录下面
Step3:配置环境变量
vim /etc/profile
# GIT_HOME settings
GIT_HOME=/usr/local/git
export PATH=$PATH:$GIT_HOME/bin
export GIT_HOME
Step4:使配置生效,查看git版本
source /etc/profile
git --version
特别注意:如果在安装过程中报如下错误:autoconf:command not found,安装以下依赖即可解决
yum install install autoconf automake libtool
以上是关于CentOS7 源码包安装Git的主要内容,如果未能解决你的问题,请参考以下文章