centos6.5安裝git

weixin_33850890發表於2017-06-01

軟體包連結:https://git.kernel.org/pub/scm/git/git.git/snapshot/git-2.7.2.tar.gz

官網連結:https://git.kernel.org/pub/scm/git/git.git/refs/tags

wget下載https開頭的網址域名 時報錯,你可能需要加上 --no-check-certificate 選項

例如:wget --no-check-certificate https://git.kernel.org/pub/scm/git/git.git/snapshot/git-2.7.2.tar.gz

1、安裝編譯git時需要的包

# yum -y install gcc openssl openssl-devel curl curl-devel unzip perl perl-devel expat expat-devel zlib zlib-devel asciidoc xmlto gettext-devel openssh-clients

2、新建資料夾 mkdir

# cd /usr/local

# mkdir  git

3、下載解壓tar包

#wget --no-check-certificate https://git.kernel.org/pub/scm/git/git.git/snapshot/git-2.7.2.tar.gz

# tar xzf git-2.7.2.tar.gz

4、編譯安裝

# make prefix=/usr/local/git all doc

# make prefix=/usr/local/git install

5、 配置環境變數

# vim /etc/profile

底部追加 export PATH=/usr/local/git/bin:$PATH

# source /etc/profile  使更新生效

6、安裝成功

      git --version

顯示版本號“git version 2.7.2”

相關文章