brew updateでエラー
$ brew update
error: insufficient permission for adding an object to repository database .git/objects
fatal: failed to write object
fatal: unpack-objects failed
Error: Failure while executing: git pull -q origin refs/heads/master:refs/remotes/origin/master
.git/objects
の権限がないらしいので、こういうときは次のコマンドを実行する。
chown -R $(whoami) /usr/local/.git
権限関係なので、これでも実行できないことがある。
そのときはsudo
する。
sudo chown -R $(whoami) /usr/local/.git
参考
▶brew update doesn't work · Issue #10292 · Homebrew/homebrew https://github.com/Homebrew/homebrew/issues/10292