andrewpthorp
andrewpthorp

Reputation: 5106

How do I update Homebrew?

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

Upvotes: 124

Views: 308514

Answers (3)

nzoLogic
nzoLogic

Reputation: 443

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

Upvotes: 40

Peter O'Brien
Peter O'Brien

Reputation: 185

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)"

Upvotes: 9

corysimmons
corysimmons

Reputation: 7685

  • 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

Upvotes: 71

Related Questions