如何配置 Beyond Compare 3 来解决 Eclipse 冲突?

发布于 2024-09-05 06:42:46 字数 389 浏览 5 评论 0原文

让 Beyond Compare 3 与 Eclipse/Subclipse 冲突解决方案一起使用的正确参数是什么?

首选项>中团队> SVN> Diff/Merge 可以选择指定外部程序来解决冲突。

默认参数是:

"${yours}" "${theirs}" "${base}" "${merged}"

它建议 TortoiseMerge 设置:

/theirs:"${theirs}" /base:"${base}" /mine:"${yours}" /merged:"${merged}"

但是 Beyond Compare 的适当配置是什么?

What is the correct parameters to get Beyond Compare 3 working with Eclipse/Subclipse conflict resolution?

In Preferences > Team > SVN > Diff/Merge there's the option to specify an external program to resolve conflicts.

The default parameters are:

"${yours}" "${theirs}" "${base}" "${merged}"

And it suggests TortoiseMerge settings of this:

/theirs:"${theirs}" /base:"${base}" /mine:"${yours}" /merged:"${merged}"

But what is the appropriate config for Beyond Compare?

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

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

发布评论

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

评论(3

画骨成沙 2024-09-12 06:42:46

看起来这是正确的:

"${theirs}" "${yours}" "${base}" "${merged}"

基于此论坛帖子:
http://www.scootersoftware.com/vbulletin/showthread.php? t=368#4

要适当地标记各个部分,并在单独的(单独)实例中运行 BC,它是这样的:

"${theirs}" "${yours}" "${base}" "${merged}"
/lefttitle="Incoming (${theirs})"
/centertitle="Base (${base})"
/righttitle="Local (${yours})"
/outputtitle="Merged (${merged})"
/solo

上面使用多行以提高可读性,将换行符替换为空格以供使用,即

 "${theirs}" "${yours}" "${base}" "${merged}" /lefttitle="Incoming (${theirs})" /centertitle="Base (${base})" /righttitle="Local (${yours})" /outputtitle="Merged (${merged})" /solo

Looks like this is correct:

"${theirs}" "${yours}" "${base}" "${merged}"

Based on this forum post:
http://www.scootersoftware.com/vbulletin/showthread.php?t=368#4

To label the sections appropriately, and run BC in a separate (solo) instance, it's this:

"${theirs}" "${yours}" "${base}" "${merged}"
/lefttitle="Incoming (${theirs})"
/centertitle="Base (${base})"
/righttitle="Local (${yours})"
/outputtitle="Merged (${merged})"
/solo

Multiple lines used above for readability, replace linebreaks with spaces for use, i.e.

 "${theirs}" "${yours}" "${base}" "${merged}" /lefttitle="Incoming (${theirs})" /centertitle="Base (${base})" /righttitle="Local (${yours})" /outputtitle="Merged (${merged})" /solo
风吹过旳痕迹 2024-09-12 06:42:46

另请查看 http://beyondcvs.sourceforge.net/ 的 eclipse/Beyond Compare 插件。 (来自:http://www.scootersoftware.com/support.php?zz=kb_vcs )

Also check out http://beyondcvs.sourceforge.net/ for an eclipse/Beyond Compare plugin. (from: http://www.scootersoftware.com/support.php?zz=kb_vcs)

为你拒绝所有暧昧 2024-09-12 06:42:46

AnkhSVN 使用

For 3-way diff:

"$(ProgramFiles)\Beyond Compare 3\BComp.exe" "$(Mine)" "$(Theirs)" "$(Base)" "$(Merged)" /title1="$(MineName)" /title2="$(TheirsName)" /title3="$(BaseName)" /title4="$(MergedName)"

或 for 2-way:

"$(ProgramFiles)\Beyond Compare 3\BComp.exe" "$(Mine)" "$(Theirs)" /mergeoutput="$(Merged)" /title1="$(MineName)" /title2="$(TheirsName)" 

您可以将其调整为 Subclipse 的格式。

AnkhSVN uses

For 3-way diff:

"$(ProgramFiles)\Beyond Compare 3\BComp.exe" "$(Mine)" "$(Theirs)" "$(Base)" "$(Merged)" /title1="$(MineName)" /title2="$(TheirsName)" /title3="$(BaseName)" /title4="$(MergedName)"

Or for 2-way:

"$(ProgramFiles)\Beyond Compare 3\BComp.exe" "$(Mine)" "$(Theirs)" /mergeoutput="$(Merged)" /title1="$(MineName)" /title2="$(TheirsName)" 

You can probably tweak this to Subclipse's format.

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