I would like to separate release branches from feature branches by puting them in a release folder. I know best practices with svn is to have your root folder structure like this:
\trunk
\branches
\feature-a
\feature-b
\...
\tags
\1.0
\...
My understanding of svn is that the trunk/branches/tags folders carry no special meaning to svn. Would I run into any issues by adding a release folder to the root of the project and putting all my release branches in that folder?
\trunk
\branches
\feature-a
\feature-b
\...
\releases
\release-a
\...
\tags
\1.0
\...
Creating a new release branch would look like this:
svn copy http://project/trunk http://project/releases/release-b