Git设置http全局代理

Github加速必备,配合代理工具食用更佳🚀。

1.设置全局http代理和https代理

1
2
git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

2.取消全局代理

1
2
git config --global --unset http.proxy
git config --global --unset https.proxy

Git设置http全局代理
https://blog.kevinchu.top/2023/09/20/git-proxy-config/
作者
Kevin Chu
发布于
2023年9月20日
许可协议