I have an website on development using git as control version system, and the client insist in us to use svn to deploy the website (they don't believe that git is a stable tool to install on their server) so I'm looking for a way to continue developing using git, which my dev team already know better than svn, and just move the release code on to a svn repository, so the client can deploy on their production server.
Since this website will continually be update by my team, I don't belive in copying code, by hand, to an svn repo and than make an package on it.
I'm looking for a way to develop on git, and run a specific command that will send an git tag (which represents an version of the site) to an different svn repository, is this possible?
thanks.