Last active
December 18, 2015 05:28
-
-
Save ifnull/5732485 to your computer and use it in GitHub Desktop.
Fix brew update that results in message ... "Your local changes to the following files would be overwritten by merge"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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