This is a bit of shooting fish in a barrel but I really wanted to see if for myself. After using SVN for many years, I knew Git was fast. Funny enough, I didn’t know SVN was slow until I saw Git was fast. Hah.

Anyway, I wrote a script that does this:

  • Creates a repo
  • Unzips Linux 3.6.1 source
  • Add all files / commit all files
  • Branch / Modify / Commit / Merge (3 times)
  • Cleans up branches, cleans up temp directories

The Linux kernel source is 79MB, ~42,000 files. So this is a bit excessive. You probably won’t be working with a project this large. However, it’s a good way to show speed and performance.

The other interesting thing that I found while doing this test is how much longer my SVN script turned out to be. Both scripts do the same thing but the Git script was much shorter. So in a way, Git seems to be faster and easier (or at least less typing) at the same time.

A note about the benchmarks. The Raid 5 test was done on a web server with a Raid controller that has very little cache. No question that these spinning disks are a bit slow under load. However, the tests were done on the same box so it’s still a fair comparison. The SSD row is a virtual ubuntu machine on an SSD; a different machine all together.

Benchmark Times mm:ss

</p> </p>
Disk type SVN Git
Raid5 14:56 01:08
SSD 17:12 02:09

Git has a bit of an advantage by doing 3 branches because it does its garbage collection only once on the first merge. So I apologize for the bias. I can say for sure that the one branch test was something like this: SVN 20min, Git 2min.

Here are the links to the scripts I wrote if you want to try them yourself. svn_stress.sh git_stress.sh

Run the scripts with the time command:

$ time ./svn_stress.sh /tmp/stress_test
233.78s user 81.81s system 35% cpu 14:56.48 total