本文介绍了如何获取最新的标签名称?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何获取当前分支的最新标签名称(如版本)? 的的)


How to get latest tag name (like version) of current branch?

解决方案

git describe should be enough

[torvalds@g5 git]$ git describe --abbrev=0 v1.0.5^2
tags/v1.0.0

For tags matching a certain pattern:

git describe --tags --abbrev=0 --match release-*

(Peterino's comment)

For the latest tag on all the branches (not just the latest branch)

git describe --tags $(git rev-list --tags --max-count=1)

(from kilianc's answer)

这篇关于如何获取最新的标签名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 17:38