解决 GitHub Failed to connect to 127.0.0.1 port 7890 after 5 ms: Connection refused
查询下代理,如果有,就取消。然后重新设置代理端口即可。
1、查询代理
2、有
通过git取消代理设置
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy
#只对github.com
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
#取消代理
git config --global --unset http.https://github.com.proxy
3、再次查询
git config --global http.proxy #查看git的http代理配置
git config --global https.proxy #查看git的https代理配置
git config --global -l #查看git的所有配置
4、如果没有就重新设置代理端口