如何让Beyond Compare正确处理.hgtags文件?

时间:2016-09-29 20:51:36

标签: mercurial beyondcompare .hgtags

我们最近从P4Merge切换到BeyondCompare,以便使用我们的Hg存储库。

使用P4Merge,当你合并分支时,.hgtags总是存在冲突,但只是让P4Merge执行它的默认操作会导致正确的合并.hgtags。

使用BeyondCompare - 似乎只需要一个.hgtags,而不是合并任何差异。这导致丢失很多标签。

我们如何配置BeyondCompare来实际合并该文件的更改?

1 个答案:

答案 0 :(得分:0)

在Ubuntu Linux 16.04上使用Beyond Compare 4.1.9和Mercurial 3.7.3,在冲突的.hgtags的拉动和更新之后运行hg merge,在Beyond Compare的文本合并中启动.hgtags文件并允许我合并它们。您的.hgrc配置可能存在问题。

这是在我的Ubuntu系统上为diff和merge工作的.hgrc:

[extensions]
# uncomment these lines to enable some popular extensions
# (see "hg help extensions" for more info)
#
# pager =
# progress =
# color =
hgext.extdiff =

[extdiff]
cmd.bcomp = bcompare
opts.bcomp = -ro

[merge-tools]
bcomp.executable = bcompare
bcomp.args = $local $other $base $output
bcomp.priority = 1
bcomp.premerge = True
bcomp.gui = True

[ui]
merge = bcomp

如果您使用的是Windows或Mac,请告知我们。