Can anyone please provide proper urls pdf or detailed steps to migrate SVN/CVS repos to GIT_repo ?
Asked
Active
Viewed 257 times
-2
-
4Please see this: http://stackoverflow.com/questions/79165/how-to-migrate-svn-with-history-to-a-new-git-repository – ruben2020 Jun 21 '13 at 06:30
2 Answers
1
Basically, you can just get each repository and make a new git repository from it by doing:
git svn clone <respository url>
Then you can push it out to your central git repository.
Rinse and repeat.

Rob
- 11,446
- 7
- 39
- 57
1
The Git website has a nice looking page on migrating from a Subversion repo to a git one here:
http://git-scm.com/book/en/Git-and-Other-Systems-Migrating-to-Git

Leigh
- 12,038
- 4
- 28
- 36