使用go get xxxx無法下載項目谓厘,可以通過下面兩步設(shè)置代理
第一步:設(shè)置控制臺變量
-
windows cmd
:
- 設(shè)置代理
set http_proxy=http://127.0.0.1:1081
set https_proxy=http://127.0.0.1:1081
- 取消代理:重新打開
cmd
-
windows powershell
:
- 設(shè)置代理
$ENV:http_proxy="http://127.0.0.1:1081"
$ENV:https_proxy="http://127.0.0.1:1081"
- 取消代理:重新打開
powershell
第二步:設(shè)置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