Subversion "This client is too old to work with working copy" Help? [duplicate]
Possible Duplicate:
How can I downgrade the version of an SVN working copy?
http://subversion.tigris.org/faq.html#working-copy-format-change
Having the issue where I try to update开发者_如何转开发 in svn and it gives me "This client is too old to work with working copy"
They've provided a .py script that is supposed to skip the unknown format. How do I use this python script so that I can go back to using svn as normal from windows command line?
I think you should upgrade your SVN command line tool to latest version. Try to install one from http://subversion.tigris.org/getting.html#binary-packages
It's not necessarily an unknown format, it's just one that your client doesn't support. This can happen when you have multiple clients using the same file system.
You could just delete the working copy you have and check out a fresh one, or you could update your Subversion to the most recent version, which is probably best.
If you want to use the script, I think it would be something like
C:> change-svn-wc-format.py D:\my_repos 1.5
where you can use 1.4, 1.5, or 1.6 as the repository version you want to use.
--skip-unknown-format means that if the script finds a version it doesn't understand in some directory, it skips that directory and continues with the upgrade.
What you should try to resolve after fixing this is how different Subversion clients are using the same working copy.
精彩评论