当前位置:   article > 正文

git clone http/https 报错 10054/443 问题_git clone 443

git clone 443

错误

错误 Failed to connect to github.com port 443: Timed out OpenSSL SSL_read: Connection was reset, errno 10054 一般都是网络问题

解决方案

1 关闭http和https代理

git config --global --unset http.proxy

git config --global --unset https.proxy
  • 1
  • 2
  • 3

2 设置自己的代理

1.按win键 2 打开设置 3 在网络和Internet找到自己的代理端口(我的是7890)4 然后命令行修改代理

git config --global https.proxy http://127.0.0.1:7890

git config --global https.proxy https://127.0.0.1:7890

  • 1
  • 2
  • 3
  • 4

查看git当前代理设置

git config --global --get http.proxy

git config --global --get https.proxy

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

闽ICP备14008679号