We are currently using Subversion as our source code repository. We are in the planning phase of converting to Git. Our Subversion repository is currently 19Gb. How does a Git repository compare to Subversion on disk space requirements? What will my 19Gb svn repository translate to in a Git repository.

link|improve this question

1  
Only way to know for sure: do the conversion, and see for yourself. – Matt Ball Oct 11 '11 at 14:39
feedback

1 Answer

up vote 10 down vote accepted

It's hard to guess the exact size that your Git repository will take because it depends on several factors, for instance

  • type of stored objects
  • number of branches, tags
  • number of similar/duplicate objects

Git has a good compression algorithm and, from my past experience, it was able to reduce the size of a SVN repository up to 10 times. Here's some examples.

However, the best way is to try it yourself. On your local machine you can convert the SVN repository into Git

$ git-svn clone -s http://path/to/subversion reponame

then run git gc and see how much space you need to start.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.