]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4211/history.export
Merge branch 'pb/blame-funcname-range-userdiff'
[thirdparty/git.git] / t / t4211 / history.export
CommitLineData
12da1d1f
TR
1blob
2mark :1
3data 157
4#include <stdio.h>
5
6int f(int x)
7{
8 int s = 0;
9 while (x) {
10 x >>= 1;
11 s++;
12 }
13}
14
15/*
16 * A comment.
17 */
18
19int main ()
20{
21 printf("%d\n", f(15));
22 return 0;
23}
24
25reset refs/tags/simple
26commit refs/tags/simple
27mark :2
28author Thomas Rast <trast@student.ethz.ch> 1362044688 +0100
29committer Thomas Rast <trast@student.ethz.ch> 1362044688 +0100
30data 8
31initial
32M 100644 :1 a.c
33
34blob
35mark :3
36data 168
37#include <stdio.h>
38
39int f(int x)
40{
41 int s = 0;
42 while (x) {
43 x >>= 1;
44 s++;
45 }
46 return s;
47}
48
49/*
50 * A comment.
51 */
52
53int main ()
54{
55 printf("%d\n", f(15));
56 return 0;
57}
58
59commit refs/tags/simple
60mark :4
61author Thomas Rast <trast@student.ethz.ch> 1362044695 +0100
62committer Thomas Rast <trast@student.ethz.ch> 1362044695 +0100
63data 11
64change f()
65from :2
66M 100644 :3 a.c
67
68blob
69mark :5
70data 171
71#include <stdio.h>
72
73long f(long x)
74{
75 int s = 0;
76 while (x) {
77 x >>= 1;
78 s++;
79 }
80 return s;
81}
82
83/*
84 * A comment.
85 */
86
87int main ()
88{
89 printf("%ld\n", f(15));
90 return 0;
91}
92
93commit refs/tags/simple
94mark :6
95author Thomas Rast <trast@student.ethz.ch> 1362044716 +0100
96committer Thomas Rast <trast@student.ethz.ch> 1362044716 +0100
97data 21
98touch both functions
99from :4
100M 100644 :5 a.c
101
102blob
103mark :7
104data 185
105#include <stdio.h>
106
107long f(long x)
108{
109 int s = 0;
110 while (x) {
111 x >>= 1;
112 s++;
113 }
114 return s;
115}
116
117/*
118 * This is only an example!
119 */
120
121int main ()
122{
123 printf("%ld\n", f(15));
124 return 0;
125}
126
127commit refs/tags/simple
128mark :8
129author Thomas Rast <trast@student.ethz.ch> 1362044741 +0100
130committer Thomas Rast <trast@student.ethz.ch> 1362044741 +0100
131data 14
132touch comment
133from :6
134M 100644 :7 a.c
135
136blob
137mark :9
138data 205
139#include <unistd.h>
140#include <stdio.h>
141
142long f(long x)
143{
144 int s = 0;
145 while (x) {
146 x >>= 1;
147 s++;
148 }
149 return s;
150}
151
152/*
153 * This is only an example!
154 */
155
156int main ()
157{
158 printf("%ld\n", f(15));
159 return 0;
160}
161
162commit refs/tags/simple
163mark :10
164author Thomas Rast <trast@student.ethz.ch> 1362044860 +0100
165committer Thomas Rast <trast@student.ethz.ch> 1362044860 +0100
166data 25
167change at very beginning
168from :8
169M 100644 :9 a.c
170
171blob
172mark :11
173data 204
174#include <unistd.h>
175#include <stdio.h>
176
177long f(long x)
178{
179 int s = 0;
180 while (x) {
181 x >>= 1;
182 s++;
183 }
184 return s;
185}
186
187/*
188 * This is only an example!
189 */
190
191int main ()
192{
193 printf("%ld\n", f(15));
194 return 0;
195}
196commit refs/tags/simple
197mark :12
198author Thomas Rast <trast@student.ethz.ch> 1362044890 +0100
199committer Thomas Rast <trast@student.ethz.ch> 1362044890 +0100
200data 36
201change to an incomplete line at end
202from :10
203M 100644 :11 a.c
204
205blob
206mark :13
207data 238
208#include <unistd.h>
209#include <stdio.h>
210
211long f(long x)
212{
213 int s = 0;
214 while (x) {
215 x >>= 1;
216 s++;
217 }
218 return s;
219}
220
221/*
222 * This is only an example!
223 */
224
225int main ()
226{
227 printf("%ld\n", f(15));
228 return 0;
229}
230
231/* incomplete lines are bad! */
232
233commit refs/tags/simple
234mark :14
235author Thomas Rast <trast@student.ethz.ch> 1362044923 +0100
236committer Thomas Rast <trast@student.ethz.ch> 1362044923 +0100
237data 29
238change back to complete line
239from :12
240M 100644 :13 a.c
241
242commit refs/tags/move-support
243mark :15
244author Thomas Rast <trast@student.ethz.ch> 1362044968 +0100
245committer Thomas Rast <trast@student.ethz.ch> 1362044968 +0100
246data 10
247move file
248from :14
249D a.c
250M 100644 :13 b.c
251
252blob
253mark :16
254data 237
255#include <unistd.h>
256#include <stdio.h>
257
258long f(long x)
259{
260 int s = 0;
261 while (x) {
262 x /= 2;
263 s++;
264 }
265 return s;
266}
267
268/*
269 * This is only an example!
270 */
271
272int main ()
273{
274 printf("%ld\n", f(15));
275 return 0;
276}
277
278/* incomplete lines are bad! */
279
280commit refs/tags/move-support
281mark :17
282author Thomas Rast <trast@student.ethz.ch> 1362044990 +0100
283committer Thomas Rast <trast@student.ethz.ch> 1362044990 +0100
284data 22
285another simple change
286from :15
287M 100644 :16 b.c
288
289blob
290mark :18
291data 254
292#include <unistd.h>
293#include <stdio.h>
294
295long f(long x);
296
297/*
298 * This is only an example!
299 */
300
301int main ()
302{
303 printf("%ld\n", f(15));
304 return 0;
305}
306
307/* incomplete lines are bad! */
308
309long f(long x)
310{
311 int s = 0;
312 while (x) {
313 x /= 2;
314 s++;
315 }
316 return s;
317}
318
8f37854b 319commit refs/heads/main
12da1d1f
TR
320mark :19
321author Thomas Rast <trast@student.ethz.ch> 1362045024 +0100
322committer Thomas Rast <trast@student.ethz.ch> 1362045024 +0100
323data 21
324move within the file
325from :17
326M 100644 :18 b.c
327
d51c5274
TR
328blob
329mark :20
330data 243
331#include <unistd.h>
332#include <stdio.h>
333
334long f(long x)
335{
336 int s = 0;
337 while (x) {
338 x >>= 1;
339 s++;
340 }
341 return s;
342}
343
344/*
345 * This is only a short example!
346 */
347
348int main ()
349{
350 printf("%ld\n", f(15));
351 return 0;
352}
353
354/* incomplete lines are bad! */
355
356commit refs/heads/parallel-change
357mark :21
358author Thomas Rast <trast@inf.ethz.ch> 1365776157 +0200
359committer Thomas Rast <trast@inf.ethz.ch> 1365776157 +0200
360data 55
361change on another line of history while rename happens
362from :14
363M 100644 :20 a.c
364
365blob
366mark :22
367data 242
368#include <unistd.h>
369#include <stdio.h>
370
371long f(long x)
372{
373 int s = 0;
374 while (x) {
375 x /= 2;
376 s++;
377 }
378 return s;
379}
380
381/*
382 * This is only a short example!
383 */
384
385int main ()
386{
387 printf("%ld\n", f(15));
388 return 0;
389}
390
391/* incomplete lines are bad! */
392
393commit refs/heads/parallel-change
394mark :23
395author Thomas Rast <trast@inf.ethz.ch> 1365776184 +0200
396committer Thomas Rast <trast@inf.ethz.ch> 1365776191 +0200
397data 24
398Merge across the rename
399from :21
400merge :17
401D a.c
402M 100644 :22 b.c
403
404reset refs/heads/parallel-change
405from :23
12da1d1f 406