HomeBrew替换加速镜像
原创大约 1 分钟
本文介绍,HomeBrew替换加速镜像
背景介绍
下载HomeBrew网络不佳,需要替换稳定的镜像源来达到加速的目的
本地环境
macOS Sonoma 14.5 (23F79)
终端版本2.14 (453)
使用默认shell类型zsh
brew config 版本HOMEBREW_VERSION: 4.3.14
替换/还原brew.git仓库地址
查看仓库地址
git remote -v
git remote get-url origin
替换成阿里巴巴的 brew.git 仓库地址:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
还原为官方提供的 brew.git 仓库地址
cd "$(brew --repo)"
git remote set-url origin https://github.com/Homebrew/brew.git
2.替换/还原homebrew-core.git仓库地址
替换成阿里巴巴的 homebrew-core.git 仓库地址:
cd "$(brew --repo homebrew/core)"
git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
还原为官方提供的 homebrew-core.git 仓库地址
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://github.com/Homebrew/homebrew-core.git
3.替换/还原homebrew-bottles
替换 homebrew-bottles 访问 URL:
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc
还原为官方提供的 homebrew-bottles 访问地址
vim ~/.zshrc
# 然后,删除 HOMEBREW_BOTTLE_DOMAIN 这一行配置
source ~/.zshrc