我读过:
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
将关闭jira问题ABC-1234
并显示“全部已修复”消息。
但这些智能提交工作所需的确切格式是什么?提交消息中的行如下所示:
[ABC-1234] #close All fixed
如果一行不以ISSUE_KEY
开头,那么下面的工作如下:
Jira-Smart-Commit: ABC-1234 #close All fixed
是否有一些地方我可以准确定义哪些方法有效?
答案 0 :(得分:1)
智能提交的格式如下
<ignored text> <ISSUE_KEY> <ignored text> #<COMMAND> <optional COMMAND_ARGUMENTS>
所以你不需要把问题键放在行的开头。
我们目前正在修改文档,因此您可能会在上次找到更多信息
https://confluence.atlassian.com/display/FISHEYE/Using+smart+commits