bitbucket如何将bug#附加到提交的消息中

时间:2016-12-22 07:27:29

标签: java git github bitbucket

任何人都可以回答我的问题,我正在使用bitBucket,而且我已经看到了它的功能,当我们在message.it中提交并提及票证#时,将关联票据#catch提交并关联到它。 它是如何工作的是使用服务器挂钩

实现的

1 个答案:

答案 0 :(得分:1)

如果你引用BitBucket问题,你可以使用提交消息中的命令,你不应该添加任何钩子。例如:

First step in refactor. See #5 - 引用问题#5中的提交

Remove the buggy XYZ module, replace with ABC. Closes #3 - 引用问题#3中的提交并关闭它

有关详细信息,请参阅Atlassian BitBucket Documentation

如果您引用了JIRA票证,只需在提交消息中的任何位置使用票号,即可在侧栏中注册提交,例如:A commit message for ABC-1234。您可以发表评论,例如:A commit message. ABC-1234 #comment Some specific message to add to the ticket as a comment

对于JIRA和其他Atlassian服务,您必须将存储库挂钩到这些系统,通过存储库的“设置”部分执行此操作。

有关详细信息,请参阅JIRA Smart Commit Messages documentation