How to get the latest tag name in current branch in Git?

前端 未结 24 2397
你的背包
你的背包 2020-11-22 17:04

What\'s the simplest way to get the most recent tag in Git?

git tag a HEAD
git tag b HEAD^^
git tag c HEAD^
git tag

output:



        
24条回答
  •  独厮守ぢ
    2020-11-22 17:23

    git describe --abbrev=0 --tags

    If you don't see latest tag, make sure of fetching origin before running that:

    git remote update

提交回复
热议问题