答案 0 :(得分:1)
检查git config --show-origin -l
的输出:可能有一个使用错误语法注册的编辑器(例如,没有正确的引号或转义字符),这会导致git配置中的路径出现问题。 / p>
使用git config --edit
编辑正确的配置(系统,全局或本地),并删除不正确的设置。
检查" How can I set up an editor to work with Git on Windows?":从Git (for Windows) 2.5.3+开始,一个简单的git config core.editor notepad
就足够了。
或者,对于记事本++:
git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"