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