lvhuayan

昨天还可以git push代码到远程仓库,今天git push时报了这个错:fatal: unable to access \'https://github.com/.......\': OpenSSL SSL_read: Connection was reset, errno 10054

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

参考网上解决办法:解除ssl验证后,再次git即可

git config --global http.sslVerify "false"

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-02-08
  • 2022-12-23
  • 2021-06-06
  • 2021-10-10
猜你喜欢
  • 2021-07-13
  • 2021-11-30
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
  • 2021-05-24
  • 2022-12-23
相关资源
相似解决方案