[Git] error: There was a problem with the editor 'vi'. というエラーの解決方法
Git にて、git commit して Vim 上でコメント書いて、コミットしようとしたらエラーが発生しました。
$ git commit
error: There was a problem with the editor 'vi'.
Please supply the message using either -m or -F option.
Git に使用するエディタを設定してあげればOKです。
$ which vim
/usr/local/bin/vim
$ git config --global core.editor "/usr/local/bin/vim"
以上です。