I have a code base that needs to be tracked by both git and svn due to two teams working on the code with different practices.
The problem I am having is that git is storing all the .svn directories in its repo. I could use a very large .gitignore file and specify every single instance of every .svn directory for every folder but that seems cumbersome.
Is there anything I can do, or am I forced to stop using Git and use SVN & SVN combo with a switch command for different repos?
Is the tool git-svn applicable? Doesnt seem to be from what I can understand.
Thanks.