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の一部です。