码迷,mamicode.com
首页 > 其他好文 > 详细

centos在线安装git的方法

时间:2014-11-11 18:29:24      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   os   sp   div   on   代码   

http://www.jb51.net/os/RedHat/149653.html

 

 

在安装Git之前,需要先安装一些依赖包,安装依赖包之前可以先检查下是否已经安装。

shell命令如下:

复制代码
代码如下:

# rpm -qa | grep zlib-devel

 

如果没有安装,我们先要安装这些依赖包:

复制代码
代码如下:

# yum -y install zlib-devel openssl-devel perl cpio expat-devel gettext-devel
# yum install curl-devel
# yum install autoconf
# wget <a href="http://git-core.googlecode.com/files/git-1.8.3.2.tar.gz">http://git-core.googlecode.com/files/git-1.8.3.2.tar.gz</a>
# chmod +x 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已经安装才成功了,下面我们来验证一下:

复制代码
代码如下:

# git --version
[root@AY140331154108013a0bZ git-1.8.3.2]# git version
git version 1.8.3.2

centos在线安装git的方法

标签:style   http   io   ar   os   sp   div   on   代码   

原文地址:http://www.cnblogs.com/gzmg/p/4089666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!