One way continuous svn mirror to git

Are there directions for an one-way continuous svn mirror to git?

Hello,

there is no way to set a mirror one-way, SubGit’s mirror is essentially two-way synchronisation. However, it’s possible to separate mirrored and Git-only branches in Git repository making the mirror effectively one-way. It can be done, for example, with different namespaces for those branches: if Git-only branches reside in standard refs/heads and mirrored are in ‘refs/heads/mirrored’, then pushes to the regular Git branches will not be sent to SVN and, on the other hand, changes from SVN will be imported to the mirrored branches. However, this setup will require manual merge from Git-only branches to SVN and back if some changes from SVN are needed.