1. 程式人生 > >Centos 6.8 安裝git

Centos 6.8 安裝git

yum 安裝git 1.7版本 在clone 時 會報錯:clone error: The requested URL returned error: 400 Bad Request while accessi

解決方法重新 make安裝 最近版本


1.解除安裝git 

   yum remove git


2.優先安裝擴充套件 避免在安裝git clone 時報錯 :fatal: Unable to find remote helper for 'https'

  yum install libcurl-devel 


3.下載原始碼

   wget https://www.kernel.org/pub/software/scm/git/git-1.9.4.tar.gz


4.解壓&安裝

   tar zxvf git-1.9.4.tar.gz

   cd git-1.9.4

   autoconf

   ./configure --prefix=/usr/local

   make && make install


5.建立軟連線

   ln -s /usr/local/bin/git /usr/bin/git


6. git clone   url.....


7.clone 後提示輸入賬號 以及 密碼

   Username for 'https://git.coding.net': ****
   Password for 'https://***@git.coding.net':