概要
-
$ git commit
コマンド実行後にエラーが出て困ったので自分の場合の解決方法をまとめる。
エラー
-
$ git commit
を実行してvimが開き、vim内で下記のエラーが出る。E349: No identifier under cursor
-
:wqで保存してターミナルに戻ると下記のエラーが出ている。
hint: Waiting for your editor to close the file... error: There was a problem with the editor 'vi'. Please supply the message using either -m or -F option.
解決方法
-
下記コマンドを実行してコミットメッセージ記入時のエディタを明示的に指定した。
git config --global core.editor "vim"