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 的一部分。