clone报错fatal: unable to access ‘https://github.com/...‘: Failed to connect to github.com port

开源 0

目录

  • clone报错fatal: unable to access 'https://github.com/...': Failed to connect to github.com port 443 after 21096 ms: Couldn't connect to server
    • clone时报错如下所示
    • 解决方法
      • 第一步、找到本机代理端口号(红框部分)
      • 第二步、修改git端口号
      • 问题解决!
    • 参考资料

clone报错fatal: unable to access ‘https://github.com/…’: Failed to connect to github.com port 443 after 21096 ms: Couldn’t connect to server

clone时报错如下所示

在这里插入图片描述
原因是本机代理端口和git端口不一致。

解决方法

第一步、找到本机代理端口号(红框部分)

在这里插入图片描述

第二步、修改git端口号

在git-bash执行如下两条指令

git config --global http.proxy http://127.0.0.1:红框端口号git config --global https.proxy http://127.0.0.1:红框端口号

问题解决!

参考资料

[1][报错解决] Failed to connect to github.com port 443 after ***** ms: Couldn‘t connect to server
[2]GitHub 新手详细教程

也许您对下面的内容还感兴趣: