1

我已通读:

https://confluence.atlassian.com/fisheye/using-smart-commits-298976812.html

而且我了解提交消息如何:

This is the subject line

This is the body. There might be several lines here
as per good git commit message formatting.

ABC-1234 #close All fixed

ABC-1234将使用“所有已修复”消息关闭 jira 问题。

但是这些智能提交工作所需的确切格式是什么?提交消息中的一行是否会像以下工作:

[ABC-1234] #close All fixed

不以 开头的行怎么样ISSUE_KEY,以下工作:

Jira-Smart-Commit: ABC-1234 #close All fixed

有没有什么地方可以让我准确定义什么会起作用?

4

1 回答 1

1

智能提交的格式如下

  <ignored text> <ISSUE_KEY> <ignored text> #<COMMAND> <optional COMMAND_ARGUMENTS>

所以你不需要把问题键放在行首。

我们目前正在修改文档,因此您可能会在此处找到比上次查看更多的信息

https://confluence.atlassian.com/display/FISHEYE/Using+smart+commits

于 2015-11-16T02:07:03.540 回答