Reputation: 4220
I have Subclipse plugin installed.
When I have following setting: Team -> SVN -> SVN interface Client =
SVNKit (Pure Java) SVNKit v1.7.9.9659 I get error for committing (formatting is preserved):
add -N path_to_my_project
svn: E155021: The path 'path_to_my_project' appears to be part of a Subversion 1.7 or greater
working copy. Please upgrade your Subversion client to use this
working copy.
When I have Team -> SVN -> SVN interface Client =
JavaHL (JNI) 1.7.10 (r1485443) I get similar error for committing:
add -N path_to_my_project
The working copy needs to be upgraded
svn: Working copy 'path_to_my_project' is too old (format 10, created by Subversion 1.6)
How to solve this (how to upgrade my client or upgrade working copy)?
P.S. Each time after changing SVN interface Client I restart Eclipse.
Help -> Check for Updates
returns No updates were found
.
Installed Eclipse Features:
Installed software:
Solved:
It was my fault, I copied folder from one project (that had hidden .svn folder inside) to my current project. So, there is why my project behaved as it was part of Subversion 1.6 and 1.7 at the same time.
Upvotes: 1
Views: 4480
Reputation: 30662
Use svn upgrade
or corresponding command in SVNKit.
You can also checkout a fresh working copy.
Upvotes: 2