Skip to content

Instantly share code, notes, and snippets.

@ifnull
Last active December 18, 2015 05:28
Fix brew update that results in message ... "Your local changes to the following files would be overwritten by merge"
cd /usr/local
sudo chown -R `whoami`:admin ./
git reset --hard
git clean -fd
cd ~
find /usr/local/Library/Formula -type l -delete
brew doctor
brew update
brew prune
brew cleanup
brew doctor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment