We currently have several small semi-related SVN repos that are inactive as far as commits go. However, they occasionally need to be used and/or their commit history needs to be reviewed. We would like to move all of them into a single pre-existing Git repo as most of our work is done on Git these days...
In doing research, what I think I want to achieve is to have a Git subtree branch for each SVN repo which has all of the commit history. But, git-svn seems to only allow me to relate 1 SVN repo to 1 Git repo, so I would have to create a git repo for each project first, and then convert to a subtree in the final repo. (I think)
Is there a way to merge the history from an SVN repo directly onto a branch in my Git repository so that I can effectively skip the step of creating redundant Git repos?