最新解决git拉取远程仓库失败问题:Failed to connect to github.com port 443: Timed out.

最新解决git拉取远程仓库失败问题:Failed to connect to github.com port 443: Timed out.

本地git拉取(pull)或抓取(fetch)远程github仓库出现

Failed to connect to github.com port 443: Timed out

在本地git使用下面这条命令直接解决问题

git config --global --unset http.proxy

主要原因是使用http/https拉取,使用这个传输不稳定,很受网络影响,多试几次pull或者push,重新在本地git bash,有时候就可以成功
如果以上尝试之后如果还未成功,本人也参考网上各种清除代理方法,但是最后还是报错,以及各种失败。

最终最终的解决方案就是放弃使用http/https拉取代码,使用ssh拉取,网上有很多ssh拉取代码的教程,会比网络直接拉取好很多,速度快并且稳定。

你可能感兴趣的:(解决方法,git,github,ssh)