fatal: unable to access“xxx.xxx.xxx“ :Failed to connect to github.com port 443:connection timed out

github经常出现问题
fatal: unable to access“xxx.xxx.xxx“ :Failed to connect to github.com port 443:connection timed out_第1张图片
应该是之前不知道怎么设置了一些乱七八糟的代理。
分别执行下面两个命令:

取消全局代理:
git config --global --unset http.proxy
 
git config --global --unset https.proxy

问题解决。
参考链接:https://blog.csdn.net/Hodors/article/details/103226958

你可能感兴趣的:(github)