There's an SVN open-source project which I have read-only access to, and I'd like to create a GIT mirror of that project up to date on GitHub.
I know how to set up the initial mirror and then keep it up to date with git svn rebase
, but that still requires having a server set up somewhere with a cron job running to handle the syncing, setting up monitoring to make sure the server is up and the cron job is running, periodically upgrading to the latest git release, etc.
Before I reinvent the same wheel that every other SVN->GIT mirror has had to, I was wondering if there are any services (free or paid) which will automate SVN->GIT mirroring for me. Know of any?
Obviously an automated service can't merge my changes-- all my changes are happening in a separate repo (or perhaps a separate branch in the same repo). I'm just looking for a way to automate the SVN interaction and create an exact mirror that others can clone.