美文网首页
2021-09-22

2021-09-22

作者: Jason_Zhang_ | 来源:发表于2021-09-22 17:01 被阅读0次

    Windows 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
    

    相关文章

      网友评论

          本文标题:2021-09-22

          本文链接:https://www.haomeiwen.com/subject/wtlggltx.html