Go Wiki:GoGetProxyConfig

go get(在 GoGetTools 中列出)使用的源代码设置代理

Windows 命令行

$ set http_proxy=http://proxy.example.com:port

git

$ git config [--global] http.proxy http://proxy.example.com:port

mercurial

编辑 ~/.hgrc 并添加以下内容

[http_proxy]
host=proxy.example.com:port

svn

编辑 ~/.subversion/servers 并添加以下内容

[Global] 
http-proxy-host=proxy.example.com
http-proxy-port=xxxx 

此内容是 Go Wiki 的一部分。