Okay so here is my issue. My work uses SVN. I want to use Git locally. Seems pretty straightforward with git svn BUT my work threw a little wrench in because they literally use 5 different SVN repo's that go into one complete checkout.
So when I do svn up It literally pulls from 5 different repos. This means that I cannot simply do a git svn clone because each of these 5 repos are needed to create the total application. Now, if I had ANY power to change this I would...but in the mean time would i be able to go into the checked out application and just do a "git init" / "git add ." etc and just trick git into thinking its one giant repo? Then use svn commands to commit when the time comes to commit?
Thanks for your help!