Is there a way to make an svn-checkout from a git repository?
The problem is that I'd like to have a git repository stored on a server and I can work within using git normally, pushing and pulling changes.
However, there are developers, who don't need to make changes in the code, but they need to be able to fetch the latest snapshot of the source code and build it on their machine. Those so called "developers" would really like to use SVN as it an SCM they're already familiar with.
So, is there a way to setup such scenario? Or is this the only possible way -- to use an SVN repository and work with it using git-svn if I want git for myself and SVN for the rest of my colleagues?
Thanks!