我该如何纠正这个颠覆冲突、树问题?

发布于 2024-10-25 17:37:52 字数 263 浏览 0 评论 0原文

我有一些我一直在研究的颠覆源代码。

当我尝试签入时,出现以下错误。

matth@blaze:~/dev/myproj$ svn 提交 svn:提交失败(详细信息如下): svn: Aborting commit: '/home/matth/dev/myproj/client' 仍然存在冲突

事实上,客户端丢失了。没关系,linux下我不需要。 令人惊讶的是,它说与之存在冲突。

尝试进行更新,但什么也没显示。如何消除冲突并更新客户端以进行检查?

I have some subversion source I have been working on.

When I try to checkin I get the following error.

matth@blaze:~/dev/myproj$ svn commit
svn: Commit failed (details follow):
svn: Aborting commit: '/home/matth/dev/myproj/client' remains in conflict

In actual fact, client is missing. That's ok, I don't need it under linux.
Suprised it's saying there is a conflict with it though.

Tried doing an update but it shows nothing. How do I remove the conflict and update client to check it out?

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

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

发布评论

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

评论(1

童话里做英雄 2024-11-01 17:37:52

svn st 可能会显示“C”或“!”对于“client”目录,您要么需要签出“client”目录,要么使用提交的子目录以使其不在“client”目录中查找内容。

哎呀,错过了您在“客户端”中已经存在冲突的事实。

快速解决方案:

rm -rf client
svn revert -R client
svn up client

通常在我遇到这些情况时有效。这假设您想要保留的客户端没有任何更改。

你一开始就没有检查过客户吗?

svn st will probably show either a 'C' or an '!' for the 'client' directory, you either need to check out the 'client' directory, or use a subdirectory for the commit to make it not look in the 'client' directory for content.

oops, missed the fact that you already have a conflict in 'client'.

Quick solution:

rm -rf client
svn revert -R client
svn up client

Generally works when I encounter these situations. This assumes that there are no changes in client that you want to keep.

did you not check out client to begin with?

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