Mercurial——获取存储库内的所有文件,包括子存储库,但不获取存储库本身
这可能吗?
为了简单地解释我想要做什么:
我有一个存储库“A”和一个子存储库“B”。我有这对的两本。
在一个副本(我们称之为小副本)中,“A”具有变更集 A1-A5,“B”具有变更集 B1-B20。
在另一个(大)副本中,“A”具有变更集 A1-A10,“B”具有变更集 B1-B30。
我想要做的是从大存储库中获取所有文件,并将它们作为变更集 A6 和 B21 提交到小存储库中。然后我会将其推送到服务器。 (服务器上不存在大存储库,因此这不应产生任何冲突。)。
该领域的工具似乎确实存在 - 请参阅 此处。问题是我不知道任何建议的方法是否适用于子存储库。
Is this possible?
To give a simplified explanation of what I want to do:
I have a repository "A" with a subrepository "B". I have two copies of the pair.
In one copy (let's call it the small copy), "A" has changesets A1-A5, and "B" has changesets B1-B20.
In the other (big) copy, "A" has changesets A1-A10, and "B" has changesets B1-B30.
What I want to do is have take all the files from the big repo and commit them to the small one as changesets A6 and B21. Then I will push that to the server. (The big repo does not exist on the server, so this should not create any conflicts.).
Tools in this area do seem to exist -- see here, for example. The problem is I don't know whether any of the suggested methods play nice with subrepositories.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想使用类似 折叠扩展 的东西。
或者,下次您可以使用 Mercurial 队列,以便您的 A6-A10 提交补丁存储库中的补丁,然后您可以 qfinish 并作为 A6 推送。现有的最高领导人不应从根本上改变这些建议。
It sounds like you want to use something like the collapse extension.
Alternately, next time you could use mercurial queues so that your A6-A10 are commits on a patch in a patch repo, which you can then qfinish and push as A6. The suprepo existing shouldn't change either of those suggestions in any fundamental way.