Skip to content
扫码开始移动端阅读

git代理

104
需要≈
0.52
分钟
git
web

前置条件

如果你的git在提交代码的时候,经常会遇到timeout

开启http代理

sh
# 假设你本地代理的端口是7890
git config --global http.proxy 127.0.0.1:7890

开启https代理

sh
git config --global https.proxy 127.0.0.1:7890

取消http代理

sh
git config --global --unset http.proxy

取消https代理

sh
git config --global --unset https.proxy

验证

sh
git config --global http.proxy
git config --global https.proxy
# 127.0.0.1:7890

上次更新: