sha1-name.c: move around the collect_ambiguous() function
[git.git] / t / t4211 / expect.parallel-change-f-to-main
blob052def8074da29eaf75e365e59cd37f3d55a9102
1 commit 0469c60bc4837d52d97b1f081dec5f98dea20fed
2 Merge: ba227c6 6ce3c4f
3 Author: Thomas Rast <trast@inf.ethz.ch>
4 Date:   Fri Apr 12 16:16:24 2013 +0200
6     Merge across the rename
9 commit 6ce3c4ff690136099bb17e1a8766b75764726ea7
10 Author: Thomas Rast <trast@student.ethz.ch>
11 Date:   Thu Feb 28 10:49:50 2013 +0100
13     another simple change
15 diff --git a/b.c b/b.c
16 --- a/b.c
17 +++ b/b.c
18 @@ -4,14 +4,14 @@
19  long f(long x)
20  {
21         int s = 0;
22         while (x) {
23 -               x >>= 1;
24 +               x /= 2;
25                 s++;
26         }
27         return s;
28  }
30  /*
31   * This is only an example!
32   */
35 commit ba227c6632349700fbb957dec2b50f5e2358be3f
36 Author: Thomas Rast <trast@inf.ethz.ch>
37 Date:   Fri Apr 12 16:15:57 2013 +0200
39     change on another line of history while rename happens
41 diff --git a/a.c b/a.c
42 --- a/a.c
43 +++ b/a.c
44 @@ -4,14 +4,14 @@
45  long f(long x)
46  {
47         int s = 0;
48         while (x) {
49                 x >>= 1;
50                 s++;
51         }
52         return s;
53  }
55  /*
56 - * This is only an example!
57 + * This is only a short example!
58   */
61 commit 39b6eb2d5b706d3322184a169f666f25ed3fbd00
62 Author: Thomas Rast <trast@student.ethz.ch>
63 Date:   Thu Feb 28 10:45:41 2013 +0100
65     touch comment
67 diff --git a/a.c b/a.c
68 --- a/a.c
69 +++ b/a.c
70 @@ -3,14 +3,14 @@
71  long f(long x)
72  {
73         int s = 0;
74         while (x) {
75                 x >>= 1;
76                 s++;
77         }
78         return s;
79  }
81  /*
82 - * A comment.
83 + * This is only an example!
84   */
87 commit a6eb82647d5d67f893da442f8f9375fd89a3b1e2
88 Author: Thomas Rast <trast@student.ethz.ch>
89 Date:   Thu Feb 28 10:45:16 2013 +0100
91     touch both functions
93 diff --git a/a.c b/a.c
94 --- a/a.c
95 +++ b/a.c
96 @@ -3,14 +3,14 @@
97 -int f(int x)
98 +long f(long x)
99  {
100         int s = 0;
101         while (x) {
102                 x >>= 1;
103                 s++;
104         }
105         return s;
108  /*
109   * A comment.
110   */
113 commit f04fb20f2c77850996cba739709acc6faecc58f7
114 Author: Thomas Rast <trast@student.ethz.ch>
115 Date:   Thu Feb 28 10:44:55 2013 +0100
117     change f()
119 diff --git a/a.c b/a.c
120 --- a/a.c
121 +++ b/a.c
122 @@ -3,13 +3,14 @@
123  int f(int x)
125         int s = 0;
126         while (x) {
127                 x >>= 1;
128                 s++;
129         }
130 +       return s;
133  /*
134   * A comment.
135   */
138 commit de4c48ae814792c02a49c4c3c0c757ae69c55f6a
139 Author: Thomas Rast <trast@student.ethz.ch>
140 Date:   Thu Feb 28 10:44:48 2013 +0100
142     initial
144 diff --git a/a.c b/a.c
145 --- /dev/null
146 +++ b/a.c
147 @@ -0,0 +3,13 @@
148 +int f(int x)
150 +       int s = 0;
151 +       while (x) {
152 +               x >>= 1;
153 +               s++;
154 +       }
158 + * A comment.
159 + */