因为在服务器上使用命令
git pull github时。
error: The requested URL returned error: 403 Forbidden while accessing https://github.com/aaaaa/aaaaaa.git/info/refs fatal: HTTP request failed
然后查看一下:
curl https://github.com/aaaaa/aaaaaa.git/info/refs
Please upgrade your git client. GitHub.com no longer supports git over dumb-http:https://github.com/blog/809git-dumb-http-transport-to-be-turned-off-in-90-days
如图:
根据提示。需要升级git.
先查看目前的git 版本。
git version
1.7.1
然后,移除原来的git, 安装新的git
yum remove git
yum install git
参考的这一篇:https://blog.csdn.net/qq_44034327/article/details/103623902
为了保险起见,先在一台测试服务器上试试,没问题,版本确实升级到最新了。
当时没有想到现在的服务器是centos6.9 与 测试的服务器是centos7 不同。
所以在这台centos6.9再执行yum install git时,到这一步,y之后,报错了:!
错误:找不到这个依赖。
查到:
CentOS 6配置国内Yum源报错失效,需配置国外Yum源
https://blog.csdn.net/Jackliu200911/article/details/112058387
根据提示,按照原来的目录,一级级查找到该依赖,然后复制链接地址。
yum install https://vault.centos.org/centos/6/os/x86_64/Packages/perl-Digest-SHA-5.47-144.el6.x86_64.rpm
就安装了这个依赖。
然后再次执行
yum install git
提示时输入y .
成功完成。
再查看
git version
git version 2.31.1