在使用 brew 的时候,经常就会遇到各种奇奇怪怪的错误,比如更新时候常遇到的:
1 2 3 |
fatal: git-write-tree: error building trees Cannot save the current index state Error: Failure while executing: git stash save --include-untracked --quiet |
还有这个:
1 |
Error: Failure while executing: git pull --ff --no-rebase --quiet origin refs/heads/master:refs/remotes/origin/master |
遇到这些问题,八成是你的brew目录权限错误。
使用如下命令修复[……]