Homebrew update fail: "Please, commit your changes or stash them before you can merge"

MacosGitHomebrew

Macos Problem Overview


I am running:

brew update

And I get an error:

error: Your local changes to the following files would be overwritten by merge:
	samtools.rb
Please, commit your changes or stash them before you can merge.
Aborting

It turns out this is a well known error. In fact, it's mentioned on the Homebrew wiki:

After running brew update, you receive a git error warning about untracked files or local changes that would be overwritten by a checkout or merge, followed by a list of files inside your Homebrew installation.

This is caused by an old bug in in the update code that has long since been fixed. However, the nature of the bug requires that you do the following:

cd $(brew --repository)
git reset --hard FETCH_HEAD

If brew doctor still complains about uncommitted modifications, also run this command:

cd $(brew --repository)/Library
git clean -fd

I followed those instructions and am still seeing the same error. What is wrong?

Macos Solutions


Solution 1 - Macos

I was able to resolve the issue myself.

What tipped me off is running "git status" did not show that file.

Instead of using the common solution:

cd $(brew --repository)
git reset --hard FETCH_HEAD

I had to do:

cd [directory of the file in question]
git reset --hard FETCH_HEAD

That resolved the problem.

Solution 2 - Macos

This fixed it for me:

https://stackoverflow.com/a/20138806

cd `brew --prefix`
git fetch origin
git reset --hard origin/master

Solution 3 - Macos

I had this problem after manually correcting a URL in the numpy formula. I was able to correct this later by:

cd /usr/local/Library/Taps/homebrew/homebrew-python
git checkout -- numpy.rb
brew update

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionburgerView Question on Stackoverflow
Solution 1 - MacosburgerView Answer on Stackoverflow
Solution 2 - MacosjavabrainView Answer on Stackoverflow
Solution 3 - MacosmichaelView Answer on Stackoverflow