7

在我的提交信息中,我尝试使用以下指南:

1º 行 - <80char 的摘要

2º线 - 空间

3º Line - 正文从这里开始

在控制台中,我正在这样做:

git 提交

然后编辑器打开,我写下我想要遵循我保存的指南的信息,然后关闭编辑器。

我返回控制台,它给了我错误:

error: There was a problem with the editor '"C:/Program Files (x86)/GitExtensions/GitExtensions.exe" fileeditor'.

Please supply the message using either -m or -F option.
4

2 回答 2

2

根据您的说法,我可以假设您在 Windows 上使用 git 扩展,我认为您的问题与错误的配置有关,请在 git 扩展的配置窗格中配置默认​​文本编辑器。

否则,您可以在不让编辑器每次都以这种方式提示的情况下提交:

git commit -m "Your commit message"

如果你想要多行消息,你可以用反斜杠换行:

git commit -m "1º Line - summary with <80char \
2º Line - space \
3º Line - The body message start here"
于 2012-08-15T12:28:49.923 回答
-1

我怀疑这是因为您的文本编辑器没有以状态码 0 退出(表示成功,并且没有错误)。您使用的是什么文本编辑器,您是否干净地退出了文本编辑器?

于 2012-08-15T12:26:03.053 回答