centos下git的安装
Git是一个区别与CVS, Subversion的开源分布式版本控制系统,用以有效、高速的处理从很小到非常大的项目版本管理。在大多数的LINUX/unix发行版(或源)中,都包含有git包。不过在一些老版本的系统中并不包含git安装包。例如不算很老的centos 5.X中就没有git文件源(第三方源除外,不过目前最新的centos 6.X官方源中已增加git安装包) 。这时候就需要通过手动安装git,才能使用git命令。
1、安装git依赖包
1yum -y install curl curl-devel zlib-devel openssl-devel perl cpio expat-devel gettext-devel
2、下载最新的git源码包并安装
1wget http://www.codemonkey.org.uk/projects/git-snapshots/git/git-latest.tar.gz
2tar xzvf git-latest.tar.gz
3cd git-xxxx-xx-xx
4autoconf
5./configure
6make && make install
安装完成后,可通过以下命令进行验证:
1git –version
3、安装过程中可能遇到的错误
1/usr/bin/perl Makefile.PL PREFIX=’/usr/local’ INSTALL_BASE=” –localedir=’/usr/local/share/locale’
2Can’t locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5 /usr/share/perl5 .) at Makefile.PL line 3.
3BEGIN failed–compilation aborted at Makefile.PL line 3.
4make[1]: *** [perl.mak] Error 2
5make: *** [perl/perl.mak] Error 2
出现该错误,是由于找不到perl命令的问题引起的。此时可通过安装perl解决。命令如下:
1yum install perl-devel
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/install-git/2165.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.