当前位置:   article > 正文

使用git push命令提交更改报错 fatal: unable to access ‘http://github.com/xxxxxx/‘: OpenSSL SSL_read: Connection_vscode git fatal: 无法房访问

vscode git fatal: 无法房访问

使用git push命令提交更改报错 fatal: unable to access 'http://github.com/xxxxxx/': OpenSSL SSL_read: Connection was reset, errno 10054

最近学习使用vscode中的git操作方法,遇到了一些问题,花了不时间来寻找解决方法,好不容易解决了,就把我的方法记录下来,希望可以给其他遇到该问题的小伙伴一些参考。
报错具体信息,我是以下两个问题交替出现:

fatal: unable to access 'http://github.com/haoah316/minimall.git/': OpenSSL SSL_read: Connection was reset, errno 10054
  • 1

或者

fatal: unable to access 'https://github.com/haoah316/minimall.git/': Failed to connect to github.com port 443: Timed out
  • 1

关于别人给出的解决git push报10054或443错误的方法

  1. 查询并取消代理
git config --global http.proxy
  • 1
git config --global --unset http.proxy
  • 1
  1. 解除ssl验证
 git config --global http.sslVerify "false"
  • 1
  1. 将项目中.git文件夹下的config文件中的url中的https改为http
 https://github.com/xxxx.git
  • 1

改为

 http://github.com/xxxx.git
  • 1

以上方法并没有解决我的问题。。。

我的解决方法

受上面的第三种解决方法的启发,我将.git文件夹下的config文件中的url的内容也进行了修改
把原来的https方式

 https://github.com/xxxx.git
  • 1

改为ssh方式

git@github.com:xxxx.git
  • 1

ssh格式的内容可以到github中获取
最后保存config文件,再次push就成功了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/430520
推荐阅读
相关标签
  

闽ICP备14008679号