查看 git 设置
代码语言:javascript复制# 当前仓库
git config --list
# 全局配置
git config --global --list
设置全局代理,使用 http 代理
代码语言:javascript复制git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
设置全局代理,使用socks5代理
代码语言:javascript复制git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080
取消全局代理
代码语言:javascript复制git config --global --unset http.proxy
git config --global --unset https.proxy
只对 github.com 使用代理
代码语言:javascript复制git config --global http.https://github.com.proxy http://127.0.0.1:20081
git config --global https.https://github.com.proxy http://127.0.0.1:20081
取消 github.com 代理
代码语言:javascript复制git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy