Site icon 时鹏亮的Blog

Git设置使用和取消HTTP代理示例

请知悉:本文最近一次更新为 2年 前,文中内容可能已经过时。

Git有特殊需求,要用代理拉代码,惯性思维是用Linux的export http_proxy,然后会发现不管用。

正确的方法是使用Git的config设置代码,示例指令:

git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

参考资料:https://gist.github.com/laispace/666dd7b27e9116faece6


如您从本文得到了有价值的信息或帮助,请考虑扫描文末二维码捐赠和鼓励。

尊重他人劳动成果。转载请务必附上原文链接,我将感激不尽。


与《Git设置使用和取消HTTP代理示例》相关的博文:

Exit mobile version