For example, the SVN 1.5 client has one layout for Working Copies, and the SVN 1.6 client has a different layout. I understand that the layout automatically gets upgraded when it gets touched by a newer client.

My question is simply: if I have a Working Copy on my system, how can I find out the version of the layout it's using?

link|improve this question

feedback

1 Answer

up vote 25 down vote accepted

If .svn/format exists, then read the number in it:

  • Version 7 is SVN 1.3
  • Version 8 is SVN 1.4
  • Version 9 is SVN 1.5
  • Version 12 is SVN 1.7

If .svn/format doesn't exist then the version number is on the first line in .svn/entries:

  • Version 10 is SVN 1.6

Subversion 1.6 was the first one not to use .svn/format. Version 7 and older used XML-based .svn/entries file, newer versions use less verbose line-based file format.

link|improve this answer
1  
how wonderfully intuitive! :) thanks. – William Leara Sep 1 '09 at 21:05
glad to help :) – Filip Navara Sep 1 '09 at 21:07
And how to detec version 1.7.x? – tobsen Nov 21 '11 at 10:12
1  
For version 1.7 there's .svn/format file in the root of the repository that contains the version number 12. – Filip Navara Nov 22 '11 at 11:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.