gitpython-developers / GitPython

GitPython is a python library used to interact with Git repositories.
http://gitpython.readthedocs.org
BSD 3-Clause "New" or "Revised" License
4.65k stars 906 forks source link

Get annotated tags #1936

Closed AlesyaSeliazniova30032012 closed 4 months ago

AlesyaSeliazniova30032012 commented 4 months ago

I need to use GItPython API to get annotated tags. If I do next:

repo = git.Repo(repo_path) tags = repo.tags I get list of lightweight tags. How do I get a list of annotated tags? I need for annotated tags info: tag, tagger, tagged_date Thanks for any help