我正在使用带有Subversive SVN插件的Eclipse Europa。
当尝试提交已删除的目录时,SVN会返回以下消息:
Some of selected resources were not committed.
Item is out of date
svn: Commit failed (details follow):
svn: Item '/myProject/trunk/src/test/config' is out of date
该文件夹的内容已被删除并已提交。
我可以做些什么来承诺呢?
答案 0 :(得分:24)
首先尝试更新,然后删除并提交。
答案 1 :(得分:9)
也有这个问题。为我解决的是以下
不得不分两个阶段做这件事!
答案 2 :(得分:4)
只需使用 Svn repository探索删除该文件夹,然后更新项目。
答案 3 :(得分:2)
右键单击Update to Head,然后为我提交作品
答案 4 :(得分:2)
我可以看到这张票很旧,但以下步骤可能会帮助那些面临问题的人。
1. Update the parent folder.
2. Delete the folder you want to delete from the working repository.
3. Commit the parent folder.
我在eclipse中使用Subclipse插件,它具有非常用户友好的GUI来支持Subversion。如有兴趣可以试试 - https://marketplace.eclipse.org/content/subclipse
由于
答案 5 :(得分:1)
我也碰到了这个,但我已经删除了该文件夹。更新和提交都不会起作用,所以我不得不手动重新创建包含文件的文件夹,然后按照Kurru建议的步骤进行操作。