Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been attempting move a directory structure from one location to another in Subversion and I've run up against a brick wall which is the Item '*' is out of date commit error.

I have the latest version checked out (so far as I can tell), svn st -u turns up no differences other than the mv commands, I have no idea where else to look.

Thanks in advance!

share|improve this question
5  
did you try svn up? – Sklivvz Sep 17 '08 at 21:41

18 Answers

up vote 29 down vote accepted

I believe this problem is coming from the .svn file. It's either incorrect in the old parent, the new parent or the old one. I would try reverting back to your starting point. Use an export to get a clean copy of the folder. Move the clean copy to the new location, and use an add and delete to do the move. That's manually doing what SVN does, but it might work.

share|improve this answer
2  
Subversion actually does copy then delete, which is rather different to deleting there and adding here. – SnakE Aug 18 '11 at 18:37

I sometimes get this with TortoiseSVN on windows. The solution for me is to svn update the directory, even though there are no revisions to download or update. It does something to the metadata, which magically fixes it.

share|improve this answer
3  
This did the trick for me, thanks! – lima Apr 6 '09 at 22:40
1  
I changed the svn:ignore property of a folder, and started getting the out of date error. But as you said, just updating it worked. – Sushant Oct 21 '09 at 6:49
2  
When I try to update that directory, I get "svn: Two top-level reports with no target" One more reason to hate SVN. With git, I never had this type of stupid problem with basic operations like moving a directory. – Dan Dascalescu Jun 5 '10 at 0:21
I had an 'out of date' error on my parent folder using the Versions GUI. I updated the parent folder and then committed without errors. – milesmeow Dec 15 '10 at 20:18
1  
@Michael, thank you. – vondip Jan 14 '11 at 14:32
show 7 more comments

After trying all the obvious things, and some of the other suggestions here, with no luck whatsoever, a Google search led to this link - Subversion says: Your file or directory is probably out-of-date

In a nutshell, the trick is to go to the .svn directory (in the directory that contains the offending file), and delete the "all-wcprops" file.

Worked for me when nothing else did.

share|improve this answer
this is what resolved it for me! cheers – BastanteCaro Jul 14 '11 at 11:03
+1 . Perfect. Worked for me. – OceanBlue Oct 3 '11 at 15:54
Really helpful thanks – P6345uk Oct 31 '12 at 12:28

Tried to update the local copy, and revert the item in question, and still got the 'out of date' error. This worked for some reason:

svn update --force /path/to/dir/or/file
share|improve this answer

I've found that this works for me:

svn update
svn resolved <dir>
svn commit
share|improve this answer
Super, this is good, worked perfectly for me. – Siddharth Mar 22 at 5:10
Perfect! This worked great for me! – Eduardo May 15 at 13:02

Are you sure you've checked out the head and not a lower revision? Also, have you done an update to make sure you've got the latest version?

There's a discussion about this on http://svn.haxx.se/users/archive-2007-01/0170.shtml.

share|improve this answer
Let's say you want to checkin an old copy? What then is the easiest way to make the checkin work? – OJW Jun 30 '11 at 10:00
If you're talking about reverting to an old copy, just check it in as usual. It will get a new revision number. – jgreep Jul 14 '11 at 18:15

Like @Alexander-Klyubin suggests, do the move in the repository. It's also going to be much faster, especially if you have a large amount of data to move, because you won't have to transfer all that data over the network again.

svn mv https://username@server/svn/old/ https://username@server/svn/new/

should work just fine

share|improve this answer

I moved the dir to my local machine for safe-keeping, then svn deleted the stupid directory, then committed. When I tried to add the folder from my local machine it STILL threw the error (SVN move did the same thing when I tried to rename the folder). So I reverted, then I did a mkdir DIRNAME, added, and committed. Then I added the contents in and committed, and it worked.

share|improve this answer
I would avoid with changing the repository contents (svn delete), just because my local checkout is somehow corrupted. – Lars Noschinski Dec 8 '12 at 10:26

Thank you. That just resolved it for me. svn update --force /path to filename/

If your recent file in the local directory is the same, there are no prompts. If the file is different, it prompts for tf, mf etc... chosing mf (mine full) insures nothing is overwritten and I could commit when done.

Jay CompuMatter

share|improve this answer

I manage to solve it by hitting a update button

share|improve this answer

Remove your file or your path using before execute the command do a bk of your changes

sudo rm -r /path/to/dir/

after :

svn up and commit or delete 
share|improve this answer

Perform the move directly in the repository.

share|improve this answer

Are you moving it using svn mv, or just mv? I think using just mv may cause this issue.

share|improve this answer

I randomly recieved this error after deleting a few directories each containing some files. I deleted the directories through Netbeans and realised that it didn't actually delete them. It seemed to just delete everything inside the directories and removed the reference to the directory within Netbeans. They did still exist on the filesystem though. Make sure they're deleted from the filesystem and try the commit again.

share|improve this answer

If once solved a similar issue by simply checking out a new working copy and replacing the .svn directory throwing the commit errors with this newly checked out one. The reason in my case was that after a repository corruption and restore from a backup the working copy was pointing towards a revision that didn't exist in the restored repository. Also got "item out of date" errors. Updating the working copy before commit didn't solve this but replacing the .svn as described above did.

share|improve this answer

This happened when I updated a branch of an earlier release with files from the trunk. I used Windows Explorer to copy folders from my trunk checkout folder, and pasted them into my Eclipse view of the release branch checkout folder. Now Windows Explorer was configured not to show "hidden" files starting with ".", so I was oblivious to all the incorrect .svn files being pasted into my release branch checkout folder. Doh!

My solution was to blow away the damaged Eclipse project, check it out again, and then copy the new files in more carefully. I also changed Windows to show "hidden" files.

share|improve this answer

i got this error when trying to commit some files, only it was a file/folder that didn't exist in my working copy. I REALLY didn't want to go through the hassle of moving the files and rechecking out, in the end, i ended up editing the .svn/entries file and removed the offending directory reference.

share|improve this answer

There is at least one other cause of the message "out of date" error. In my case the problem was .svn/dir-props which was created by running "svn propset svn:ignore -F .gitignore ." for the first time. Deleting .svn/dir-props seems like a bad idea and can cause other errors, so it may be best to use "svn propdel" to clean up the errant "svn propset".

# Normal state, works fine.
> svn commit -m"bump"  
Sending        eac_cpf.xsl
Transmitting file data .
Committed revision 509.

# Set a property, but forget to commit.
> svn propset svn:ignore -F .gitignore .
property 'svn:ignore' set on '.'

# Edit a file. Should have committed before the edit.
> svn commit -m"bump"                   
Sending        .
svn: Commit failed (details follow):
svn: File or directory '.' is out of date; try updating
svn: resource out of date; try updating

# Delete the property.
> svn propdel svn:ignore .              
property 'svn:ignore' deleted from '.'.

# Now the commit works fine.
> svn commit -m"bump"     
Sending        eac_cpf.xsl
Transmitting file data .
Committed revision 510.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.