fatal: unable to access ‘https://github.com/Runner-Go-Team/RunnerGo.git/‘: Recv failure: Connection

问题描述:

fatal: unable to access 'https://github.com/Runner-Go-Team/RunnerGo.git/': Recv failure: Connection was reset

问题截图:

在这里插入图片描述

问题原因:

一般是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错

解决方案:

参考地址:https://blog.csdn.net/bblood307/article/details/120307064
解除ssl验证后,再次git即可。
git config --global http.sslVerify false
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_37515374/article/details/129644151