Reputation: 10139
I have a svn working copy checked out. The root directory has a .svn subdirectory. However, the other subdirectories of the project don't have a .svn hidden directory in them. They do contain versioned files. I thought every subdirectory has to include its .svn. What's going on?
Upvotes: 2
Views: 169
Reputation: 150178
This is the feature of Subversion 1.7. From the Subversion 1.7 Release Notes:
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.
Upvotes: 3