如何在命令行中查看 git 存储库中的所有标签

发布于 2024-09-09 06:58:42 字数 29 浏览 2 评论 0原文

有类似“git show标签”之类的东西吗?

Is there something like "git show tags"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

匿名的好友 2024-09-16 06:58:42

git tag 列出存储库中使用的标签。

git tag -l 如果使用 -l 选项,您可以传递搜索模式来过滤标签。

git tag to list tags used in the repo.

git tag -l if you use the -l option you can pass a search pattern to filter out tags.

赢得她心 2024-09-16 06:58:42
git tag -l
git tag

-l <pattern>

列出名称与给定模式匹配的标签(如果没有给出模式,则列出所有标签)。
键入不带参数的“git tag”,也会列出所有标签

另请参阅 GitHub 标记
我在“如何按 rc-XYZW 形式的版本字符串顺序对 git 标签进行排序?”中提到对用于排序的顺序列表标签。

git tag -l
git tag

-l <pattern>

List tags with names that match the given pattern (or all if no pattern is given).
Typing "git tag" without arguments, also lists all tags

See also GitHub tagging.
And I mentioned in "How to sort git tags by version string order of form rc-X.Y.Z.W?" to sort order used for listing tags.

甜警司 2024-09-16 06:58:42

使用:

git ls-remote --tags YOUR_REPOSITORY_NAME

Use:

git ls-remote --tags YOUR_REPOSITORY_NAME
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文