I've read through:
https://confluence.atlassian.com/fisheye/using-smart-commits-298976812.html
And I understand how a commit message like:
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
Would close the jira issue ABC-1234
with the message "All fixed".
But what is the exact format required for these smart commits to work? Would a line in a commit message like the following work:
[ABC-1234] #close All fixed
What about a line that doesn't start with the ISSUE_KEY
, would the following work:
Jira-Smart-Commit: ABC-1234 #close All fixed
Is there some place I could get an exact definition of what will work?