如何让 Git 使用代理服务器?
我需要从 Git 服务器检查代码,但每次都显示“请求超时”。我该如何解决这个问题?
或者,如何设置代理服务器?
使用命令:
git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
proxyuser
proxypwd
proxy.server.com
8080
请注意,这适用于 http 和 https 存储库。
如果您决定随时重置此代理并在没有代理的情况下工作:
git config --global --unset http.proxy
最后,检查当前设置的代理:
git config --global --get http.proxy