After migrating from SVN To Git the team is now using Git. We are now pushing new code into the Git servers.
But in parallel I would like to keep the old SVN repository up to date (we have too many scripts and applications that are still using SVN)
How do I synchronized my new Git repository with my old SVN repository ?
If I understand correctly, you can easily do the opposite, meaning updating your new Git repository in case of new commit in your old SVN repository using git svn fletch command, but I would like to go to the other direction.
In another word, how do I commit my changes from the Git repository to the SVN repository ?
Thanks