Git遇到hint: Waiting for your editor to close the file...

Git遇到hint: Waiting for your editor to close the file…
然后弹出了默认编辑器,关掉编辑器后就会有:
Aborting commit due to empty commit message.
这是我在commit时遇到的,我是这么commit的:

$ git commit
hint: Waiting for your editor to close the file...

Aborting commit due to empty commit message.

原因是没有提交注释信息,每次commit都要提交注释的:

$ git commit -m '在单引号或双引号里写本次commit的注释'
[master 77ebc93] 在单引号或双引号里写本次commit的注释
 1 file changed, 0 insertions(+), 0 deletions(-)

问题解决。

如果需要写多行注释,参照以下链接:
以上解决办法来自:Commit message 和 Change log 编写指南
本文在解决方案上添加了问题描述。

你可能感兴趣的:(git)