##// END OF EJS Templates
Update test-record for 3ef190234b55
Brendan Cully -
r5286:cbec83d9 default
parent child Browse files
Show More
@@ -1,489 +1,489 b''
1 % help
1 % help
2 hg record [OPTION]... [FILE]...
2 hg record [OPTION]... [FILE]...
3
3
4 interactively select changes to commit
4 interactively select changes to commit
5
5
6 If a list of files is omitted, all changes reported by "hg status"
6 If a list of files is omitted, all changes reported by "hg status"
7 will be candidates for recording.
7 will be candidates for recording.
8
8
9 You will be prompted for whether to record changes to each
9 You will be prompted for whether to record changes to each
10 modified file, and for files with multiple changes, for each
10 modified file, and for files with multiple changes, for each
11 change to use. For each query, the following responses are
11 change to use. For each query, the following responses are
12 possible:
12 possible:
13
13
14 y - record this change
14 y - record this change
15 n - skip this change
15 n - skip this change
16
16
17 s - skip remaining changes to this file
17 s - skip remaining changes to this file
18 f - record remaining changes to this file
18 f - record remaining changes to this file
19
19
20 d - done, skip remaining changes and files
20 d - done, skip remaining changes and files
21 a - record all changes to all remaining files
21 a - record all changes to all remaining files
22 q - quit, recording no changes
22 q - quit, recording no changes
23
23
24 ? - display help
24 ? - display help
25
25
26 options:
26 options:
27
27
28 -A --addremove mark new/missing files as added/removed before committing
28 -A --addremove mark new/missing files as added/removed before committing
29 -I --include include names matching the given patterns
29 -I --include include names matching the given patterns
30 -X --exclude exclude names matching the given patterns
30 -X --exclude exclude names matching the given patterns
31 -m --message use <text> as commit message
31 -m --message use <text> as commit message
32 -l --logfile read commit message from <file>
32 -l --logfile read commit message from <file>
33 -d --date record datecode as commit date
33 -d --date record datecode as commit date
34 -u --user record user as committer
34 -u --user record user as committer
35
35
36 use "hg -v help record" to show global options
36 use "hg -v help record" to show global options
37 % select no files
37 % select no files
38 diff --git a/empty-rw b/empty-rw
38 diff --git a/empty-rw b/empty-rw
39 new file mode 100644
39 new file mode 100644
40 record changes to 'empty-rw'? [Ynsfdaq?] no changes to record
40 examine changes to 'empty-rw'? [Ynsfdaq?] no changes to record
41
41
42 changeset: -1:000000000000
42 changeset: -1:000000000000
43 tag: tip
43 tag: tip
44 user:
44 user:
45 date: Thu Jan 01 00:00:00 1970 +0000
45 date: Thu Jan 01 00:00:00 1970 +0000
46
46
47
47
48 % select files but no hunks
48 % select files but no hunks
49 diff --git a/empty-rw b/empty-rw
49 diff --git a/empty-rw b/empty-rw
50 new file mode 100644
50 new file mode 100644
51 record changes to 'empty-rw'? [Ynsfdaq?] transaction abort!
51 examine changes to 'empty-rw'? [Ynsfdaq?] transaction abort!
52 rollback completed
52 rollback completed
53
53
54 changeset: -1:000000000000
54 changeset: -1:000000000000
55 tag: tip
55 tag: tip
56 user:
56 user:
57 date: Thu Jan 01 00:00:00 1970 +0000
57 date: Thu Jan 01 00:00:00 1970 +0000
58
58
59
59
60 % record empty file
60 % record empty file
61 diff --git a/empty-rw b/empty-rw
61 diff --git a/empty-rw b/empty-rw
62 new file mode 100644
62 new file mode 100644
63 record changes to 'empty-rw'? [Ynsfdaq?]
63 examine changes to 'empty-rw'? [Ynsfdaq?]
64 changeset: 0:c0708cf4e46e
64 changeset: 0:c0708cf4e46e
65 tag: tip
65 tag: tip
66 user: test
66 user: test
67 date: Thu Jan 01 00:00:00 1970 +0000
67 date: Thu Jan 01 00:00:00 1970 +0000
68 summary: empty
68 summary: empty
69
69
70
70
71 % rename empty file
71 % rename empty file
72 diff --git a/empty-rw b/empty-rename
72 diff --git a/empty-rw b/empty-rename
73 rename from empty-rw
73 rename from empty-rw
74 rename to empty-rename
74 rename to empty-rename
75 record changes to 'empty-rw' and 'empty-rename'? [Ynsfdaq?]
75 examine changes to 'empty-rw' and 'empty-rename'? [Ynsfdaq?]
76 changeset: 1:df251d174da3
76 changeset: 1:df251d174da3
77 tag: tip
77 tag: tip
78 user: test
78 user: test
79 date: Thu Jan 01 00:00:01 1970 +0000
79 date: Thu Jan 01 00:00:01 1970 +0000
80 summary: rename
80 summary: rename
81
81
82
82
83 % copy empty file
83 % copy empty file
84 diff --git a/empty-rename b/empty-copy
84 diff --git a/empty-rename b/empty-copy
85 copy from empty-rename
85 copy from empty-rename
86 copy to empty-copy
86 copy to empty-copy
87 record changes to 'empty-rename' and 'empty-copy'? [Ynsfdaq?]
87 examine changes to 'empty-rename' and 'empty-copy'? [Ynsfdaq?]
88 changeset: 2:b63ea3939f8d
88 changeset: 2:b63ea3939f8d
89 tag: tip
89 tag: tip
90 user: test
90 user: test
91 date: Thu Jan 01 00:00:02 1970 +0000
91 date: Thu Jan 01 00:00:02 1970 +0000
92 summary: copy
92 summary: copy
93
93
94
94
95 % delete empty file
95 % delete empty file
96 diff --git a/empty-copy b/empty-copy
96 diff --git a/empty-copy b/empty-copy
97 deleted file mode 100644
97 deleted file mode 100644
98 record changes to 'empty-copy'? [Ynsfdaq?]
98 examine changes to 'empty-copy'? [Ynsfdaq?]
99 changeset: 3:a2546574bce9
99 changeset: 3:a2546574bce9
100 tag: tip
100 tag: tip
101 user: test
101 user: test
102 date: Thu Jan 01 00:00:03 1970 +0000
102 date: Thu Jan 01 00:00:03 1970 +0000
103 summary: delete
103 summary: delete
104
104
105
105
106 % add binary file
106 % add binary file
107 diff --git a/tip.bundle b/tip.bundle
107 diff --git a/tip.bundle b/tip.bundle
108 new file mode 100644
108 new file mode 100644
109 this is a binary file
109 this is a binary file
110 record changes to 'tip.bundle'? [Ynsfdaq?]
110 examine changes to 'tip.bundle'? [Ynsfdaq?]
111 changeset: 4:9e998a545a8b
111 changeset: 4:9e998a545a8b
112 tag: tip
112 tag: tip
113 user: test
113 user: test
114 date: Thu Jan 01 00:00:04 1970 +0000
114 date: Thu Jan 01 00:00:04 1970 +0000
115 summary: binary
115 summary: binary
116
116
117 diff -r a2546574bce9 -r 9e998a545a8b tip.bundle
117 diff -r a2546574bce9 -r 9e998a545a8b tip.bundle
118 Binary file tip.bundle has changed
118 Binary file tip.bundle has changed
119
119
120 % change binary file
120 % change binary file
121 diff --git a/tip.bundle b/tip.bundle
121 diff --git a/tip.bundle b/tip.bundle
122 this modifies a binary file (all or nothing)
122 this modifies a binary file (all or nothing)
123 record changes to 'tip.bundle'? [Ynsfdaq?]
123 examine changes to 'tip.bundle'? [Ynsfdaq?]
124 changeset: 5:93d05561507d
124 changeset: 5:93d05561507d
125 tag: tip
125 tag: tip
126 user: test
126 user: test
127 date: Thu Jan 01 00:00:05 1970 +0000
127 date: Thu Jan 01 00:00:05 1970 +0000
128 summary: binary-change
128 summary: binary-change
129
129
130 diff -r 9e998a545a8b -r 93d05561507d tip.bundle
130 diff -r 9e998a545a8b -r 93d05561507d tip.bundle
131 Binary file tip.bundle has changed
131 Binary file tip.bundle has changed
132
132
133 % rename and change binary file
133 % rename and change binary file
134 diff --git a/tip.bundle b/top.bundle
134 diff --git a/tip.bundle b/top.bundle
135 rename from tip.bundle
135 rename from tip.bundle
136 rename to top.bundle
136 rename to top.bundle
137 this modifies a binary file (all or nothing)
137 this modifies a binary file (all or nothing)
138 record changes to 'tip.bundle' and 'top.bundle'? [Ynsfdaq?]
138 examine changes to 'tip.bundle' and 'top.bundle'? [Ynsfdaq?]
139 changeset: 6:699cc1bea9aa
139 changeset: 6:699cc1bea9aa
140 tag: tip
140 tag: tip
141 user: test
141 user: test
142 date: Thu Jan 01 00:00:06 1970 +0000
142 date: Thu Jan 01 00:00:06 1970 +0000
143 summary: binary-change-rename
143 summary: binary-change-rename
144
144
145 diff -r 93d05561507d -r 699cc1bea9aa tip.bundle
145 diff -r 93d05561507d -r 699cc1bea9aa tip.bundle
146 Binary file tip.bundle has changed
146 Binary file tip.bundle has changed
147 diff -r 93d05561507d -r 699cc1bea9aa top.bundle
147 diff -r 93d05561507d -r 699cc1bea9aa top.bundle
148 Binary file top.bundle has changed
148 Binary file top.bundle has changed
149
149
150 % add plain file
150 % add plain file
151 diff --git a/plain b/plain
151 diff --git a/plain b/plain
152 new file mode 100644
152 new file mode 100644
153 record changes to 'plain'? [Ynsfdaq?]
153 examine changes to 'plain'? [Ynsfdaq?]
154 changeset: 7:118ed744216b
154 changeset: 7:118ed744216b
155 tag: tip
155 tag: tip
156 user: test
156 user: test
157 date: Thu Jan 01 00:00:07 1970 +0000
157 date: Thu Jan 01 00:00:07 1970 +0000
158 summary: plain
158 summary: plain
159
159
160 diff -r 699cc1bea9aa -r 118ed744216b plain
160 diff -r 699cc1bea9aa -r 118ed744216b plain
161 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
161 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
162 +++ b/plain Thu Jan 01 00:00:07 1970 +0000
162 +++ b/plain Thu Jan 01 00:00:07 1970 +0000
163 @@ -0,0 +1,10 @@
163 @@ -0,0 +1,10 @@
164 +1
164 +1
165 +2
165 +2
166 +3
166 +3
167 +4
167 +4
168 +5
168 +5
169 +6
169 +6
170 +7
170 +7
171 +8
171 +8
172 +9
172 +9
173 +10
173 +10
174
174
175 % modify end of plain file
175 % modify end of plain file
176 diff --git a/plain b/plain
176 diff --git a/plain b/plain
177 1 hunks, 1 lines changed
177 1 hunks, 1 lines changed
178 record changes to 'plain'? [Ynsfdaq?] @@ -8,3 +8,4 @@ 8
178 examine changes to 'plain'? [Ynsfdaq?] @@ -8,3 +8,4 @@ 8
179 8
179 8
180 9
180 9
181 10
181 10
182 +11
182 +11
183 record this change to 'plain'? [Ynsfdaq?] % modify end of plain file, no EOL
183 record this change to 'plain'? [Ynsfdaq?] % modify end of plain file, no EOL
184 diff --git a/plain b/plain
184 diff --git a/plain b/plain
185 1 hunks, 1 lines changed
185 1 hunks, 1 lines changed
186 record changes to 'plain'? [Ynsfdaq?] @@ -9,3 +9,4 @@ 9
186 examine changes to 'plain'? [Ynsfdaq?] @@ -9,3 +9,4 @@ 9
187 9
187 9
188 10
188 10
189 11
189 11
190 +cf81a2760718a74d44c0c2eecb72f659e63a69c5
190 +cf81a2760718a74d44c0c2eecb72f659e63a69c5
191 \ No newline at end of file
191 \ No newline at end of file
192 record this change to 'plain'? [Ynsfdaq?] % modify end of plain file, add EOL
192 record this change to 'plain'? [Ynsfdaq?] % modify end of plain file, add EOL
193 diff --git a/plain b/plain
193 diff --git a/plain b/plain
194 1 hunks, 2 lines changed
194 1 hunks, 2 lines changed
195 record changes to 'plain'? [Ynsfdaq?] @@ -9,4 +9,4 @@ 9
195 examine changes to 'plain'? [Ynsfdaq?] @@ -9,4 +9,4 @@ 9
196 9
196 9
197 10
197 10
198 11
198 11
199 -cf81a2760718a74d44c0c2eecb72f659e63a69c5
199 -cf81a2760718a74d44c0c2eecb72f659e63a69c5
200 \ No newline at end of file
200 \ No newline at end of file
201 +cf81a2760718a74d44c0c2eecb72f659e63a69c5
201 +cf81a2760718a74d44c0c2eecb72f659e63a69c5
202 record this change to 'plain'? [Ynsfdaq?] % modify beginning, trim end, record both
202 record this change to 'plain'? [Ynsfdaq?] % modify beginning, trim end, record both
203 diff --git a/plain b/plain
203 diff --git a/plain b/plain
204 2 hunks, 4 lines changed
204 2 hunks, 4 lines changed
205 record changes to 'plain'? [Ynsfdaq?] @@ -1,4 +1,4 @@ 1
205 examine changes to 'plain'? [Ynsfdaq?] @@ -1,4 +1,4 @@ 1
206 -1
206 -1
207 +2
207 +2
208 2
208 2
209 3
209 3
210 4
210 4
211 record this change to 'plain'? [Ynsfdaq?] @@ -8,5 +8,3 @@ 8
211 record this change to 'plain'? [Ynsfdaq?] @@ -8,5 +8,3 @@ 8
212 8
212 8
213 9
213 9
214 10
214 10
215 -11
215 -11
216 -cf81a2760718a74d44c0c2eecb72f659e63a69c5
216 -cf81a2760718a74d44c0c2eecb72f659e63a69c5
217 record this change to 'plain'? [Ynsfdaq?]
217 record this change to 'plain'? [Ynsfdaq?]
218 changeset: 11:d09ab1967dab
218 changeset: 11:d09ab1967dab
219 tag: tip
219 tag: tip
220 user: test
220 user: test
221 date: Thu Jan 01 00:00:10 1970 +0000
221 date: Thu Jan 01 00:00:10 1970 +0000
222 summary: begin-and-end
222 summary: begin-and-end
223
223
224 diff -r e2ecd9b0b78d -r d09ab1967dab plain
224 diff -r e2ecd9b0b78d -r d09ab1967dab plain
225 --- a/plain Thu Jan 01 00:00:10 1970 +0000
225 --- a/plain Thu Jan 01 00:00:10 1970 +0000
226 +++ b/plain Thu Jan 01 00:00:10 1970 +0000
226 +++ b/plain Thu Jan 01 00:00:10 1970 +0000
227 @@ -1,4 +1,4 @@ 1
227 @@ -1,4 +1,4 @@ 1
228 -1
228 -1
229 +2
229 +2
230 2
230 2
231 3
231 3
232 4
232 4
233 @@ -8,5 +8,3 @@ 8
233 @@ -8,5 +8,3 @@ 8
234 8
234 8
235 9
235 9
236 10
236 10
237 -11
237 -11
238 -cf81a2760718a74d44c0c2eecb72f659e63a69c5
238 -cf81a2760718a74d44c0c2eecb72f659e63a69c5
239
239
240 % trim beginning, modify end
240 % trim beginning, modify end
241 % record end
241 % record end
242 diff --git a/plain b/plain
242 diff --git a/plain b/plain
243 2 hunks, 5 lines changed
243 2 hunks, 5 lines changed
244 record changes to 'plain'? [Ynsfdaq?] @@ -1,9 +1,6 @@ 2
244 examine changes to 'plain'? [Ynsfdaq?] @@ -1,9 +1,6 @@ 2
245 -2
245 -2
246 -2
246 -2
247 -3
247 -3
248 4
248 4
249 5
249 5
250 6
250 6
251 7
251 7
252 8
252 8
253 9
253 9
254 record this change to 'plain'? [Ynsfdaq?] @@ -4,7 +1,7 @@
254 record this change to 'plain'? [Ynsfdaq?] @@ -4,7 +1,7 @@
255 4
255 4
256 5
256 5
257 6
257 6
258 7
258 7
259 8
259 8
260 9
260 9
261 -10
261 -10
262 +10.new
262 +10.new
263 record this change to 'plain'? [Ynsfdaq?]
263 record this change to 'plain'? [Ynsfdaq?]
264 changeset: 12:44516c9708ae
264 changeset: 12:44516c9708ae
265 tag: tip
265 tag: tip
266 user: test
266 user: test
267 date: Thu Jan 01 00:00:11 1970 +0000
267 date: Thu Jan 01 00:00:11 1970 +0000
268 summary: end-only
268 summary: end-only
269
269
270 diff -r d09ab1967dab -r 44516c9708ae plain
270 diff -r d09ab1967dab -r 44516c9708ae plain
271 --- a/plain Thu Jan 01 00:00:10 1970 +0000
271 --- a/plain Thu Jan 01 00:00:10 1970 +0000
272 +++ b/plain Thu Jan 01 00:00:11 1970 +0000
272 +++ b/plain Thu Jan 01 00:00:11 1970 +0000
273 @@ -7,4 +7,4 @@ 7
273 @@ -7,4 +7,4 @@ 7
274 7
274 7
275 8
275 8
276 9
276 9
277 -10
277 -10
278 +10.new
278 +10.new
279
279
280 % record beginning
280 % record beginning
281 diff --git a/plain b/plain
281 diff --git a/plain b/plain
282 1 hunks, 3 lines changed
282 1 hunks, 3 lines changed
283 record changes to 'plain'? [Ynsfdaq?] @@ -1,6 +1,3 @@ 2
283 examine changes to 'plain'? [Ynsfdaq?] @@ -1,6 +1,3 @@ 2
284 -2
284 -2
285 -2
285 -2
286 -3
286 -3
287 4
287 4
288 5
288 5
289 6
289 6
290 record this change to 'plain'? [Ynsfdaq?]
290 record this change to 'plain'? [Ynsfdaq?]
291 changeset: 13:3ebbace64a8d
291 changeset: 13:3ebbace64a8d
292 tag: tip
292 tag: tip
293 user: test
293 user: test
294 date: Thu Jan 01 00:00:12 1970 +0000
294 date: Thu Jan 01 00:00:12 1970 +0000
295 summary: begin-only
295 summary: begin-only
296
296
297 diff -r 44516c9708ae -r 3ebbace64a8d plain
297 diff -r 44516c9708ae -r 3ebbace64a8d plain
298 --- a/plain Thu Jan 01 00:00:11 1970 +0000
298 --- a/plain Thu Jan 01 00:00:11 1970 +0000
299 +++ b/plain Thu Jan 01 00:00:12 1970 +0000
299 +++ b/plain Thu Jan 01 00:00:12 1970 +0000
300 @@ -1,6 +1,3 @@ 2
300 @@ -1,6 +1,3 @@ 2
301 -2
301 -2
302 -2
302 -2
303 -3
303 -3
304 4
304 4
305 5
305 5
306 6
306 6
307
307
308 % add to beginning, trim from end
308 % add to beginning, trim from end
309 % record end
309 % record end
310 diff --git a/plain b/plain
310 diff --git a/plain b/plain
311 2 hunks, 4 lines changed
311 2 hunks, 4 lines changed
312 record changes to 'plain'? [Ynsfdaq?] @@ -1,6 +1,9 @@ 4
312 examine changes to 'plain'? [Ynsfdaq?] @@ -1,6 +1,9 @@ 4
313 +1
313 +1
314 +2
314 +2
315 +3
315 +3
316 4
316 4
317 5
317 5
318 6
318 6
319 7
319 7
320 8
320 8
321 9
321 9
322 record this change to 'plain'? [Ynsfdaq?] @@ -1,7 +4,6 @@
322 record this change to 'plain'? [Ynsfdaq?] @@ -1,7 +4,6 @@
323 4
323 4
324 5
324 5
325 6
325 6
326 7
326 7
327 8
327 8
328 9
328 9
329 -10.new
329 -10.new
330 record this change to 'plain'? [Ynsfdaq?] % add to beginning, middle, end
330 record this change to 'plain'? [Ynsfdaq?] % add to beginning, middle, end
331 % record beginning, middle
331 % record beginning, middle
332 diff --git a/plain b/plain
332 diff --git a/plain b/plain
333 3 hunks, 7 lines changed
333 3 hunks, 7 lines changed
334 record changes to 'plain'? [Ynsfdaq?] @@ -1,2 +1,5 @@ 4
334 examine changes to 'plain'? [Ynsfdaq?] @@ -1,2 +1,5 @@ 4
335 +1
335 +1
336 +2
336 +2
337 +3
337 +3
338 4
338 4
339 5
339 5
340 record this change to 'plain'? [Ynsfdaq?] @@ -1,6 +4,8 @@
340 record this change to 'plain'? [Ynsfdaq?] @@ -1,6 +4,8 @@
341 4
341 4
342 5
342 5
343 +5.new
343 +5.new
344 +5.reallynew
344 +5.reallynew
345 6
345 6
346 7
346 7
347 8
347 8
348 9
348 9
349 record this change to 'plain'? [Ynsfdaq?] @@ -3,4 +8,6 @@
349 record this change to 'plain'? [Ynsfdaq?] @@ -3,4 +8,6 @@
350 6
350 6
351 7
351 7
352 8
352 8
353 9
353 9
354 +10
354 +10
355 +11
355 +11
356 record this change to 'plain'? [Ynsfdaq?]
356 record this change to 'plain'? [Ynsfdaq?]
357 changeset: 15:c1c639d8b268
357 changeset: 15:c1c639d8b268
358 tag: tip
358 tag: tip
359 user: test
359 user: test
360 date: Thu Jan 01 00:00:14 1970 +0000
360 date: Thu Jan 01 00:00:14 1970 +0000
361 summary: middle-only
361 summary: middle-only
362
362
363 diff -r efc0dad7bd9f -r c1c639d8b268 plain
363 diff -r efc0dad7bd9f -r c1c639d8b268 plain
364 --- a/plain Thu Jan 01 00:00:13 1970 +0000
364 --- a/plain Thu Jan 01 00:00:13 1970 +0000
365 +++ b/plain Thu Jan 01 00:00:14 1970 +0000
365 +++ b/plain Thu Jan 01 00:00:14 1970 +0000
366 @@ -1,5 +1,10 @@ 4
366 @@ -1,5 +1,10 @@ 4
367 +1
367 +1
368 +2
368 +2
369 +3
369 +3
370 4
370 4
371 5
371 5
372 +5.new
372 +5.new
373 +5.reallynew
373 +5.reallynew
374 6
374 6
375 7
375 7
376 8
376 8
377
377
378 % record end
378 % record end
379 diff --git a/plain b/plain
379 diff --git a/plain b/plain
380 1 hunks, 2 lines changed
380 1 hunks, 2 lines changed
381 record changes to 'plain'? [Ynsfdaq?] @@ -9,3 +9,5 @@ 7
381 examine changes to 'plain'? [Ynsfdaq?] @@ -9,3 +9,5 @@ 7
382 7
382 7
383 8
383 8
384 9
384 9
385 +10
385 +10
386 +11
386 +11
387 record this change to 'plain'? [Ynsfdaq?]
387 record this change to 'plain'? [Ynsfdaq?]
388 changeset: 16:80b74bbc7808
388 changeset: 16:80b74bbc7808
389 tag: tip
389 tag: tip
390 user: test
390 user: test
391 date: Thu Jan 01 00:00:15 1970 +0000
391 date: Thu Jan 01 00:00:15 1970 +0000
392 summary: end-only
392 summary: end-only
393
393
394 diff -r c1c639d8b268 -r 80b74bbc7808 plain
394 diff -r c1c639d8b268 -r 80b74bbc7808 plain
395 --- a/plain Thu Jan 01 00:00:14 1970 +0000
395 --- a/plain Thu Jan 01 00:00:14 1970 +0000
396 +++ b/plain Thu Jan 01 00:00:15 1970 +0000
396 +++ b/plain Thu Jan 01 00:00:15 1970 +0000
397 @@ -9,3 +9,5 @@ 7
397 @@ -9,3 +9,5 @@ 7
398 7
398 7
399 8
399 8
400 9
400 9
401 +10
401 +10
402 +11
402 +11
403
403
404 adding subdir/a
404 adding subdir/a
405 diff --git a/subdir/a b/subdir/a
405 diff --git a/subdir/a b/subdir/a
406 1 hunks, 1 lines changed
406 1 hunks, 1 lines changed
407 record changes to 'subdir/a'? [Ynsfdaq?] @@ -1,1 +1,2 @@ a
407 examine changes to 'subdir/a'? [Ynsfdaq?] @@ -1,1 +1,2 @@ a
408 a
408 a
409 +a
409 +a
410 record this change to 'subdir/a'? [Ynsfdaq?]
410 record this change to 'subdir/a'? [Ynsfdaq?]
411 changeset: 18:33ff5c4fb017
411 changeset: 18:33ff5c4fb017
412 tag: tip
412 tag: tip
413 user: test
413 user: test
414 date: Thu Jan 01 00:00:16 1970 +0000
414 date: Thu Jan 01 00:00:16 1970 +0000
415 summary: subdir-change
415 summary: subdir-change
416
416
417 diff -r aecf2b2ea83c -r 33ff5c4fb017 subdir/a
417 diff -r aecf2b2ea83c -r 33ff5c4fb017 subdir/a
418 --- a/subdir/a Thu Jan 01 00:00:16 1970 +0000
418 --- a/subdir/a Thu Jan 01 00:00:16 1970 +0000
419 +++ b/subdir/a Thu Jan 01 00:00:16 1970 +0000
419 +++ b/subdir/a Thu Jan 01 00:00:16 1970 +0000
420 @@ -1,1 +1,2 @@ a
420 @@ -1,1 +1,2 @@ a
421 a
421 a
422 +a
422 +a
423
423
424 % help, quit
424 % help, quit
425 diff --git a/subdir/f1 b/subdir/f1
425 diff --git a/subdir/f1 b/subdir/f1
426 1 hunks, 1 lines changed
426 1 hunks, 1 lines changed
427 record changes to 'subdir/f1'? [Ynsfdaq?] y - record this change
427 examine changes to 'subdir/f1'? [Ynsfdaq?] y - record this change
428 n - skip this change
428 n - skip this change
429 s - skip remaining changes to this file
429 s - skip remaining changes to this file
430 f - record remaining changes to this file
430 f - record remaining changes to this file
431 d - done, skip remaining changes and files
431 d - done, skip remaining changes and files
432 a - record all changes to all remaining files
432 a - record all changes to all remaining files
433 q - quit, recording no changes
433 q - quit, recording no changes
434 ? - display help
434 ? - display help
435 record changes to 'subdir/f1'? [Ynsfdaq?] abort: user quit
435 examine changes to 'subdir/f1'? [Ynsfdaq?] abort: user quit
436 % skip
436 % skip
437 diff --git a/subdir/f1 b/subdir/f1
437 diff --git a/subdir/f1 b/subdir/f1
438 1 hunks, 1 lines changed
438 1 hunks, 1 lines changed
439 record changes to 'subdir/f1'? [Ynsfdaq?] diff --git a/subdir/f2 b/subdir/f2
439 examine changes to 'subdir/f1'? [Ynsfdaq?] diff --git a/subdir/f2 b/subdir/f2
440 1 hunks, 1 lines changed
440 1 hunks, 1 lines changed
441 record changes to 'subdir/f2'? [Ynsfdaq?] abort: response expected
441 examine changes to 'subdir/f2'? [Ynsfdaq?] abort: response expected
442 % no
442 % no
443 diff --git a/subdir/f1 b/subdir/f1
443 diff --git a/subdir/f1 b/subdir/f1
444 1 hunks, 1 lines changed
444 1 hunks, 1 lines changed
445 record changes to 'subdir/f1'? [Ynsfdaq?] diff --git a/subdir/f2 b/subdir/f2
445 examine changes to 'subdir/f1'? [Ynsfdaq?] diff --git a/subdir/f2 b/subdir/f2
446 1 hunks, 1 lines changed
446 1 hunks, 1 lines changed
447 record changes to 'subdir/f2'? [Ynsfdaq?] abort: response expected
447 examine changes to 'subdir/f2'? [Ynsfdaq?] abort: response expected
448 % f, quit
448 % f, quit
449 diff --git a/subdir/f1 b/subdir/f1
449 diff --git a/subdir/f1 b/subdir/f1
450 1 hunks, 1 lines changed
450 1 hunks, 1 lines changed
451 record changes to 'subdir/f1'? [Ynsfdaq?] diff --git a/subdir/f2 b/subdir/f2
451 examine changes to 'subdir/f1'? [Ynsfdaq?] diff --git a/subdir/f2 b/subdir/f2
452 1 hunks, 1 lines changed
452 1 hunks, 1 lines changed
453 record changes to 'subdir/f2'? [Ynsfdaq?] abort: user quit
453 examine changes to 'subdir/f2'? [Ynsfdaq?] abort: user quit
454 % s, all
454 % s, all
455 diff --git a/subdir/f1 b/subdir/f1
455 diff --git a/subdir/f1 b/subdir/f1
456 1 hunks, 1 lines changed
456 1 hunks, 1 lines changed
457 record changes to 'subdir/f1'? [Ynsfdaq?] diff --git a/subdir/f2 b/subdir/f2
457 examine changes to 'subdir/f1'? [Ynsfdaq?] diff --git a/subdir/f2 b/subdir/f2
458 1 hunks, 1 lines changed
458 1 hunks, 1 lines changed
459 record changes to 'subdir/f2'? [Ynsfdaq?]
459 examine changes to 'subdir/f2'? [Ynsfdaq?]
460 changeset: 20:094183e04b7c
460 changeset: 20:094183e04b7c
461 tag: tip
461 tag: tip
462 user: test
462 user: test
463 date: Thu Jan 01 00:00:18 1970 +0000
463 date: Thu Jan 01 00:00:18 1970 +0000
464 summary: x
464 summary: x
465
465
466 diff -r f9e855cd9374 -r 094183e04b7c subdir/f2
466 diff -r f9e855cd9374 -r 094183e04b7c subdir/f2
467 --- a/subdir/f2 Thu Jan 01 00:00:17 1970 +0000
467 --- a/subdir/f2 Thu Jan 01 00:00:17 1970 +0000
468 +++ b/subdir/f2 Thu Jan 01 00:00:18 1970 +0000
468 +++ b/subdir/f2 Thu Jan 01 00:00:18 1970 +0000
469 @@ -1,1 +1,2 @@ b
469 @@ -1,1 +1,2 @@ b
470 b
470 b
471 +b
471 +b
472
472
473 % f
473 % f
474 diff --git a/subdir/f1 b/subdir/f1
474 diff --git a/subdir/f1 b/subdir/f1
475 1 hunks, 1 lines changed
475 1 hunks, 1 lines changed
476 record changes to 'subdir/f1'? [Ynsfdaq?]
476 examine changes to 'subdir/f1'? [Ynsfdaq?]
477 changeset: 21:38164785b0ef
477 changeset: 21:38164785b0ef
478 tag: tip
478 tag: tip
479 user: test
479 user: test
480 date: Thu Jan 01 00:00:19 1970 +0000
480 date: Thu Jan 01 00:00:19 1970 +0000
481 summary: y
481 summary: y
482
482
483 diff -r 094183e04b7c -r 38164785b0ef subdir/f1
483 diff -r 094183e04b7c -r 38164785b0ef subdir/f1
484 --- a/subdir/f1 Thu Jan 01 00:00:18 1970 +0000
484 --- a/subdir/f1 Thu Jan 01 00:00:18 1970 +0000
485 +++ b/subdir/f1 Thu Jan 01 00:00:19 1970 +0000
485 +++ b/subdir/f1 Thu Jan 01 00:00:19 1970 +0000
486 @@ -1,1 +1,2 @@ a
486 @@ -1,1 +1,2 @@ a
487 a
487 a
488 +a
488 +a
489
489
General Comments 0
You need to be logged in to leave comments. Login now