it报错: Failed to connect to github.com port 443 解决方案

转自: Git报错: Failed to connect to github.com port 443 解决方案-CSDN博客

两种情况:
第一种情况自己有,网页可以打开github。说明命令行在拉取/推送代码时并没有使用进行代理

第二种情况没有,这时可以去某些网站上找一些代理ip+port


解决办法:配置http代理Windows、Linux、Mac OS 中 git 命令相同:
配置socks5代理

git config --global http.proxy socks5 127.0.0.1:7890
git config --global https.proxy socks5 127.0.0.1:7890
配置http代理

git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

​​​​​​​it报错: Failed to connect to github.com port 443 解决方案_第1张图片

查看代理命令

git config --global --get http.proxy
git config --global --get https.proxy

取消代理命令

git config --global --unset http.proxy
git config --global --unset https.proxy

你可能感兴趣的:(github)