|
From: Tom H. <to...@co...> - 2010-08-02 14:48:42
|
On 02/08/10 14:33, Alexander Potapenko wrote: > has the SVN server version changed? > BTW, I'm still able to do "svn co" from the same machine manually. That message is nothing to do with the server. It means that you checked it out with one client and then tried to update it using another, older, client. Tom -- Tom Hughes (to...@co...) http://compton.nu/ |
|
From: Dave G. <go...@mc...> - 2010-08-02 15:54:38
|
On Aug 2, 2010, at 9:03 AM CDT, Tom Hughes wrote: > On 02/08/10 14:33, Alexander Potapenko wrote: > >> has the SVN server version changed? >> BTW, I'm still able to do "svn co" from the same machine manually. > > That message is nothing to do with the server. > > It means that you checked it out with one client and then tried to > update it using another, older, client. You can also get that message in a more surprising way: 1) Checkout using older SVN client version A. 2) Update using newer SVN client version B. SVN quietly upgrades the local repository format. 3) Attempting to update (or do almost anything else) with client A now yields the error message. There's some way to downgrade a working copy format (google around for it), but it's usually easier to just blow away the whole working copy and check it out with whatever client version you intend to use in the long run. -Dave |