获取给定提交的下一个较旧标签?

时间:2018-09-17 13:04:40

标签: python-3.x gitpython

我正在尝试为给定提交找出下一个较旧的标签。我目前有以下功能:

def next_older_tag(commit):
    repo = commit.repo
    for tag in repo.tags:
        if tag.commit.committed_datetime >= commit.committed_datetime:
            continue
        return tag

在查阅了文档之后,我找不到更好的方法来解决这个问题-我对吗?它可以工作,但是感觉应该有更好的方法来实现。

0 个答案:

没有答案