执行git commit命令后出现错误
简要说明
$ git commitコマンド実行後にエラーが出て困ったので自分の場合の解決方法をまとめる。
错误
(I apologize if the Chinese characters do not display correctly. The phrase “错误” means “error” in Chinese.)
$ 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”