I have a git repo of a project that was started before an official SVN repo had been established. The git repo has a directory structure of something like:
docs/
src/
herp/
derp/
I want to push this into the existing SVN repo (in which others are working), so that the directory structure in SVN would look something like:
branches/
tags/
trunk/
... (other stuff) ...
fizzbot/
docs/
src/
herp/
derp/
(since fizzbot is essentially a separate sub-project)
- I imagine this would be doable using git-svn, but I don't know exactly how.
- If I can do #1, is there a way to do it while preserving the history of all the revisions I made in the git repo?
Thanks in advance.