1. 程式人生 > >CentOS 安裝 Git

CentOS 安裝 Git

wget configure nss OS ssl git nbsp 準備 git命令

安裝前準備

刪除舊版本:

1 yum remove git

安裝依賴:

1 yum install curl-devel expat-devel openssl-devel zlib-devel

下載並安裝

1 wget https://github.com/git/git/archive/v2.15.0.tar.gz
2 tar -zxf v2.15.0.tar.gz
3 cd git-2.15.0
1 autoconf                                           #通過configure.ac生成configure
2 ./configure prefix=/usr/local/git/                 #生成Makefile,指定安裝路徑
3
make #編譯 4 make install #安裝

將git命令添加到bash中

1 vim /etc/profile

在最後一行加入:

1 export PATH=$PATH:/usr/local/git/bin

刷新profile:

1 source /etc/profile

CentOS 安裝 Git