解决 github 报错 Failed to connect to github.com port 443:connection timed out

一、前言

你在使用github的时候,是不是会经常出现Failed to connect to github.com port 443:connection timed out报错,这是什么原因造成的呢?我们应该如何解决呢?请继续往下看

二、原因

这是由于电脑里开启了代理,例如开启了软件等,就会造成这个原因

三、解决方案

执行命令:

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

你可能感兴趣的:(版本控制工具,服务器,运维)