I recently upgraded my SVN client from 1.6.9 to 1.7.2 and after converting to the new format, I noticed that there is no longer a .svn every sub-folders. For my particular configuration this is not very convenient.

Is there a way to undo this or revert to the old behavior where each subfolder from a CO would have a .svn ?

link|improve this question

I realize my question is obscure but I tried to search google/bing for this before asking but didnt find anything relevant. any help or pointers would be appreciated. – MikeJ Jan 30 at 20:19
7  
What part of SVN are you abusing to make having .svn folders everywhere convenient? – Collin Jan 30 at 20:20
1  
You could always downgrade your svn client (I think you'll have to remove it and install the older version then possibly retrieve your repository again (because it presumably isn't backwards compatible). – tjarratt Jan 30 at 20:22
We have a deep tree keeping a third party lib and several variants Alive. We used a subst drive to point at a deep level in the tree to make life convenient. With a local .svn were a snap. Now we have to change to the checkout drive path to check in. – MikeJ Feb 4 at 18:29
feedback

1 Answer

up vote 6 down vote accepted

Subversion 1.7 features a complete re-write of the working copy metadata management system of Subversion, code named WC-NG. The old system was one of the first parts of Subversion written, and over time had grown difficult to maintain and extend. WC-NG is intended to provide an immediate performance improvement, while also enabling many future feature enhancements.

A key feature of the changes introduced in Subversion 1.7 is the centralization of working copy metadata storage into a single location. Instead of a .svn directory in every directory in the working copy, Subversion 1.7 working copies have just one .svn directory—in the root of the working copy. This directory includes (among other things) an SQLite-backed database which contains all of the metadata Subversion needs for that working copy.

Even though the data is stored in a structured format, the relationships between the data are complex. We highly discourage external tools from modifying the data held in this database, as such modification is likely to result in working copy corruption.

Read more here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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