..

brew访问加速

brew是mac上的包管理神器,但是有时候访问服务比较慢,这是我不能忍受的,我们需要加速一个brew的安装速度,brew的源都是github上的项目,所以我们只需要找对应项目的镜像项目来替换他 就能加速我们访问速度。这里我将自己的mac的源都换成了清华的源,方法如下:

替换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

替换homebrew-bottles

echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile

更新生效

brew update

安装速度明显变快了.