I have a huge svn repository with about 2.5gb files. It has many branches and tags. It has 72000 revisions. I want to make a local git clone Doing this through regular git clone takes about 24 days.
Will this work:
I will use multiple machines to clone part of the repository parallelly. The first machine will clone revisions 1 to 12000, the next will do it from 12000 to 24000 and so on...
Then I have to merge all these local gits in to one.
How can I do this. Is there any other way to do this?
EDIT: My main requirement is to be able to query change history locally. So, I want to have a local copy of entire history. In fact, that is the main reason I want to move to git. Also, I dont have a admin access to the svn repo