Centos 上安装Git
CentOS的yum源中没有git,只能自己编译安装,现在记录下编译安装的内容,留给自己备忘。
确保已安装了依赖的包
yum -y install curl curl-devel zlib-devel openssl-devel perl cpio expat-devel gettext-devel perl-devel autoconf
下载最新的git包
wget http://git-core.googlecode.com/files/git-1.8.3.2.tar.gz
tar xzvf git-1.8.3.2.tar.gz
cd git-1.8.3.2
autoconf
./configure --with-curl=/opt/git
make && make install
检查下安装的版本,大功告成
git --version
本文出自 蓝鹰博客,转载时请注明出处及相应链接。
本文永久链接: http://www.lanyingblog.com/blog/1843.html