设置代理

打开cmd设置代理:

set http_proxy=http://0.0.0.0:8000
set https_proxy=http://0.0.0.0:8000

永久设置方案

先设置好IE代理。

cmd执行如下命令:

netsh winhttp import proxy source=ie

取消代理

解决代理产生的Failed to connect to 127.0.0.1 port (端口号): Connection refused问题

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

如果不生效,运行以下重置代理

unset http_proxy
unset https_proxy
env|grep -I proxy

(未输出任何东西)