Mercurial 中的标签差异

发布于 2024-10-17 14:59:58 字数 84 浏览 2 评论 0原文

在 Mercurial 中,有没有办法区分两个不同的标签?

我已经标记了我的构建,并在构建之间进行了几次提交,并想找出两个构建之间的差异。

In mercurial is there a way to diff between 2 different tags?

I have tagged my builds and have a couple commits in between builds and want to figure out the differences between the 2 builds.

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

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

发布评论

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

评论(2

迟月 2024-10-24 14:59:58
hg diff -r tag1:tag2

这就是全部内容了。

hg diff -r tag1:tag2

That's all there is to it.

逆光飞翔i 2024-10-24 14:59:58

这个答案在 Kiln StackExchange 中似乎相当完整(基于 hg diff 和 hg log ):

要查看在标签 v1.0 和 v1.1 之间引入的所有变更集,请运行:

hg log -r v1.0:v1.1

要查看这些修订中引入的差异净值总和,您可以运行:

hg diff -r v1.0:v1.1

如果您愿意,Mercurial 甚至可以将输出格式化为变更日志样式。只需添加 --style changelog 参数即可:

hg log -r v1.0:v1.1 --style changelog

This answer in the Kiln StackExchange seems quite complete (based on hg diff and hg log):

To see all of the changesets that were introduced between, say, the tags v1.0 and v1.1, run:

hg log -r v1.0:v1.1

To see the net sum of differences introduced in those revisions, you'd instead run:

hg diff -r v1.0:v1.1

Mercurial can even format this output in changelog-style, if you want. Simply add the --style changelog parameter:

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