16

我正在使用 macbook 并在我的机器上安装了 ruby​​。我想安装一个 ruby​​ gem,但想先更新 HomeBrew。我在我的主文件夹中运行“brew update”并收到此错误:

 error: The following untracked working tree files would be overwritten by merge:
Library/Formula/vcprompt.rb
 Please move or remove them before you can merge.
 Aborting
 Error: Failure while executing: git pull -q origin refs/heads/master:refs/remotes/origin/master

我尝试进入 library/formula 文件夹,但它在我的机器上不存在。我不知道从这里做什么。

4

1 回答 1

47

cd /usr/local && git reset --hard FETCH_HEAD

或者如果它失败了

cd /usr/local && sudo git reset --hard FETCH_HEAD

于 2013-03-29T16:21:38.637 回答