Mercurial 合并的默认主干版本?

发布于 2024-10-18 21:51:58 字数 352 浏览 3 评论 0原文

当我们将 Mercurial 功能发布存储库中的更改合并到主干存储库时,我们总是会与 Maven POM 文件 (pom.xml) 和 Mercurial .hgtags 文件发生冲突。

我们总是想保留主干版本 - 我们永远不需要功能发布存储库版本。当存在合并冲突时,有什么方法可以告诉 Mercurial 始终使用这些文件的主干版本吗?


更新:根据所选答案,这有效:

[merge-patterns]
.hgtags = internal:local
pom.xml = internal:local
**\pom.xml = internal:local

When we merge changes from our Mercurial feature release repositories into our trunk repository, we always have conflicts with our Maven POM files(pom.xml) and our Mercurial .hgtags file.

We always want to keep the trunk version - we never want the feature release repo version. Is there any way to tell Mercurial to always use the trunk version of these files when there are merge conflicts?


Update: Per the selected answer, this works:

[merge-patterns]
.hgtags = internal:local
pom.xml = internal:local
**\pom.xml = internal:local

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

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

发布评论

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

评论(1

握住你手 2024-10-25 21:51:58

对于您的 pom.xml 文件,将合并工具设置为 internal:local (或者 internal:remote 如果您没有更新到您想要的版本)正在呼叫中继)此处进行了解释
试试这个:

[merge-patterns]
pom.xml = internal:local

For your pom.xml file set the merge tool to internal:local (or internal:remote if you're not updated to what you're calling trunk). Explained here.
Try this:

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