可能重复:
How can I set up an editor to work with Git on Windows?
Trouble on setting the git 'core.editor'
我正在尝试将我的默认git文本编辑器更改为TextMate,这样在提交时忘记-m标记会将我带入TextMate而不是vi。我有
[core]
editor = mate -w
在我的〜/ .gitconfig中,但它仍然向我抛出以下错误:
error: cannot run TextMate: No such file or directory
error: There was a problem with the editor 'TextMate'.
Please supply the message using either -m or -F option.
摆弄各种关于如何设置/取消设置核心编辑器的指南,并且找不到任何有用的东西,所以我来这里接受挑选。
答案 0 :(得分:4)
请参阅此问题中的答案:Trouble on setting the git 'core.editor'
由于您已经正确设置了$EDITOR
,只需从git中删除条目:
git config --global --unset-all core.editor
现在再次尝试git提交。