当我跑步时:
brew update
我收到一条消息,说它在中初始化了一个空存储库/usr/local/.git/
,然后出现此错误:
Answers:
cd /usr/local
git status
git status
直到干净brew update
git stash
更改。然后,在完成更新后,请运行git stash pop
以还原您的自定义修改
sudo chown -R yourusername:admin /usr/local/.git
cd /usr/local/Homebrew
或者,您可以brew
通过重新安装来进行更新。(想想我是在El Capitan更改了某些内容的情况下这样做的)
注意:这是一种繁重的方法,将删除通过brew安装的所有应用程序!
尝试安装brew全新,它将告诉您如何卸载。
在最初编写卸载时:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
编辑:从2020年开始卸载:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
brew
git init; git fetch https://github.com/mxcl/homebrew.git master; git reset --hard FETCH_HEAD; brew update
。