5

如何使用 Mercurial API 确定对每个变更集的存储库所做的更改?我能够获得与特定修订相关的文件列表,但我不知道如何判断该文件发生了什么。

我如何回答有关变更集中每个文件的这些问题:

  • 是加的吗?
  • 被删除了吗?
  • 被修改了吗?

文件上下文中是否有一个属性会告诉我这一点(如果有,我找不到它),或者有办法通过其他方式解决这个问题?

这是我的代码:

def index(request):
    u = ui.ui()
    repo = hg.repository(ui.ui(), '/path/to/repo')
    changes = repo.changelog
    changesets = []

    for change in changes:
        ctx = repo.changectx(change)
        fileCtxs = []
        for aFile in ctx.files():
            if aFile in ctx:
                for status in repo.status(None, ctx.node()):
                    # I'm hoping this could return A, M, D, ? etc
                    fileCtxs.append(status)

        changeset = {
            'files':ctx.files(),
            'rev':str(ctx.rev()),
            'desc':ctx.description(),
            'user':ctx.user(),
            'filectxs':fileCtxs,
        }
        changesets.append(changeset)

    c = Context({
        'changesets': changesets,
    })

    tmplt = loader.get_template('web/index.html')
    return HttpResponse(tmplt.render(c))
4

1 回答 1

5

localrepo.status()可以将上下文作为参数(node1node2)。

http://hg.intevation.org/mercurial/crew/file/6505773080e4/mercurial/localrepo.py#l973

于 2010-02-28T18:51:13.373 回答