一、前言
你在使用github的时候,是不是会经常出现Failed to connect to github.com port 443:connection timed out报错,这是什么原因造成的呢?我们应该如何解决呢?请继续往下看
二、原因
这是由于电脑里开启了代理,例如开启了翻墙软件等,就会造成这个原因
三、解决方案
执行命令:
取消全局代理:git config --global --unset http.proxy git config --global --unset https.proxy
来源地址:https://blog.csdn.net/qq_37284798/article/details/127806254