1. 问题原因

报错信息:

fatal: unable to access 'https://github.com/xxx.git/': 
Failed to connect to github.com port 443 after 21114 ms: Couldn't connect to server

原因:
在git push时或者clone时,中间会有git的http和https代理,但是我们本地环境本身就有SSL协议了,所以取消git的https或者http代理即可

2. 解决方案

最好的解决方法还是配置ssh方法访问
链接:Github配置SSH访问
避免使用https访问经常网络连接失败或者需要输入密码的问题

  1. 取消git本身的https代理或者http代理
//取消https代理
git config --global --unset https.proxy
//取消http代理
git config --global --unset http.proxy
  1. 上述方案要还是无法解决,运行以下命令:
git config --global http.sslVerify "false"
  1. 科学上网提高连接速度
Logo

鸿蒙生态一站式服务平台。

更多推荐