美文网首页
pod install 总是超时

pod install 总是超时

作者: 拉风的胖鱼 | 来源:发表于2021-12-24 16:56 被阅读0次

    处理方式

    git config --global http.proxy http://127.0.0.1:7890

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

    改完之后还原:

    git config --global --unset https.proxy

    git config --global --unset http.proxy

    curl请求超时:

    在.zshrc 文件里配置

    export https_proxy="http://127.0.0.1:7890"

    export http_proxy="http://127.0.0.1:7890"

    不使用时,屏蔽掉

    相关文章

      网友评论

          本文标题:pod install 总是超时

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