I would go with self.repo.git.tag(contains=commit)
.
git tag --contains <commit>
#1269
-
What would be the gitpython equivalent of I need to ascertain all tags that point to descendants of a commit. The git command is incredibly fast, but doing the following just isn't effective:
|
Beta Was this translation helpful? Give feedback.
-
I would go with |
Beta Was this translation helpful? Give feedback.
I would go with
self.repo.git.tag(contains=commit)
.