如何更新 Homebrew?

发布于 2024-11-07 23:59:20 字数 188 浏览 0 评论 0原文

当我运行时:

brew update

我收到一条消息,说它在 /usr/local/.git/ 中初始化了一个空存储库,然后我收到此错误:

屏幕截图

When I ran:

brew update

I got a message saying it initialized an empty repository in /usr/local/.git/, then I got this error:

Screenshot

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

冰雪之触 2024-11-14 23:59:20
  • cd /usr/local
  • git status
  • 放弃所有更改(除非您确实想尝试提交到 Homebrew - 您可能不想)
  • git status code> 直到干净
  • brew update
  • cd /usr/local
  • git status
  • Discard all the changes (unless you actually want to try to commit to Homebrew - you probably don't)
  • git status til it's clean
  • brew update
不寐倦长更 2024-11-14 23:59:20

从 2021 年开始,您只需使用 brew update 即可更新自制软件本身。

As of 2021 you can simply use brew update which updates homebrew itself.

鹤舞 2024-11-14 23:59:20

或者,您可以通过再次安装来更新 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)"

Alternatively you could update brew by installing it again. (Think I did this as El Capitan changed something)

Note: this is a heavy handed approach that will remove all applications installed via brew!

Try to install brew a fresh and it will tell how to uninstall.

At original time of writing to uninstall:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"

Edit: As of 2020 to uninstall:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文