如何解决 eclipse 中的团队同步器中显示的冲突

发布于 2024-10-06 22:47:29 字数 308 浏览 4 评论 0原文

我试图在 Eclipse 中使用 svn 将分支中的所有更改合并到主干文件夹。

在团队同步窗口中,当我单击冲突文件时,它显示

<<<<<<< .working

并且

>>>>>>> .merge-right.r303

我无法提交。我不明白如何解决它。

我只需要将所有更改合并到主干

请让我知道如何解决这些冲突

提前致谢

Im trying to merge all changes in branch to trunk folder using svn in eclipse.

In team synchronizing window when i clicked on conflict file it is showing

<<<<<<< .working

and

>>>>>>> .merge-right.r303

And im not able to commit. I do not understand how to resolve it.

I just need to merge all changes to trunk

Please let me know, how i can resolve these conflicts

Thanks in advance

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

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

发布评论

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

评论(1

待"谢繁草 2024-10-13 22:47:29

为什么你不能解决这个冲突?因为他们太多了?

对于 Subclipse,有一个最近的错误

  • 如果 Subclipse 能够自动合并更改,则一切正常(我可以批准自动合并并签入)。
  • 如果 Subclipse 无法自动合并两个文件,系统会要求用户启动图形冲突解决编辑器,或者将文件标记为冲突并稍后处理。如果立即启动冲突编辑器,就没有问题。
  • 如果标记了冲突并稍后处理它,那就是编码问题发生的时候

“编辑冲突”编辑器将在左侧显示“工作”文件,在右侧显示“merge-right”文件。左侧的“工作”文件看起来不错,所有特殊字符都完好无损(例如“ü”)。
然而,右侧的“merge-right”文件以 ISO-8859-1 编码(项目默认值)显示,因此所有特殊字符都是“乱码”。例如,“ü”字符显示为“à”。

您是否有任何编码问题导致冲突?

Why can't you resolve this conflict? Because they are too many?

With Subclipse, there is a recent bug:

  • If Subclipse is able to merge the changes automatically, everything works fine (I can approve the auto-merge and check in).
  • If Subclipse cannot auto-merge two files, the user is asked to either launch a graphical conflict resolution editor, or to mark the files as conflicted and deal with it later. If one launches the conflict editor immediately, there's no problem.
  • If one has the conflicts marked and deals with it later, that's when the encoding problem occurs.

The "Edit Conflicts" editor will display the "working" file to the left, and the "merge-right" file on the right. The "working" file on the left looks OK, with all special characters intact (for example "ü").
The "merge-right" file on the right however is displayed with ISO-8859-1 encoding (project default), so all special characters are "garbled". The "ü" character is displayed as "Ã" for example.

Have you any encoding issue causing conflicts?

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