Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problems committing deleted directory to SVN repository

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?

like image 255
Boris Pavlović Avatar asked Feb 04 '09 12:02

Boris Pavlović


People also ask

How do I delete a directory in svn?

To remove a file from a Subversion repository, change to the directory with its working copy and run the following command: svn delete file… Similarly, to remove a directory and all files that are in it, type: svn delete directory…

How do I commit a directory in svn?

Right-click in an empty area of the folder and select Refresh. You'll see “+” icons on the folders/files, now. Right-click an empty area in the folder once again and select SVN Commit. Add a message regarding what you are committing and click OK.

How do I commit changes to svn repository?

The commit process is initiated via the SVN > Commit menu option. This command commits the changes in your local working copy to the repository. Right-click (Mac OS: Ctrl + click) the model item (the item of the uppermost level) in the Projects tree and choose SVN > Commit... from the popup menu.


1 Answers

Try updating first, then delete and commit.

like image 149
David Grant Avatar answered Sep 24 '22 08:09

David Grant