GitBash设置代理
git config --global https.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890
git config --global http.proxy 'socks5://127.0.0.1:7890'
git config --global https.proxy 'socks5://127.0.0.1:7890'
cmd设置代理
set http_proxy=http://127.0.0.1:7890
set https_proxy=http://127.0.0.1:7890