I've got a git repository cloned from an external SVN repository through git svn clone
. On a separate machine, I'd like to get this clone set up again, so I can update the git repository with recent SVN changes. How do I do this?
It seems using git svn clone
or git svn init
creates an empty repository, and git svn fetch
uses a predefined URL. I don't want to have to reset my Git repository - I just want to pull the existing remote, re-link it to the same SVN, and continue with the git svn rebase
to update Git with recent SVN changes.