设置代理proxy

CMD设置 HTTP 代理:

set http_proxy=http://127.0.0.1:10899
set https_proxy=http://127.0.0.1:10899

socks5代理设置:

set http_proxy=socks5://127.0.0.1:10899
set https_proxy=socks5://127.0.0.1:10899

取消代理:

set http_proxy=
set https_proxy=

Windows git bash 设置代理
设置 HTTP 代理:

git config --global http.proxy http://127.0.0.1:10899
git config --global https.proxy http://127.0.0.1:10899

设置 socks5代理:

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

取消代理

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

Windows PowerShell 设置代理
设置代理:

netsh winhttp set proxy 127.0.0.1:10899

代理测试:

curl https://www.google.com

CMD查看代理情况:

netsh winhttp show proxy

CMD取消代理:

netsh winhttp reset proxy

猜你喜欢

转载自blog.csdn.net/weixin_41303815/article/details/131292913