使用go get xxxx无法下载项目,可以通过下面两步设置代理
第一步:设置控制台变量
-
windows cmd
:
- 设置代理
set http_proxy=http://127.0.0.1:1081
set https_proxy=http://127.0.0.1:1081
- 取消代理:重新打开
cmd
-
windows powershell
:
- 设置代理
$ENV:http_proxy="http://127.0.0.1:1081"
$ENV:https_proxy="http://127.0.0.1:1081"
- 取消代理:重新打开
powershell
第二步:设置git
代理:
git config --global http.proxy http://127.0.0.1:1081
git config --global https.proxy http://127.0.0.1:1081
取消git
代理:
git config --global --unset http.proxy
git config --global --unset https.proxy