使用 Mercurial 克隆或拉取标签后如何获取标签变更集?
正如明确指南恰当地指出的(搜索“标签和克隆”):
当您运行
hgclone -r foo
来克隆从标签foo
开始的存储库时,新的 克隆不会包含比标签引用的版本更新的任何版本, 包括创建标签的修订版本。结果是你会 在新版本中准确获取项目历史的正确子集 存储库,但不是您可能期望的标签。
这意味着新克隆中的 hg Tags
不会显示 foo
标签。如果您在添加 foo
标记之前进行克隆,并且执行 hg pull -r foo
,也会发生同样的情况。
(题外话:标签是我在 hg 中唯一不太明白的东西。我知道将其放入变更集中有好处(例如合并),但将元数据与源代码混合总是感觉很奇怪。
)显然,我要求的是一种自动化的方式,而不是作为单独的手动步骤拉取标签更改集。
我知道我可以在 incoming
挂钩中检查这种情况(因此它适用于克隆和拉取),或者包装 clone
和 pull
。
但有更好/更简单的方法吗?
UPDATE hg bug tracker 已经存在此问题。
As the definite guide aptly points out (search for "Tags and cloning"):
When you run
hg clone -r foo
to clone a repository as of tagfoo
, the new
clone will not contain any revision newer than the one the tag refers to,
including the revision where the tag was created. The result is that you'll
get exactly the right subset of the project's history in the new
repository, but not the tag you might have expected.
It means hg tags
in your new clone does NOT show the foo
tag. Same thing happens if you had cloned before foo
tag was added, and you do hg pull -r foo
.
(Digression: tag is about the only thing I don't quite get in hg. I understand there are advantages (e.g. merge) in putting it in a changeset, but it always feels weird to have meta data mixed with source code.)
It should be obvious that I'm asking for an automated way, instead of pulling the tag changeset as a separate manual step.
I know I could check for this scenario in an incoming
hook (so it works for both clone and pull), or wrap clone
and pull
.
But is there a better/easier way?
UPDATE hg bug tracker already has this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(4)
有一个后克隆挂钩。它被称为 post-clone
(hgrc 手册页显示 post-ANYCOMMAND
和 pre-ANYCOMMAND
存在),尽管正如您所指出的,您也可以使用*changegroup
或 update
挂钩,因为克隆使用这两个函数(除非您使用 -U
抑制更新)。
如果您仅需要参考,那么只需添加一个 --localtag
即可获得名称,但没有额外的变更集。 您可以轻松地将类似的东西
hg clone -r tagname URL
hg tag --local tagname
构建到 shell 别名中。
除此之外,不一定能保证有一种方法可以拥有修订版 X 以及修订版 X 被标记的修订版,而不会同时具有您不想要的其他修订版,因为标签可能是在其他工作完成后应用的。当然,您可以始终更新到“X”并在您的工作目录中包含后续变更集,但它们仍然会在您的存储库中。
老实说,一旦我发现当你克隆一个标签时,标签名称不会很长,我承认一开始这让我很困惑,我发现没有必要将变更集与标签在其中。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
您想要使用
bash
和嵌入式 Perl 脚本进行大规模破解吗?嗯,就是这样...这会调用
hg log
命令来提取第一个与标签相关的修订版之后的修订号,然后克隆到该修订版。目前这不适用于远程存储库:不幸的是,
-R
开关仅适用于本地存储库。You want a giant hack with
bash
and an embedded Perl script? Well, here it is...This invokes the
hg log
command to extract the revision number after the first tag-related revision and then clones to this revision.Currently this does not work on remote repos:
-R
switch only works on local repos unfortunately.