68

私は走っています:

brew update

そして、私はエラーが発生します:

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

これはよく知られたエラーであることがわかりました。実際、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

これらの指示に従いましたが、まだ同じエラーが表示されます。なにが問題ですか?

4

3 に答える 3

35

これは私のためにそれを修正しました:

https://stackoverflow.com/a/20138806

cd `brew --prefix`
git fetch origin
git reset --hard origin/master
于 2014-06-11T21:58:04.163 に答える
2

numpy 式の URL を手動で修正した後、この問題が発生しました。後でこれを修正することができました:

cd /usr/local/Library/Taps/homebrew/homebrew-python
git checkout -- numpy.rb
brew update
于 2014-11-19T03:00:06.713 に答える