How to add svn tracking to existing git project
September 15, 2008 – 19:18Image via Wikipedia Tracking svn repository with a git is a pleasure, thanks to git-svn:
git svn clone (svn url)
and go.
But until today it wasn’t clear to me how to add an svn for already existing git project. For example, if a client requested to push the progress to his svn repo to be able to contribute himself.
It appears that it’s dead easy too:
git svn init (svn url)
works lovely in already existing git repository without bothering any of your git objects.
Repeat with me: git is good
PS Have an excellent and detailed introduction for git-svn integration.