美文网首页
mac的brew修改国内源

mac的brew修改国内源

作者: designer | 来源:发表于2021-11-14 08:55 被阅读0次

    mac的brew修改国内源

    清华源
    阿里云
    腾讯源
    清华源(本人在用)

    # 替换brew.git
    cd "$(brew --repo)"
    git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
    
    # 替换homebrew-core.git
    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
    
    # 刷新源
    brew update
    阿里云
    # 替换brew.git
    cd "$(brew --repo)"
    git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
    
    # 替换homebrew-core.git
    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
    
    # 刷新源
    brew update
    腾讯源
    
    替换brew.git:
    cd "$(brew --repo)"
    git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/brew.git
    
    替换homebrew-core.git:
    cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
    git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/homebrew-core.git
    
    # 刷新源
    brew update
    

    相关文章

      网友评论

          本文标题:mac的brew修改国内源

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