78a8cf1afddb4595718bbc67b94e647fdb78dfc3
   1commit 6ce3c4ff690136099bb17e1a8766b75764726ea7
   2Author: Thomas Rast <trast@student.ethz.ch>
   3Date:   Thu Feb 28 10:49:50 2013 +0100
   4
   5    another simple change
   6
   7diff --git a/b.c b/b.c
   8--- a/b.c
   9+++ b/b.c
  10@@ -4,9 +4,9 @@
  11 long f(long x)
  12 {
  13        int s = 0;
  14        while (x) {
  15-               x >>= 1;
  16+               x /= 2;
  17                s++;
  18        }
  19        return s;
  20 }
  21
  22commit e6da343666244ea9e67cbe3f3bd26da860f9fe0e
  23Author: Thomas Rast <trast@student.ethz.ch>
  24Date:   Thu Feb 28 10:49:28 2013 +0100
  25
  26    move file
  27
  28diff --git a/b.c b/b.c
  29--- /dev/null
  30+++ b/b.c
  31@@ -0,0 +4,9 @@
  32+long f(long x)
  33+{
  34+       int s = 0;
  35+       while (x) {
  36+               x >>= 1;
  37+               s++;
  38+       }
  39+       return s;
  40+}