CentOS 6.3 64bit 源码安装git

git-1.8.5.5.tar.gz 安装包下载地址:

https://git-core.googlecode.com/files/git-1.8.5.5.tar.gz 


[root@git install]# yum -y install gcc gcc-c++ curl-devel expat-devel gettext-devel openssl-devel zlib-devel
[root@git install]# tar -zxvf git-1.8.5.5.tar.gz
[root@git install]# cd git-1.8.5.5
[root@git git-1.8.5.5]# mkdir /opt/git
[root@git git-1.8.5.5]# make prefix=/opt/git/ all
####################################################################
 报了如下错误:
 Can't locate ExtUtils/MakeMaker.pm in @INC
 解决:
 [root@git git-1.8.5.5]# yum -y install perl-devel
 [root@git git-1.8.5.5]# yum -y install perl-CPAN 
####################################################################
[root@git git-1.8.5.5]# make prefix=/opt/git/ install

编辑/etc/profile文件,在文件末尾添加如下语句:

 export PATH=$PATH:/opt/git/bin

然后执行:source /etc/profile

此时 git 命令就可以使用了。

你可能感兴趣的:(centos,git,源码安装git)