How to list all Git tags?

前端 未结 10 2387
囚心锁ツ
囚心锁ツ 2020-11-28 17:40

In my repository, I have created tags using the following commands.

git tag v1.0.0 -m \'finally a stable release\'
git tag v2.0.0 -m \'oops, there was still         


        
10条回答
  •  旧巷少年郎
    2020-11-28 17:51

    To see details about the latest available tag I sometimes use:

    git show `git describe` --pretty=fuller
    

提交回复
热议问题