I have a directory structure on svn like the following:
- trunk
- Folder A
- trunk
- Folder A Contents
- tags
- branches
- trunk
- Folder B
- trunk
- Folder B Contents
- tags
- branches
- trunk
- Folder A
I would like to checkout of only the root trunk folder, but ignore all trunk/branches/tags folders in between.
So Basically I want to end up with the following structure on Checkout:
- root
- Folder A
- Folder A Contents
- Folder B
- Folder B Contents
- Folder A
Keep in mind that this is a simplified example, and the directory structure I'm working on is much more complicated, with different levels of 'trunks' everywhere.
Is there an out of the box way to do this in svn/TortoiseSVN? Or should I rely on a script to do this perhaps.