centos在線安裝git的方法

在安裝Git以前,須要先安裝一些依賴包,安裝依賴包以前能夠先檢查下是否已經安裝。git

shell命令以下:

shell

# rpm -qa | grep zlib-devel
curl

若是沒有安裝,咱們先要安裝這些依賴包:

# yum -y install zlib-devel openssl-devel perl cpio expat-devel gettext-devel
# yum install curl-devel
# yum install autoconf
# wget http://git-core.googlecode.com/files/git-1.8.3.2.tar.gz
# 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
google

到這裏git已經安裝才成功了,下面咱們來驗證一下:

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

相關文章
相關標籤/搜索