美文网首页
mac代理走终端

mac代理走终端

作者: 西充小凡哥 | 来源:发表于2021-11-01 10:14 被阅读0次

    //单个终端
    export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://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'

    git config --global --unset http.proxy

    git config --global --unset https.proxy

    相关文章

      网友评论

          本文标题:mac代理走终端

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