转载自简书-黑键手记
主要原因是git访问太慢了。替换一下git镜像的地址就好了。
把中科大(中国科学技术大学)的镜像地址换成默认源。
- 第一步,替换brew.git
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
- 第二步,替换homebred-core.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
- 好了。可以开始更新了,update的最后面加上 --verbose 可以看到更新的进度
brew update --verbose
转载自简书-黑键手记