環境
macOS: 10.14.4
事象
git commit
git rebase -i HEAD~3
などを行った際に下記エラーが発生。
hint: Waiting for your editor to close the file... error: cannot run : No such file or directory
error: unable to start editor ''
解決方法
.gitconfigの設定を修正することで解決。
手順
# .gitconfigの内容を確認
$ less ~/.gitconfig
# 設定変更(他のリポジトリでも使いたいのでグローバルで良いかと)
$ git config --global core.editor vi
# .gitconfigが変更されていることを確認
$ less ~/.gitconfig