赞
踩
git出现error: The requested URL returned error: 401 Unauthorized while accessing得到原因是因为服务器的git版本是
git version 1.7.1
查看git版本
git --version
1.升级git
安装依赖
yum install perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker
下载git
wget https://www.kernel.org/pub/software/scm/git/git-2.13.1.tar.gz
备份原来的git
安装git
进入下载的git的安装包
解压
tar -zxvf git-2.13.1.tar.gz
进入cd git-2.13.1
安装
autoconf
./configure --prefix=/usr/local
make && make install
删除原来的
rm -rf /usr/bin/git
建立软连接
ln -s /usr/local/bin/git /usr/bin/git
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。