Implement line-history search (git log -L)
[alt-git.git] / t / t4211 / expect.move-support-f
blob78a8cf1afddb4595718bbc67b94e647fdb78dfc3
1 commit 6ce3c4ff690136099bb17e1a8766b75764726ea7
2 Author: Thomas Rast <trast@student.ethz.ch>
3 Date:   Thu Feb 28 10:49:50 2013 +0100
5     another simple change
7 diff --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  }
22 commit e6da343666244ea9e67cbe3f3bd26da860f9fe0e
23 Author: Thomas Rast <trast@student.ethz.ch>
24 Date:   Thu Feb 28 10:49:28 2013 +0100
26     move file
28 diff --git a/b.c b/b.c
29 --- /dev/null
30 +++ b/b.c
31 @@ -0,0 +4,9 @@
32 +long f(long x)
34 +       int s = 0;
35 +       while (x) {
36 +               x >>= 1;
37 +               s++;
38 +       }
39 +       return s;