Windows如何配置代理(针对用gclient下载chromium)

1), svn: %APPDATA%\Subversion\servers

[global]
http-proxy-host = *.abc.com
http-proxy-port = 1008
http-proxy-exceptions = *.abc.com
2), git
set http_proxy=*.abc.com:1008
set https_proxy=*.abc.com:1008


echo %HTTP_PROXY%
git config --get http.proxy
git config --global http.proxy %HTTP_PROXY%
gclient sync --force

你可能感兴趣的:(windows)