Problems committing deleted directory to SVN repository
Asked Answered
P

6

12

I'm using Eclipse Europa with Subversive SVN plugin.

When try to commit deleted directory SVN returns this message:

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

Content of the folder has been already deleted and committed.

What can I do to commit it?

Primrose answered 4/2, 2009 at 12:48 Comment(0)
D
24

Try updating first, then delete and commit.

Disabled answered 4/2, 2009 at 12:51 Comment(1)
For some reason, svn will bitch about this even if you are on HEAD.Musselman
M
10

Had this issue too. What solved it for me was the following

  • Update
  • Delete contents of folder
  • Commit
  • Update
  • Delete folder
  • Commit

Frustrating to have to do this in 2 stages!

Marlie answered 9/4, 2012 at 3:36 Comment(0)
L
4

Just delete the folder using Svn repository exploring, then update the project.

Lunarian answered 8/2, 2014 at 3:16 Comment(0)
R
2

Just right click on the Update to Head and then commit its works for me

Ramunni answered 19/1, 2015 at 20:40 Comment(0)
O
2

I could see that this ticket is old but the below steps might help someone who is facing the issue.

1. Update the parent folder.
2. Delete the folder you want to delete from the working repository.
3. Commit the parent folder.

I use Subclipse plugin in eclipse which has very user-friendly GUI to support Subversion. May be try if interested - https://marketplace.eclipse.org/content/subclipse

Thanks

Organism answered 1/9, 2016 at 7:53 Comment(0)
O
1

I ran into this too, but I had already deleted the folder. Neither update nor commit would work, so I had to manually recreate the folder with the files in it, then follow the steps Kurru suggested.

Oneiric answered 9/11, 2013 at 9:13 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.