1. `git describe` 是用来获取可读性更高的标签名,通常用于发布版本。它会根据当前所在的提交与最近的tag之间的距离生成一个描述,例如 `v1.0.1-12-ga1b2c3d`。 2. `–tags` 参数会告诉 `git describe` 去使用所有tag进行匹配。 3. `–abbrev=0` 参数会让 `git describe` 只显示最近的tag,不包含任何提...
git describe --tags --long --dirty=* --match "tagname*" > tagname_v1.02-0-g59584af 3. push tag name to remote repo git push origin <branchname> --tags 二、show log with tags 1. show git log with tags: git log -tags show tag with no ancestor and within one line: git log ...
替换``为需要查看的具体标签名称。 3. 使用git log命令:命令`git log –tags`可以查看所有标签相关的提交历史。这将显示带有标签的提交的详细信息,包括提交ID、提交者、日期和注释。 4. 使用git describe命令:`git describe`命令可以帮助你找到一个特定的提交的最近的标签。该命令会显示距离给定提交最近的标签名称,...
git describe--tags 3、显示长格式的描述 显示长格式的描述,包括哈希和距离标签的提交数: git describe--long 4、仅在提交完全匹配标签时返回标签名称 如果当前提交与某个标签完全匹配,则仅返回标签名称: git describe--exact-match 5、添加 -dirty 后缀 如果工作目录有未提交的更改,则在描述中添加 -dirty 后缀:...
git-describe - 根据一个可用的引用,给一个对象起一个人类可读的名字 概述 git describe [--all] [--tags] [--contains] [--abbrev=<n>] [<commit-ish>…] git describe [--all] [--tags] [--contains] [--abbrev=<n>] --dirty[=] 。 git describe <blob 描述 该命令找到可从提交中...
git describe --- 显示当前离当前提交最近的tag 如果符合条件的tag指向最新提交则只是显示tag的名字,否则会有相关的后缀来描述该tag之后有多少次提交以及最新的提交commit id。不加任何参数的情况下,git describe 只会列出带有注释的tag e.g. $ git describe ...
git describe --tags # 0.1.0-dev-93-g1416689 To get the most recent annotated tag: git describe --abbrev=0 获取当前分支的remote git config --get branch.main.remote 或者 $ git branch-vv main aaf02f0[main/master:ahead25]Some other commit*master add0a03[jdsumsion/master]Some commit ...
运行git describe,您将看到一个人类可读的字符串,该字符串由最后一个标记名称与当前提交组合而成,以生成一个字符串。您还可以将特定标签传递给它, 请注意,除非您附加--all标志,否则您必须已创建标签才能正常工作。默认情况下,Git describe 也只会使用带注释的标签,因此您必须指定--tags标志以使其也使用轻量级标签...
git describe --tags --abbrev=0 3.查看标签详细信息 git tag -ln 4.本地创建标签 git tag <version-number> 5.默认tag是打在最近的一次commit上,如果需要指定commit打tag: $ git tag -a -m "v1.0发布(描述)" 6.推送标签到远程仓库——首先要保证本地创建好了标签才可以推送标签到远程仓库: ...
git describe --always --tags | sed 's/.*-g//g' git describe --always --tags | sed 's/.*-g//g' 分类: 我的问题 好文要顶 关注我 收藏该文 微信分享 lydstory 粉丝- 36 关注- 0 +加关注 0 0 升级成为会员 « 上一篇: openwrt docs » 下一篇: openwrt feeds 下面zigb...