0

Subversion has very strange behavior when moving/deleting folder. I had this error Subversion unreliable: "please update the out of date items"

and now this one. How to solve this ?

Community
  • 1
  • 1
user310291
  • 36,946
  • 82
  • 271
  • 487

2 Answers2

1

Have you ever used the svn switch command? It sounds like you have multiple revisions or multiple branches in the same tree and are trying to commit them all simultaneously. What is the result of using svn status in the root of your current repository?

Thomson Comer
  • 3,919
  • 3
  • 30
  • 32
  • I don't have multiple revisions, I had this error only after renaming and moving folder. So the error message doesn't correspond to reality. – user310291 Jan 07 '11 at 20:34
1

Did you used the operating systems move or delete functions? If so, that could also produce the errors you see above. When moving files or deleting files in Subversion working copies, you should always use the svn commands (svn move, svn delete) rather than the operating system's.

When moving directories inside working copies or from one working copy to another, you could have copied the .svn directory, which will cause the "several Subversion working copies" message.

jgifford25
  • 2,164
  • 1
  • 14
  • 17
  • I'm doing it Visual Studio. Sometimes seems to work sometimes not. Seems heavy for me to use svn move and svn delete but will try. – user310291 Jan 07 '11 at 20:35
  • Take a look at the VisualSVN or Ankhsvn plugins for Visual Studio. Should take some of the heavy of out of the process to use Subversion. – jgifford25 Jan 10 '11 at 16:52