Consider a project using git source code management system. Now imagine a need arises to automatically mirror git commits to a (read-only) subversion repository. How can one achieve such an automated push?
One technique is to use git-svn extension and prepare git grafts to link the two repositories together. Here …