brew如何切换仓库为清华镜像?如何加快brew update?
发布于 作者:苏南大叔 来源:程序如此灵动~ 我们相信:世界是美好的,你是我也是。平行空间的世界里面,不同版本的生活也在继续...
本文中,苏南大叔还是致力于解决卡住Updating Homebrew
的问题。本文中的解决方案是,更换本机的brew
的repo
地址为清华镜像。本文中的主要内容来自于清华镜像的说明。本文中,就是加上了苏南大叔自己的理解。
本文的测试环境:mac
,homebrew@2.2.9-25-g19050bd
。不想听苏南大叔废话的,可以直接点击下面的传送门,到清华的brew
仓库说明页面:
更换repo
到tsinghua
在tsinghua
的说明页面上,还混杂有linux
下的brew
切换。而苏南大叔片面的认为:brew
就是mac
系统上的。所以,针对mac
系统,切换的方式为:
# brew 程序本身,Homebrew/Linuxbrew 相同
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
# 以下针对 mac OS 系统上的 Homebrew
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
git -C "$(brew --repo homebrew/cask-fonts)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask-fonts.git
git -C "$(brew --repo homebrew/cask-drivers)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask-drivers.git
至于homebrew-cask
,苏南大叔这里是没有安装的。所以,对于我来说,基本上没有啥意义。所以,相关的错误提示,可以一笔带过。
还原repo
# brew 程序本身,Homebrew/Linuxbrew 相同
git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git
# 以下针对 mac OS 系统上的 Homebrew
git -C "$(brew --repo homebrew/core)" remote set-url origin https://github.com/Homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://github.com/Homebrew/homebrew-cask.git
git -C "$(brew --repo homebrew/cask-fonts)" remote set-url origin https://github.com/Homebrew/homebrew-cask-fonts.git
git -C "$(brew --repo homebrew/cask-drivers)" remote set-url origin https://github.com/Homebrew/homebrew-cask-drivers.git
测试是否正常
用brew update
来测试测试,正常情况下来说,会比较快的执行完毕。如果觉得效果不好,那么就用上面的代码给还原一下吧。
命令如下:
brew update
执行结果类似如下:
brew update
Updated Homebrew from 87c35ac44 to 19050bd73.
Updated 4 taps (homebrew/cask-versions, homebrew/core, homebrew/cask and homebrew/services).
相关链接
目前为止,为了解决Updating Homebrew
的问题,有两个方案了。一个是禁止其更新,另外一个是换个更快的更新仓库。
总结
从清华的仓库说明上看,居然homebrew
还有个linux
的版本,这个是很意外的事情。如果有机会,苏南大叔会试试这个linux
的版本的。更多brew
相关经验文章,可以参考苏南大叔的博客:
如果本文对您有帮助,或者节约了您的时间,欢迎打赏瓶饮料,建立下友谊关系。
本博客不欢迎:各种镜像采集行为。请尊重原创文章内容,转载请保留作者链接。
本博客不欢迎:各种镜像采集行为。请尊重原创文章内容,转载请保留作者链接。