sh 在git存储库上获取最新标记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在git存储库上获取最新标记相关的知识,希望对你有一定的参考价值。

# The command finds the most recent tag that is reachable from a commit.
# If the tag points to the commit, then only the tag is shown.
# Otherwise, it suffixes the tag name with the number of additional commits on top of the tagged object 
# and the abbreviated object name of the most recent commit.
git describe

# With --abbrev set to 0, the command can be used to find the closest tagname without any suffix:
git describe --abbrev=0

# other examples
git describe --abbrev=0 --tags # gets tag from current branch
git describe --tags `git rev-list --tags --max-count=1` # gets tags across all branches, not just the current branch


以上是关于sh 在git存储库上获取最新标记的主要内容,如果未能解决你的问题,请参考以下文章

sh 在git存储库上获取最新标记

sh 删除本地和远程存储库上的所有标记(小心)

sh 从git存储库中删除所有标记(本地和远程)

sh 将git存储库及其所有分支,标记移动到新的远程存储库,保留提交历史记录

如何在 git 存储库上正确使用组文件权限?

sh 获取最新的git版本