【Git】hint: Waiting for your editor to close the file… error: cannot run editor: No such file or directoryの対処法

VSCodeを使用している際に,git pullで下記のようなエラーが表示されました.


...
hint: Waiting for your editor to close the file... error: cannot run editor: No such file or directory
error: unable to start editor 'editor'
Not committing merge; use 'git commit' to complete the merge.

原因は,コミットメッセージを編集するためのエディタがうまく起動できていないことです.

VSCodeをGitエディタと使用するためには,下記コマンドを入力します.


git config --global core.editor 'code --wait'

この設定の後,下記コマンドを入力することでgit pullします.


git reset --merge
git pull ...
よかったらシェアしてね!
目次