平時咱們執行 brew 命令安裝軟件的時候,跟如下 3 個倉庫地址有關:git
brew.gitgithub
homebrew-core.gitshell
經過如下操做將這 3 個倉庫地址所有替換爲 Alibaba 提供的地址bash
# 替換成阿里巴巴的 brew.git 倉庫地址: url
cd "$(brew --repo)" spa
git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git 3d
#======================================================= #
還原爲官方提供的 brew.git 倉庫地址
cd "$(brew --repo)"
git remote set-url origin https://github.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
#======================================================= #
還原爲官方提供的 homebrew-core.git 倉庫地址
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://github.com/Homebrew/homebrew-core.git
BASH 終端操做方式
# 替換 homebrew-bottles 訪問 URL:
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
#======================================================= #
還原爲官方提供的 homebrew-bottles
訪問地址 vi ~/.bash_profile
# 而後,刪除 HOMEBREW_BOTTLE_DOMAIN 這一行配置
source ~/.bash_profile