CMD Power Shell Git使用代理
CMD
set http_proxy=http://127.0.0.1:22335 & set https_proxy=http://127.0.0.1:22335
Power Shell
$Env:http_proxy="http://127.0.0.1:22335";$Env:https_proxy="http://127.0.0.1:22335"
Git
git config --global https.proxy http://127.0.0.1:22335
git config --global https.proxy https://127.0.0.1:22335