Git 设置代理

环境:

  • 已启动代理软件, 本地端口为 10808

在 Git Bash 中输入

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

即可启动全局 git 的 HTTP&HTTPS 代理

取消代理

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