0
点赞
收藏
分享

微信扫一扫

GIT连接问题_unable to access …… error 10054

booksmg2014 2022-02-11 阅读 30
git

GIT连接问题_unable to access …… error 10054

完整报错提示

git clone https://github.com/microsoft/terminal.git
Cloning into 'terminal'...
fatal: unable to access 'https://github.com/microsoft/terminal.git/': OpenSSL SSL_read: Connection was reset, errno 10054

产生原因

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

解决方法

解除ssl验证

git config --global http.sslVerify "false"

运行完此代码后,即可恢复正常

举报

相关推荐

0 条评论