如何在 Git 中标记某个变更集?

发布于 2024-12-07 19:34:15 字数 98 浏览 0 评论 0原文

我试图找出如何标记历史记录中较早发生的变更集。我将其作为程序的功能部分来执行,因此,我无法进行签出然后标记,因为工作副本可能不干净,而且我也不敢修改存储,因为它可能已经包含某些内容。

I am trying to find out how to tag a changeset that occurred earlier in the history. I am doing this as a feature part of a program, so, I can't do checkout and then tag, because the working copy may not be clean, and I dare not to modify the stash either because it may already contain something.

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

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

发布评论

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

评论(2

深海夜未眠 2024-12-14 19:34:15

见此人:

git tag <tagname> <commit>

See the man:

git tag <tagname> <commit>
給妳壹絲溫柔 2024-12-14 19:34:15

只需使用:

git tag tag_name commit_hash

有关标签的更多信息:Git 社区图书Git 标签嗯>。

Just use:

git tag tag_name commit_hash

More on tags: Git tags in the Git Community Book.

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