还原 Git 编辑器

Revert Git Editor

我试图更改 Git 的本机代码编辑器,但没有成功。现在,每当我尝试还原提交时,都会收到以下错误:

hint: Waiting for your editor to close the file... notepad++.exe -wl1: notepad++.exe: command not found
error: There was a problem with the editor 'notepad++.exe -wl1'.
Please supply the message using either -m or -F option.

我想知道如何重置或删除我所做的尝试修改。

只需在 ~/.gitconfig (C:\Users\<user>\.gitconfig) 的 [core] 部分下找到并修复 editor 设置。

从全局和本地配置中删除设置:

git config --global --unset-all core.editor
git config --unset-all core.editor

默认编辑器是vim,它有点难掌握所以你最好设置一个不同的,更熟悉的编辑器。参见

How do I make Git use the editor of my choice for commits?

https://whosebug.com/search?q=%5Bgit%5D+core.editor