在 Bitbucket 中的提取请求 MERGE 后,目标分支中的git提交消息如下所示:
将来自sourcebranchname的PROJNAME / REPONAME中的拉取请求#PRNUMBER合并到 targetbranchname
- commit' 61ead4d30bla498543cblaef03fdf0be41fblub7':添加了rootId属性以允许过滤......
在Bitbucket中显示Pull Requests的URL方案如下所示:
http://bitbuckethost:port/projects/PROJNAME/repos/REPONAME/pull-requests/PRNUMBER
在 SourceTree 中,高级 repo设置允许您将提交消息模式链接到网址。
到目前为止,我没有设置合适的正则表达式模式,也不知道如何在URL中引用匹配的令牌。有人知道,如何做或知道如何使用SourceTree进行此类操作的完整参考资料?
答案 0 :(得分:0)
(Merge pull request #)(\d*)
- 这将匹配包含PR id的提交文本,将文本放在第一个标记中,将id号放在第二个http://bitbuckethost:port/projects/PROJNAME/repos/REPONAME/pull-requests/$2
- 这会使用第二个匹配令牌