I have a repository configured like this:
+---CollectionA
| \---project1
| \---trunk
| \---sourcecode
| \---tags
| \---rel-1
| \---project2
| \---trunk
| \---sourcecode
| \---tags
| \---project3
| \---trunk
| \---sourcecode
| \---tags
| \---rel-1
I'd like to checkout any project tagged rel-1
as that project. In this case I'd get project1
and project3
in my workspace, but not project2
.
All projectN
are Eclipse Java projects.
I'm using Eclipse/Subversive, but I'm open to using Tortoise or the command line (windows) if I need to.
Edit: Currently, to do this, I'll have to go through my 30-some projects and checkout each tag individually. Is there a way to do this without going through each project individually?