Get the time and date of git tags

后端 未结 7 1298
逝去的感伤
逝去的感伤 2021-01-30 15:37

I have a project that is using git and have tagged all the releases with a tag.

$ git tag
v1.0.0
v1.0.1
v1.0.2
v1.0.3
v1.1.0

My goal is to list

7条回答
  •  余生分开走
    2021-01-30 15:59

    This always worked for me:

    git log --tags --simplify-by-decoration --pretty="format:%ci %d"
    

    Consult the "PRETTY FORMATS" section of the git-log manpage for details of the format string if you want a different date formatting.

提交回复
热议问题