集市汽车标签

时间:2011-10-11 17:14:18

标签: bazaar

我想使用automatic_tag_name挂钩自动创建标记名称,而无需手动输入

我试着写它:automatic_tag_name(分支名称,10)=“GIL”

  1. 这是正确的语法吗? (我在文件中找到了关于它的信息)
  2. 是否可以从文件创建标签名称?此文件仅包含标记名称

1 个答案:

答案 0 :(得分:1)

请在此处查看此示例: http://doc.bazaar.canonical.com/latest/en/user-guide/hooks.html

所以正确的电话应该是:

def post_push_autotag(push_result):
    automatic_tag_name(push_result.new_revno)

branch.Branch.hooks.install_named_hook('post_push_autotag', post_push_autotag, 'My autotag')