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 ?
The most straightforward way to get subversion to write out .svn directories in every directory is to downgrade your subversion to a version before the 1.7 series. Subversion 1.6.23 was the last version to have the behavior you want.
Another way to accomplish this that will work with Subversion 1.7 and later is to individually check out each subdirectory of your project. For example, if you had a project with a directory structure like:
You could check it out by doing something like:
This is only tolerable if you have few directories and their organization is shallow.
Otherwise, downgrading to an older subversion is your best bet.
Read more here.