I have a large Java app that is split up into multiple projects. Each project has its own folder in a Subversion repository like so:
AccountingCore
- trunk
- branches
- tags
Common
- trunk
- branches
- tags
WebCommon
- trunk
- branches
- tags
etc...
I want to start using git-svn locally instead of subversion.
This may be a stupid question, but is there a way to checkout all the projects in the repository at once (including branches and all) instead checking out each project individually?
Thanks, Tony