Is there an equivalent to "svnrdump dump --incremental" in GIT?
I am trying to incrementally backup several svn and git repos from a remote server to a local server but it seems that there is no direct way to "dump" a remote GIT repo.
Basically I perform either "git fetch --all" with already existing or "git clone --mirror" for all new repos followed by "git bundle create --all".
Is there any other/better solution than that?