一单山、查看當(dāng)前Homebrew 鏡像源
- 方法1
brew config
# 查看現(xiàn)在鏡像源
# ORIGIN:https://github.com/Homebrew/brew.git 之前未操作過(guò)則會(huì)顯示這個(gè)鏈接授药,也就是官方鏡像源
- 方法2
# brew.git鏡像源
git -C "$(brew --repo)" remote -v
# homebrew-core.git鏡像源
git -C "$(brew --repo homebrew/core)" remote -v
# homebrew-cask.git鏡像源
git -C "$(brew --repo homebrew/cask)" remote -v
二、替換源
國(guó)內(nèi)鏡像地址
- 方法1
# 替換 brew.git
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
# 替換 homebrew-core.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
- 方法2
git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
- 方法3
if [ $SHELL = "/bin/bash" ] # 如果你的是bash
then
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.bash_profile
source ~/.bash_profile
elif [ $SHELL = "/bin/zsh" ] # 如果用的shell 是zsh 的話
then
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/' >> ~/.zshrc
source ~/.zshrc
fi
三凹嘲、查看是否替換成功
brew config
#查看更換后的鏡像源(ORIGIN: https://mirrors.ustc.edu.cn/brew.git 說(shuō)明更換成功)
如果替換成功后师倔,進(jìn)行brew update就可以了
四、恢復(fù)原有鏡像源的方法
- 如果需要恢復(fù)原有鏡像源的話(國(guó)內(nèi)鏡像源突然不能用了或版本不夠新)
git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git
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
# 找到 ~/.bash_profile 或者 ~/.zshrc 中的HOMEBREW_BOTTLE_DOMAIN 一行刪除
brew update
參考: