记忆一隅

git代理设置

2021-11-28 · 1 min read
网络

Git Proxy Setting

# 设置当前代理
git config http.proxy http://127.0.0.1:2334

# 取消当前代理
git config --unset http.proxy

#取消全局代理
git config --global --unset http.proxy

#设置socks5代理
git config http.proxy socks5://127.0.0.1:1080