带有core.editor的git commit命令等于原子

时间:2016-06-08 15:11:26

标签: git atom-editor

我的原子编辑器有问题。我通过命令将atom设置为core.editor:

git config --global core.editor atom

但是当我尝试通过

将更改提交到git中的存储库时
git commit

命令,我希望我选择的编辑器将打开并提示提交消息,但在它打开之前git会抛出错误

Aborting commit due to empty commit message.

之后打开编辑器,当我输入提交消息并退出编辑器时没有提交,我知道我可以使用命令

git commit -m '<message>'

但我想知道为什么会出现这种错误以及如何解决它。

1 个答案:

答案 0 :(得分:3)

尝试:

git config --global core.editor "atom --wait"

原子 - 等待标志等待窗口在返回之前关闭。