如何监视特定文件以获取Mercurial中的更改?

时间:2012-04-04 12:40:22

标签: version-control mercurial notify

我已经建立了一个包含大型Java项目的远程Mercurial(Hg)存储库。我想监视对项目的pom文件所做的任何更改,并在对pom进行更改时接收电子邮件。

我想从通知中排除所有其他文件更改,因为我只对监视依赖项中的任何可能更改(因此是POM)感兴趣。是否有任何Mercurial扩展或使用Jenkins订阅Mercurial仓库中单个文件的更改历史记录?

2 个答案:

答案 0 :(得分:2)

notify extension发送有关回购更改的电子邮件。

Change Context(参见第6节)为您提供了一种迭代变更集中文件的方法。

将这两个东西放在一个自定义钩子中应该相当简单。查看上下文,只有在提到您的特殊文件时才发送电子邮件。

答案 1 :(得分:0)

@ Ed.ward

我最近不得不这样做(将通知扩展名与更改上下文结合使用)仅在某些文件发生更改时通知。 要从您自己的钩子调用通知挂钩,您需要导入hgext然后调用hgext.notify.hook。我的python工作示例:

import re, traceback
import hgext
def check_changegroup(ui, repo, hooktype, node=None, source=None, **kwargs):
    ui.note("Checking for files in %s with path: %s\n" % (repo.__class__.__name__, repo.root))
    file_match = ".*base.*" #ui.config('monitor_files', 'file_match')
    ui.note("file_match: %s\n" % file_match)
    file_match_re = re.compile(file_match, re.I)
    monitored_file_changed = False
    for rev in xrange(repo[node].rev(), len(repo)):
        changectx = repo[rev]       
        for f in changectx.files():
            if file_match_re.match(f):
                ui.note("  matched: %s\n" % f)
                monitored_file_changed = True
        if monitored_file_changed:
            ui.note("rev: %s from user: %s has changes on monitored files\n" % (rev, changectx.user()))
    if monitored_file_changed:
        ui.note("calling notify hook\n")
        try:
            hgext.notify.hook(ui, repo, hooktype, node, source)
        except Exception as exc:
            ui.warn(('%s error calling notify hook: %s\n') % (exc.__class__.__name__, exc))
            traceback.print_exc()
            raise