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 ...