Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error updating changes svn

I have PHPStorm installed and i open a directory containing a PHP project with SVN. Under the SVN tab in the Changes i encounter the following error:

Error updating changes: svn: E155021: The client is too old to work with the working copy at "..." (format 31). 

Some ideas? I have TortoiseSVN 1.7.7 installed, when i open the project the first time everything worked great, but on further opening the above error appear.

like image 565
croppio.com Avatar asked Jul 05 '13 07:07

croppio.com


1 Answers

Working copy format has changed in Subversion 1.8, so after upgrading to TortoiseSVN 1.8 you should upgrade your working copies or checkout the new ones. After you've upgraded a working copy to the newer format, older Subversion clients will be unable to work with the upgraded working copy.

So, you've upgraded your working copy to the new format (SVN 1.8). It seems that another SVN client on your system is SVN 1.8 (e.g. TortoiseSVN 1.8.0?), but PHPStorm is still 1.7.x. SVN 1.7 can't work with 1.8 working copy and vice-verse.

See "Subversion 1.8 Release Notes | Upgrading the Working Copy".

like image 160
bahrep Avatar answered Oct 02 '22 01:10

bahrep