Subversion:合并移动的文件
我已移动(重命名)本地 SVN 目录中的一个文件:
svn move src_file_path dst_file_path
当我尝试 svn up
时,我得到:
D C src_file_path
> local delete, incoming edit upon update
这意味着其他人编辑了我移动的文件。
如何将其他贡献者所做的更改合并到新位置?
PS - 这是同一个分支,与这个问题不同。
I've moved (renamed) a file in a local SVN directory:
svn move src_file_path dst_file_path
When I've tried to svn up
, I got:
D C src_file_path
> local delete, incoming edit upon update
This means someone else edited the file that I moved.
How do I merge the changes made by the other contributor into the new location?
PS - This is the same branch, unlike this question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你遇到了树冲突。参加演出> “树冲突”选项,然后对树冲突采取“解决”选项。这将启动一个向导,根据冲突为您提供选项。在这种情况下,其中之一将帮助您将更改合并到新位置。
You got a tree conflict. Take the Show > Tree Conflicts option and then take the Resolve option on the tree conflict. This will launch a wizard that gives you options based on the conflict. In this case, one of those will help you merge changes into the new location.
将 WC 中的文件与存储库中的文件合并
Merge file in WC with file in repo