git push 报错:fatal: unable to access ‘https://github.com/...‘......

问题:

在用git push 提交代码到 github 的时候,遇到了如下报错:
fatal: unable to access ‘https://github.com/…/’: OpenSSL SSL_read: Connection was reset, errno 10054在这里插入图片描述

原因:

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

解决办法:

  • 解除SSL验证:git config --global http.sslVerify “false”
  • 再次 git push 即可

你可能感兴趣的:(报错解决,前端,vue.js,git,github)