git clone 报错fatal: unable to access 'https://github.com/XXX.git/XXX: Failed to..

567 阅读1分钟

问题原因

报错信息:

unable to access 'https://github.com/XXX.git/XXX: : Failed to connect to github.com port 443 after 21054 ms: Timed out

因为git在拉取或者提交项目时,中间会有git的http和https代理,但是我们本地环境本身就有SSL协议了,所以取消git的https代理即可,不行再取消http的代理。

解决方案

在项目文件夹的命令行窗口执行下面代码,然后再git commit 或git clone
取消git本身的https代理,使用自己本机的代理,如果没有的话,其实默认还是用git的

// 取消https代理
git config --global --unset https.proxy
// 取消http代理
git config --global --unset http.proxy