git config --global https.proxy http://127.0.0.1:10809 git config --global https.proxy https://127.0.0.1:10809 git config --global http.proxy 'socks5://127.0.0.1:10808' git config --global https.proxy 'socks5://127.0.0.1:10808' git config --global --list #查询代理设置
$env:HTTP_PROXY="127.0.0.1:10809" $env:HTTPS_PROXY="127.0.0.1:10809"
set HTTP_PROXY=127.0.0.1:10809 set HTTPS_PROXY=127.0.0.1:10809