2014-02-28 144 views

回答

1

獲取的git的最新vesion從以下位置 https://github.com/git/git/releases

登錄到您的主機,並在你的主文件夾,運行以下命令..

curl -O http://github.com/git/git/archive/v1.8.3.3.tar.gz(put the latest vesion of git) 
tar zxvf git-1.8.3.3.tar.gz 
cd git-1.8.3.3 
./configure --prefix=/home/$USER --with-curl --with-expat 
make -i 
make -i install 
echo 'PATH=$PATH:$HOME/bin' >> $HOME/.bashrc 
source $HOME/.bashrc 

然後鍵入git版本它會給git版本1.8.3

+0

後續問題先生,我偶然發現了你所做的同樣的答案,但是我的共享主機似乎沒有激活curl命令。我如何激活它?謝謝! – sprint