Homebrew update 失败,报错 homebrew-core is a shallow clone
目录
发生环境:macOS V11.1 (Big Sur)
发生的问题:brew update
时报错,
|
解决 shallow 问题
按照提示执行git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
,而往往等待很久后,还总是失败。
报错内容类似:
fatal: unable to access 'https://github.com/Homebrew/homebrew-core.git/': transfer closed with outstanding read data remaining
这通常是因为要下载的文件包比较大,因为国内网速问题,耗费时间过长而失败。
解决 unshallow 因下载速度慢而失败:
1,打开目录“/usr/local/Homebrew/Library/Taps/homebrew/”,删除“homebrew-core”和“homebrew-cask”
2,使用第三方加速通道重新 clone 这两个仓库
git clone https://github.com.cnpmjs.org/Homebrew/homebrew-core.git /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
git clone https://github.com.cnpmjs.org/Homebrew/homebrew-cask.git /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask --depth=1
3,再执行 unshallow 命令
git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask fetch --unshallow
这时候会自动通过 cnpmjs.org 这个加速通道下载所需的软件包。
等待,完成。
参考
阿里云百炼大模型
9折优惠 + 所有模型各百万免费Token →