mac brew换源解决UPTATE HOMEBREW

步骤一

cd “$(brew --repo)”
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.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 update,brew install速度变快很多了,不会卡在那半天没动静,替换镜像完成。

======

还原brew

cd “$(brew --repo)”
git remote set-url origin https://github.com/Homebrew/brew.git

cd “$(brew --repo)/Library/Taps/homebrew/homebrew-core”
git remote set-url origin https://github.com/Homebrew/homebrew-core

brew update

发布了12 篇原创文章 · 获赞 0 · 访问量 123

猜你喜欢

转载自blog.csdn.net/codeWQZheng/article/details/105515789