Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种解决方案,它允许我使用不是 HEAD 而是特定RELEASE标签的子存储库,或者如果可能的话,使用最新的标签。
RELEASE
这可能吗,我应该如何实现?有没有人实现这个?
我不知道git,但是Mercurial子存储库不链接到子存储库的头部,而是链接到特定的修订。
要设置子存储库的修订版,请将其更新为所需的修订版(在您的情况下为特定标签),然后提交主存储库。然后将主存储库链接到子存储库的特定修订版。
可以在此处找到有关 Mercurial 子存储库的良好指南,而 Mercurial 子存储库文档在此处。