akiyoko blog

akiyoko の IT技術系ブログです

git commit --amend で「error: There was a problem with the editor 'vi'」が出たらやること

これまで見たことのなかった「error: There was a problem with the editor 'vi'」なるエラーが出て、半日ほど困ったという愚痴。

環境

症状

$ git commit --amend
error: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option.

解決策

$ which vim
/usr/bin/vim
$ git config --global core.editor "/usr/bin/vim"

参考

ありがたやー。知りたいことそのまま。