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

github拉取代码报403的错,是应为你设置了代理,就是软件造成的,要解决首先你要知道代理的端口然后进行设置 

git config --global http.proxy 127.0.0.1:80
git config --global https.proxy 127.0.0.1:80
//80就是你自己的端口

 如果不相使用代理

git config --global --unset http.proxy    #取消git的http代理配置
git config --global --unset https.proxy    #取消git的https代理配置

查看git配置

git config --global -l #查看git的所有配置

 注意:你代理的端口改变就要设置相应的代理

你可能感兴趣的:(github)