worktree: handle broken symrefs in find_shared_symref()
[git.git] / t / t4211 / expect.simple-f-to-main
bloba475768710b5a6849bf6125adeb5e93b3790466c
1 commit 39b6eb2d5b706d3322184a169f666f25ed3fbd00
2 Author: Thomas Rast <trast@student.ethz.ch>
3 Date:   Thu Feb 28 10:45:41 2013 +0100
5     touch comment
7 diff --git a/a.c b/a.c
8 --- a/a.c
9 +++ b/a.c
10 @@ -3,14 +3,14 @@
11  long f(long x)
12  {
13         int s = 0;
14         while (x) {
15                 x >>= 1;
16                 s++;
17         }
18         return s;
19  }
21  /*
22 - * A comment.
23 + * This is only an example!
24   */
27 commit a6eb82647d5d67f893da442f8f9375fd89a3b1e2
28 Author: Thomas Rast <trast@student.ethz.ch>
29 Date:   Thu Feb 28 10:45:16 2013 +0100
31     touch both functions
33 diff --git a/a.c b/a.c
34 --- a/a.c
35 +++ b/a.c
36 @@ -3,14 +3,14 @@
37 -int f(int x)
38 +long f(long x)
39  {
40         int s = 0;
41         while (x) {
42                 x >>= 1;
43                 s++;
44         }
45         return s;
46  }
48  /*
49   * A comment.
50   */
53 commit f04fb20f2c77850996cba739709acc6faecc58f7
54 Author: Thomas Rast <trast@student.ethz.ch>
55 Date:   Thu Feb 28 10:44:55 2013 +0100
57     change f()
59 diff --git a/a.c b/a.c
60 --- a/a.c
61 +++ b/a.c
62 @@ -3,13 +3,14 @@
63  int f(int x)
64  {
65         int s = 0;
66         while (x) {
67                 x >>= 1;
68                 s++;
69         }
70 +       return s;
71  }
73  /*
74   * A comment.
75   */
78 commit de4c48ae814792c02a49c4c3c0c757ae69c55f6a
79 Author: Thomas Rast <trast@student.ethz.ch>
80 Date:   Thu Feb 28 10:44:48 2013 +0100
82     initial
84 diff --git a/a.c b/a.c
85 --- /dev/null
86 +++ b/a.c
87 @@ -0,0 +3,13 @@
88 +int f(int x)
90 +       int s = 0;
91 +       while (x) {
92 +               x >>= 1;
93 +               s++;
94 +       }
97 +/*
98 + * A comment.
99 + */