homebrew更新源
homebrew的默认官方源在github上,因此在国内访问慢,在使用brew update时,也经常卡在连接remote服务器这步。因此一般都选择国内的源,推荐清华和中科大。这里只是作为记录。
使用镜像源
这里用清华的源。
# 步骤一,替换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
# 步骤三
brew update
第一次会比较慢,因为在更新资源。
换回官方源
因为有些资源需要官方源才能进行更新下载,这里一并记录。
# 替换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://github.com/Homebrew/homebrew-core.git
# &
brew update