自从我最新的Homebrew更新(到1.0.0),而不只是看到
Checking out v1.0.1 in /usr/local/Homebrew...
当我brew update
或brew upgrade --all
时,我现在看到了
Checking out v1.0.1 in /usr/local/Homebrew...
To checkout v1.0.1 in /usr/local/Homebrew run:
'cd /usr/local/Homebrew && git checkout v1.0.1
这是一个我应该做些什么的错误吗?这里发生了什么?更新对我来说没有失败吗?
答案 0 :(得分:5)
我遇到了同样的问题。在this question中找到了与您的解决方案非常相似的解决方案:
cd $(brew --prefix)/Homebrew && git fetch && git reset --hard origin/master
这似乎是由于自制软件的“前缀”和“存储库”目录的不同造成的。