>백엔드 개발 >PHP 튜토리얼 >homebrew 升级php失败,求解决方法

homebrew 升级php失败,求解决方法

WBOY
WBOY원래의
2016-06-06 20:38:38960검색

升级过程如下:

<code>brew update
error: Your local changes to the following files would be overwritten by merge:
    Formula/php56.rb
Please, commit your changes or stash them before you can merge.
Aborting
Error: Failed to update tap: homebrew/php
</code>

求解决方法

回复内容:

升级过程如下:

<code>brew update
error: Your local changes to the following files would be overwritten by merge:
    Formula/php56.rb
Please, commit your changes or stash them before you can merge.
Aborting
Error: Failed to update tap: homebrew/php
</code>

求解决方法

找到解决办法了,如下

<code>cd $(brew --prefix)/Library/Taps/homebrew/homebrew-php
git checkout -- Formula/php56.rb
</code>

另外很感谢@mcfog 提供的PHPBrew,很值得推荐,我会尝试的

提示很明确啊,php56.rb本地被改过,需要还原才能更新

如果你不清楚怎么被改过的话,直接

<code>bash</code><code>cd /usr/local/Library/Formula/
git reset --hard
</code>

还原全部formula文件就好

顺带继续推荐更好支持多php版本,编译更方便的PHPBrew

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.