Commit | Line | Data |
---|---|---|
9509af68 JS |
1 | #include "cache.h" |
2 | #include "builtin.h" | |
3 | #include "object.h" | |
4 | #include "commit.h" | |
5 | #include "tag.h" | |
6 | #include "wt-status.h" | |
7 | #include "run-command.h" | |
8 | #include "exec_cmd.h" | |
9 | #include "utf8.h" | |
f8103794 | 10 | #include "parse-options.h" |
45525bd0 | 11 | #include "cache-tree.h" |
0f2d4476 JK |
12 | #include "diff.h" |
13 | #include "revision.h" | |
aa1a0111 | 14 | #include "rerere.h" |
6eb1b437 | 15 | #include "merge-recursive.h" |
c62f6ec3 | 16 | #include "refs.h" |
9509af68 JS |
17 | |
18 | /* | |
19 | * This implements the builtins revert and cherry-pick. | |
20 | * | |
21 | * Copyright (c) 2007 Johannes E. Schindelin | |
22 | * | |
23 | * Based on git-revert.sh, which is | |
24 | * | |
25 | * Copyright (c) 2005 Linus Torvalds | |
26 | * Copyright (c) 2005 Junio C Hamano | |
27 | */ | |
28 | ||
f8103794 | 29 | static const char * const revert_usage[] = { |
1b1dd23f | 30 | "git revert [options] <commit-ish>", |
f8103794 PH |
31 | NULL |
32 | }; | |
9509af68 | 33 | |
f8103794 | 34 | static const char * const cherry_pick_usage[] = { |
1b1dd23f | 35 | "git cherry-pick [options] <commit-ish>", |
f8103794 PH |
36 | NULL |
37 | }; | |
9509af68 | 38 | |
c62f6ec3 | 39 | static int edit, no_replay, no_commit, mainline, signoff, allow_ff; |
4175e9e3 | 40 | static enum { REVERT, CHERRY_PICK } action; |
9509af68 | 41 | static struct commit *commit; |
7e2bfd3f CC |
42 | static int commit_argc; |
43 | static const char **commit_argv; | |
cb6020bb | 44 | static int allow_rerere_auto; |
9509af68 JS |
45 | |
46 | static const char *me; | |
91e52598 | 47 | static const char *strategy; |
9509af68 JS |
48 | |
49 | #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION" | |
50 | ||
d6856540 JN |
51 | static char *get_encoding(const char *message); |
52 | ||
e0ef8495 JN |
53 | static const char * const *revert_or_cherry_pick_usage(void) |
54 | { | |
55 | return action == REVERT ? revert_usage : cherry_pick_usage; | |
56 | } | |
57 | ||
f8103794 | 58 | static void parse_args(int argc, const char **argv) |
9509af68 | 59 | { |
e0ef8495 | 60 | const char * const * usage_str = revert_or_cherry_pick_usage(); |
f8103794 PH |
61 | int noop; |
62 | struct option options[] = { | |
63 | OPT_BOOLEAN('n', "no-commit", &no_commit, "don't automatically commit"), | |
64 | OPT_BOOLEAN('e', "edit", &edit, "edit the commit message"), | |
f8103794 | 65 | OPT_BOOLEAN('r', NULL, &noop, "no-op (backward compatibility)"), |
cfd9c277 | 66 | OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"), |
02273fdb | 67 | OPT_INTEGER('m', "mainline", &mainline, "parent number"), |
cb6020bb | 68 | OPT_RERERE_AUTOUPDATE(&allow_rerere_auto), |
91e52598 | 69 | OPT_STRING(0, "strategy", &strategy, "strategy", "merge strategy"), |
f8103794 | 70 | OPT_END(), |
c62f6ec3 JH |
71 | OPT_END(), |
72 | OPT_END(), | |
f8103794 PH |
73 | }; |
74 | ||
c62f6ec3 JH |
75 | if (action == CHERRY_PICK) { |
76 | struct option cp_extra[] = { | |
831244bd | 77 | OPT_BOOLEAN('x', NULL, &no_replay, "append commit name"), |
c62f6ec3 JH |
78 | OPT_BOOLEAN(0, "ff", &allow_ff, "allow fast-forward"), |
79 | OPT_END(), | |
80 | }; | |
81 | if (parse_options_concat(options, ARRAY_SIZE(options), cp_extra)) | |
82 | die("program error"); | |
83 | } | |
84 | ||
f873a273 | 85 | commit_argc = parse_options(argc, argv, NULL, options, usage_str, |
e0ef8495 | 86 | PARSE_OPT_KEEP_ARGV0 | |
f873a273 | 87 | PARSE_OPT_KEEP_UNKNOWN); |
e0ef8495 | 88 | if (commit_argc < 2) |
f8103794 | 89 | usage_with_options(usage_str, options); |
9509af68 | 90 | |
7e2bfd3f | 91 | commit_argv = argv; |
9509af68 JS |
92 | } |
93 | ||
d6856540 JN |
94 | struct commit_message { |
95 | char *parent_label; | |
96 | const char *label; | |
97 | const char *subject; | |
98 | char *reencoded_message; | |
99 | const char *message; | |
100 | }; | |
101 | ||
102 | static int get_message(const char *raw_message, struct commit_message *out) | |
9509af68 | 103 | { |
d6856540 | 104 | const char *encoding; |
dfe7effe CC |
105 | const char *abbrev, *subject; |
106 | int abbrev_len, subject_len; | |
d6856540 | 107 | char *q; |
9509af68 | 108 | |
d6856540 JN |
109 | if (!raw_message) |
110 | return -1; | |
111 | encoding = get_encoding(raw_message); | |
112 | if (!encoding) | |
113 | encoding = "UTF-8"; | |
114 | if (!git_commit_encoding) | |
115 | git_commit_encoding = "UTF-8"; | |
43acff34 JN |
116 | |
117 | out->reencoded_message = NULL; | |
118 | out->message = raw_message; | |
119 | if (strcmp(encoding, git_commit_encoding)) | |
120 | out->reencoded_message = reencode_string(raw_message, | |
121 | git_commit_encoding, encoding); | |
122 | if (out->reencoded_message) | |
d6856540 JN |
123 | out->message = out->reencoded_message; |
124 | ||
125 | abbrev = find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV); | |
126 | abbrev_len = strlen(abbrev); | |
127 | ||
dfe7effe | 128 | subject_len = find_commit_subject(out->message, &subject); |
d6856540 JN |
129 | |
130 | out->parent_label = xmalloc(strlen("parent of ") + abbrev_len + | |
dfe7effe | 131 | strlen("... ") + subject_len + 1); |
d6856540 JN |
132 | q = out->parent_label; |
133 | q = mempcpy(q, "parent of ", strlen("parent of ")); | |
134 | out->label = q; | |
135 | q = mempcpy(q, abbrev, abbrev_len); | |
136 | q = mempcpy(q, "... ", strlen("... ")); | |
137 | out->subject = q; | |
dfe7effe | 138 | q = mempcpy(q, subject, subject_len); |
d6856540 JN |
139 | *q = '\0'; |
140 | return 0; | |
141 | } | |
142 | ||
143 | static void free_message(struct commit_message *msg) | |
144 | { | |
145 | free(msg->parent_label); | |
146 | free(msg->reencoded_message); | |
9509af68 JS |
147 | } |
148 | ||
52fae7de | 149 | static char *get_encoding(const char *message) |
9509af68 JS |
150 | { |
151 | const char *p = message, *eol; | |
152 | ||
153 | if (!p) | |
154 | die ("Could not read commit message of %s", | |
155 | sha1_to_hex(commit->object.sha1)); | |
156 | while (*p && *p != '\n') { | |
157 | for (eol = p + 1; *eol && *eol != '\n'; eol++) | |
158 | ; /* do nothing */ | |
159 | if (!prefixcmp(p, "encoding ")) { | |
160 | char *result = xmalloc(eol - 8 - p); | |
161 | strlcpy(result, p + 9, eol - 8 - p); | |
162 | return result; | |
163 | } | |
164 | p = eol; | |
165 | if (*p == '\n') | |
166 | p++; | |
167 | } | |
168 | return NULL; | |
169 | } | |
170 | ||
bc84a7fb | 171 | static void add_message_to_msg(struct strbuf *msgbuf, const char *message) |
9509af68 JS |
172 | { |
173 | const char *p = message; | |
174 | while (*p && (*p != '\n' || p[1] != '\n')) | |
175 | p++; | |
176 | ||
177 | if (!*p) | |
bc84a7fb | 178 | strbuf_addstr(msgbuf, sha1_to_hex(commit->object.sha1)); |
9509af68 JS |
179 | |
180 | p += 2; | |
bc84a7fb | 181 | strbuf_addstr(msgbuf, p); |
9509af68 JS |
182 | } |
183 | ||
184 | static void set_author_ident_env(const char *message) | |
185 | { | |
186 | const char *p = message; | |
187 | if (!p) | |
188 | die ("Could not read commit message of %s", | |
189 | sha1_to_hex(commit->object.sha1)); | |
190 | while (*p && *p != '\n') { | |
191 | const char *eol; | |
192 | ||
193 | for (eol = p; *eol && *eol != '\n'; eol++) | |
194 | ; /* do nothing */ | |
195 | if (!prefixcmp(p, "author ")) { | |
196 | char *line, *pend, *email, *timestamp; | |
197 | ||
198 | p += 7; | |
182af834 | 199 | line = xmemdupz(p, eol - p); |
9509af68 JS |
200 | email = strchr(line, '<'); |
201 | if (!email) | |
202 | die ("Could not extract author email from %s", | |
203 | sha1_to_hex(commit->object.sha1)); | |
204 | if (email == line) | |
205 | pend = line; | |
206 | else | |
207 | for (pend = email; pend != line + 1 && | |
208 | isspace(pend[-1]); pend--); | |
209 | ; /* do nothing */ | |
210 | *pend = '\0'; | |
211 | email++; | |
212 | timestamp = strchr(email, '>'); | |
213 | if (!timestamp) | |
1e5f7add | 214 | die ("Could not extract author time from %s", |
9509af68 JS |
215 | sha1_to_hex(commit->object.sha1)); |
216 | *timestamp = '\0'; | |
217 | for (timestamp++; *timestamp && isspace(*timestamp); | |
218 | timestamp++) | |
219 | ; /* do nothing */ | |
220 | setenv("GIT_AUTHOR_NAME", line, 1); | |
221 | setenv("GIT_AUTHOR_EMAIL", email, 1); | |
222 | setenv("GIT_AUTHOR_DATE", timestamp, 1); | |
223 | free(line); | |
224 | return; | |
225 | } | |
226 | p = eol; | |
227 | if (*p == '\n') | |
228 | p++; | |
229 | } | |
230 | die ("No author information found in %s", | |
231 | sha1_to_hex(commit->object.sha1)); | |
232 | } | |
233 | ||
d7e5c0cb JS |
234 | static void write_cherry_pick_head(void) |
235 | { | |
236 | int fd; | |
237 | struct strbuf buf = STRBUF_INIT; | |
238 | ||
239 | strbuf_addf(&buf, "%s\n", sha1_to_hex(commit->object.sha1)); | |
240 | ||
241 | fd = open(git_path("CHERRY_PICK_HEAD"), O_WRONLY | O_CREAT, 0666); | |
242 | if (fd < 0) | |
243 | die_errno("Could not open '%s' for writing", | |
244 | git_path("CHERRY_PICK_HEAD")); | |
245 | if (write_in_full(fd, buf.buf, buf.len) != buf.len || close(fd)) | |
246 | die_errno("Could not write to '%s'", git_path("CHERRY_PICK_HEAD")); | |
247 | strbuf_release(&buf); | |
248 | } | |
249 | ||
2a41dfb0 | 250 | static void advise(const char *advice, ...) |
804c7174 | 251 | { |
2a41dfb0 | 252 | va_list params; |
804c7174 | 253 | |
2a41dfb0 JN |
254 | va_start(params, advice); |
255 | vreportf("hint: ", advice, params); | |
256 | va_end(params); | |
257 | } | |
804c7174 | 258 | |
314eeb6e | 259 | static void print_advice(void) |
804c7174 | 260 | { |
804c7174 | 261 | char *msg = getenv("GIT_CHERRY_PICK_HELP"); |
804c7174 | 262 | |
314eeb6e JN |
263 | if (msg) { |
264 | fprintf(stderr, "%s\n", msg); | |
d7e5c0cb JS |
265 | /* |
266 | * A conflict has occured but the porcelain | |
267 | * (typically rebase --interactive) wants to take care | |
268 | * of the commit itself so remove CHERRY_PICK_HEAD | |
269 | */ | |
270 | unlink(git_path("CHERRY_PICK_HEAD")); | |
314eeb6e | 271 | return; |
804c7174 | 272 | } |
804c7174 | 273 | |
314eeb6e JN |
274 | advise("after resolving the conflicts, mark the corrected paths"); |
275 | advise("with 'git add <paths>' or 'git rm <paths>'"); | |
804c7174 | 276 | |
314eeb6e | 277 | if (action == CHERRY_PICK) |
d7e5c0cb | 278 | advise("and commit the result with 'git commit -c CHERRY_PICK_HEAD'"); |
804c7174 WC |
279 | } |
280 | ||
bc84a7fb CC |
281 | static void write_message(struct strbuf *msgbuf, const char *filename) |
282 | { | |
283 | static struct lock_file msg_file; | |
284 | ||
285 | int msg_fd = hold_lock_file_for_update(&msg_file, filename, | |
286 | LOCK_DIE_ON_ERROR); | |
287 | if (write_in_full(msg_fd, msgbuf->buf, msgbuf->len) < 0) | |
288 | die_errno("Could not write to %s.", filename); | |
289 | strbuf_release(msgbuf); | |
290 | if (commit_lock_file(&msg_file) < 0) | |
291 | die("Error wrapping up %s", filename); | |
292 | } | |
293 | ||
6eb1b437 MV |
294 | static struct tree *empty_tree(void) |
295 | { | |
296 | struct tree *tree = xcalloc(1, sizeof(struct tree)); | |
297 | ||
298 | tree->object.parsed = 1; | |
299 | tree->object.type = OBJ_TREE; | |
300 | pretend_sha1_file(NULL, 0, OBJ_TREE, tree->object.sha1); | |
301 | return tree; | |
302 | } | |
303 | ||
d38a30df MM |
304 | static NORETURN void die_dirty_index(const char *me) |
305 | { | |
306 | if (read_cache_unmerged()) { | |
307 | die_resolve_conflict(me); | |
308 | } else { | |
309 | if (advice_commit_before_merge) | |
310 | die("Your local changes would be overwritten by %s.\n" | |
311 | "Please, commit your changes or stash them to proceed.", me); | |
312 | else | |
313 | die("Your local changes would be overwritten by %s.\n", me); | |
314 | } | |
315 | } | |
316 | ||
c62f6ec3 JH |
317 | static int fast_forward_to(const unsigned char *to, const unsigned char *from) |
318 | { | |
319 | struct ref_lock *ref_lock; | |
320 | ||
321 | read_cache(); | |
322 | if (checkout_fast_forward(from, to)) | |
323 | exit(1); /* the callee should have complained already */ | |
324 | ref_lock = lock_any_ref_for_update("HEAD", from, 0); | |
325 | return write_ref_sha1(ref_lock, to, "cherry-pick"); | |
326 | } | |
327 | ||
7b53b92f CC |
328 | static int do_recursive_merge(struct commit *base, struct commit *next, |
329 | const char *base_label, const char *next_label, | |
330 | unsigned char *head, struct strbuf *msgbuf) | |
ae8c79fd CC |
331 | { |
332 | struct merge_options o; | |
333 | struct tree *result, *next_tree, *base_tree, *head_tree; | |
334 | int clean, index_fd; | |
335 | static struct lock_file index_lock; | |
336 | ||
337 | index_fd = hold_locked_index(&index_lock, 1); | |
338 | ||
339 | read_cache(); | |
7610fa57 JN |
340 | |
341 | /* | |
342 | * NEEDSWORK: cherry-picking between branches with | |
343 | * different end-of-line normalization is a pain; | |
344 | * plumb in an option to set o.renormalize? | |
345 | * (or better: arbitrary -X options) | |
346 | */ | |
ae8c79fd CC |
347 | init_merge_options(&o); |
348 | o.ancestor = base ? base_label : "(empty tree)"; | |
349 | o.branch1 = "HEAD"; | |
350 | o.branch2 = next ? next_label : "(empty tree)"; | |
351 | ||
352 | head_tree = parse_tree_indirect(head); | |
353 | next_tree = next ? next->tree : empty_tree(); | |
354 | base_tree = base ? base->tree : empty_tree(); | |
355 | ||
356 | clean = merge_trees(&o, | |
357 | head_tree, | |
358 | next_tree, base_tree, &result); | |
359 | ||
360 | if (active_cache_changed && | |
361 | (write_cache(index_fd, active_cache, active_nr) || | |
362 | commit_locked_index(&index_lock))) | |
363 | die("%s: Unable to write new index file", me); | |
364 | rollback_lock_file(&index_lock); | |
365 | ||
366 | if (!clean) { | |
367 | int i; | |
368 | strbuf_addstr(msgbuf, "\nConflicts:\n\n"); | |
369 | for (i = 0; i < active_nr;) { | |
370 | struct cache_entry *ce = active_cache[i++]; | |
371 | if (ce_stage(ce)) { | |
372 | strbuf_addch(msgbuf, '\t'); | |
373 | strbuf_addstr(msgbuf, ce->name); | |
374 | strbuf_addch(msgbuf, '\n'); | |
375 | while (i < active_nr && !strcmp(ce->name, | |
376 | active_cache[i]->name)) | |
377 | i++; | |
378 | } | |
379 | } | |
ae8c79fd | 380 | } |
7b53b92f CC |
381 | |
382 | return !clean; | |
ae8c79fd CC |
383 | } |
384 | ||
5df16453 CC |
385 | /* |
386 | * If we are cherry-pick, and if the merge did not result in | |
387 | * hand-editing, we will hit this commit and inherit the original | |
388 | * author date and name. | |
389 | * If we are revert, or if our cherry-pick results in a hand merge, | |
390 | * we had better say that the current user is responsible for that. | |
391 | */ | |
392 | static int run_git_commit(const char *defmsg) | |
393 | { | |
394 | /* 6 is max possible length of our args array including NULL */ | |
395 | const char *args[6]; | |
396 | int i = 0; | |
397 | ||
398 | args[i++] = "commit"; | |
399 | args[i++] = "-n"; | |
400 | if (signoff) | |
401 | args[i++] = "-s"; | |
402 | if (!edit) { | |
403 | args[i++] = "-F"; | |
404 | args[i++] = defmsg; | |
405 | } | |
406 | args[i] = NULL; | |
407 | ||
408 | return run_command_v_opt(args, RUN_GIT_CMD); | |
ae8c79fd CC |
409 | } |
410 | ||
7af46595 | 411 | static int do_pick_commit(void) |
9509af68 JS |
412 | { |
413 | unsigned char head[20]; | |
7791ecbc | 414 | struct commit *base, *next, *parent; |
bf975d37 | 415 | const char *base_label, *next_label; |
d6856540 | 416 | struct commit_message msg = { NULL, NULL, NULL, NULL, NULL }; |
28db756f | 417 | char *defmsg = NULL; |
bc84a7fb | 418 | struct strbuf msgbuf = STRBUF_INIT; |
7b53b92f | 419 | int res; |
9509af68 | 420 | |
9509af68 JS |
421 | if (no_commit) { |
422 | /* | |
423 | * We do not intend to commit immediately. We just want to | |
71aa2b8f JH |
424 | * merge the differences in, so let's compute the tree |
425 | * that represents the "current" state for merge-recursive | |
426 | * to work on. | |
9509af68 | 427 | */ |
45525bd0 | 428 | if (write_cache_as_tree(head, 0, NULL)) |
9509af68 JS |
429 | die ("Your index file is unmerged."); |
430 | } else { | |
9509af68 JS |
431 | if (get_sha1("HEAD", head)) |
432 | die ("You do not have a valid HEAD"); | |
75f3ff2e | 433 | if (index_differs_from("HEAD", 0)) |
d38a30df | 434 | die_dirty_index(me); |
9509af68 | 435 | } |
6eb1b437 MV |
436 | discard_cache(); |
437 | ||
f95ebf74 JS |
438 | if (!commit->parents) { |
439 | if (action == REVERT) | |
440 | die ("Cannot revert a root commit"); | |
441 | parent = NULL; | |
442 | } | |
443 | else if (commit->parents->next) { | |
7791ecbc JH |
444 | /* Reverting or cherry-picking a merge commit */ |
445 | int cnt; | |
446 | struct commit_list *p; | |
447 | ||
448 | if (!mainline) | |
449 | die("Commit %s is a merge but no -m option was given.", | |
450 | sha1_to_hex(commit->object.sha1)); | |
451 | ||
452 | for (cnt = 1, p = commit->parents; | |
453 | cnt != mainline && p; | |
454 | cnt++) | |
455 | p = p->next; | |
456 | if (cnt != mainline || !p) | |
457 | die("Commit %s does not have parent %d", | |
458 | sha1_to_hex(commit->object.sha1), mainline); | |
459 | parent = p->item; | |
460 | } else if (0 < mainline) | |
461 | die("Mainline was specified but commit %s is not a merge.", | |
462 | sha1_to_hex(commit->object.sha1)); | |
463 | else | |
464 | parent = commit->parents->item; | |
465 | ||
6355e505 | 466 | if (allow_ff && parent && !hashcmp(parent->object.sha1, head)) |
c62f6ec3 JH |
467 | return fast_forward_to(commit->object.sha1, head); |
468 | ||
6eb1b437 MV |
469 | if (parent && parse_commit(parent) < 0) |
470 | die("%s: cannot parse parent commit %s", | |
471 | me, sha1_to_hex(parent->object.sha1)); | |
472 | ||
d6856540 JN |
473 | if (get_message(commit->buffer, &msg) != 0) |
474 | die("Cannot get commit message for %s", | |
475 | sha1_to_hex(commit->object.sha1)); | |
476 | ||
9509af68 JS |
477 | /* |
478 | * "commit" is an existing commit. We would want to apply | |
479 | * the difference it introduces since its first parent "prev" | |
480 | * on top of the current HEAD if we are cherry-pick. Or the | |
481 | * reverse of it if we are revert. | |
482 | */ | |
483 | ||
28db756f | 484 | defmsg = git_pathdup("MERGE_MSG"); |
c62f6ec3 | 485 | |
9509af68 JS |
486 | if (action == REVERT) { |
487 | base = commit; | |
bf975d37 | 488 | base_label = msg.label; |
7791ecbc | 489 | next = parent; |
d6856540 | 490 | next_label = msg.parent_label; |
bc84a7fb CC |
491 | strbuf_addstr(&msgbuf, "Revert \""); |
492 | strbuf_addstr(&msgbuf, msg.subject); | |
493 | strbuf_addstr(&msgbuf, "\"\n\nThis reverts commit "); | |
494 | strbuf_addstr(&msgbuf, sha1_to_hex(commit->object.sha1)); | |
d5be89d8 RR |
495 | |
496 | if (commit->parents->next) { | |
bc84a7fb CC |
497 | strbuf_addstr(&msgbuf, ", reversing\nchanges made to "); |
498 | strbuf_addstr(&msgbuf, sha1_to_hex(parent->object.sha1)); | |
d5be89d8 | 499 | } |
bc84a7fb | 500 | strbuf_addstr(&msgbuf, ".\n"); |
9509af68 | 501 | } else { |
7791ecbc | 502 | base = parent; |
bf975d37 | 503 | base_label = msg.parent_label; |
9509af68 | 504 | next = commit; |
d6856540 JN |
505 | next_label = msg.label; |
506 | set_author_ident_env(msg.message); | |
bc84a7fb | 507 | add_message_to_msg(&msgbuf, msg.message); |
f8103794 | 508 | if (no_replay) { |
bc84a7fb CC |
509 | strbuf_addstr(&msgbuf, "(cherry picked from commit "); |
510 | strbuf_addstr(&msgbuf, sha1_to_hex(commit->object.sha1)); | |
511 | strbuf_addstr(&msgbuf, ")\n"); | |
9509af68 | 512 | } |
d7e5c0cb JS |
513 | if (!no_commit) |
514 | write_cherry_pick_head(); | |
9509af68 | 515 | } |
9509af68 | 516 | |
7b53b92f CC |
517 | if (!strategy || !strcmp(strategy, "recursive") || action == REVERT) { |
518 | res = do_recursive_merge(base, next, base_label, next_label, | |
519 | head, &msgbuf); | |
520 | write_message(&msgbuf, defmsg); | |
521 | } else { | |
91e52598 CC |
522 | struct commit_list *common = NULL; |
523 | struct commit_list *remotes = NULL; | |
7b53b92f | 524 | |
91e52598 | 525 | write_message(&msgbuf, defmsg); |
7b53b92f | 526 | |
91e52598 CC |
527 | commit_list_insert(base, &common); |
528 | commit_list_insert(next, &remotes); | |
529 | res = try_merge_command(strategy, common, | |
530 | sha1_to_hex(head), remotes); | |
531 | free_commit_list(common); | |
532 | free_commit_list(remotes); | |
9509af68 | 533 | } |
9509af68 | 534 | |
7b53b92f | 535 | if (res) { |
981ff5c3 JN |
536 | error("could not %s %s... %s", |
537 | action == REVERT ? "revert" : "apply", | |
538 | find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV), | |
539 | msg.subject); | |
314eeb6e | 540 | print_advice(); |
7b53b92f CC |
541 | rerere(allow_rerere_auto); |
542 | } else { | |
3b2c5b6d CC |
543 | if (!no_commit) |
544 | res = run_git_commit(defmsg); | |
9509af68 | 545 | } |
2fb0e14f | 546 | |
2fb0e14f | 547 | free_message(&msg); |
d258b258 | 548 | free(defmsg); |
9509af68 | 549 | |
3b2c5b6d | 550 | return res; |
9509af68 JS |
551 | } |
552 | ||
7e2bfd3f CC |
553 | static void prepare_revs(struct rev_info *revs) |
554 | { | |
e0ef8495 | 555 | int argc; |
7e2bfd3f | 556 | |
e0ef8495 JN |
557 | init_revisions(revs, NULL); |
558 | revs->no_walk = 1; | |
7e2bfd3f | 559 | if (action != REVERT) |
e0ef8495 JN |
560 | revs->reverse = 1; |
561 | ||
562 | argc = setup_revisions(commit_argc, commit_argv, revs, NULL); | |
563 | if (argc > 1) | |
564 | usage(*revert_or_cherry_pick_usage()); | |
7e2bfd3f | 565 | |
7e2bfd3f CC |
566 | if (prepare_revision_walk(revs)) |
567 | die("revision walk setup failed"); | |
568 | ||
569 | if (!revs->commits) | |
570 | die("empty commit set passed"); | |
7e2bfd3f CC |
571 | } |
572 | ||
f6ce1f25 JN |
573 | static void read_and_refresh_cache(const char *me) |
574 | { | |
575 | static struct lock_file index_lock; | |
576 | int index_fd = hold_locked_index(&index_lock, 0); | |
577 | if (read_index_preload(&the_index, NULL) < 0) | |
578 | die("git %s: failed to read the index", me); | |
579 | refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL); | |
580 | if (the_index.cache_changed) { | |
581 | if (write_index(&the_index, index_fd) || | |
582 | commit_locked_index(&index_lock)) | |
583 | die("git %s: failed to refresh the index", me); | |
584 | } | |
585 | rollback_lock_file(&index_lock); | |
586 | } | |
587 | ||
7af46595 CC |
588 | static int revert_or_cherry_pick(int argc, const char **argv) |
589 | { | |
7e2bfd3f CC |
590 | struct rev_info revs; |
591 | ||
7af46595 CC |
592 | git_config(git_default_config, NULL); |
593 | me = action == REVERT ? "revert" : "cherry-pick"; | |
594 | setenv(GIT_REFLOG_ACTION, me, 0); | |
595 | parse_args(argc, argv); | |
596 | ||
597 | if (allow_ff) { | |
598 | if (signoff) | |
599 | die("cherry-pick --ff cannot be used with --signoff"); | |
600 | if (no_commit) | |
601 | die("cherry-pick --ff cannot be used with --no-commit"); | |
602 | if (no_replay) | |
603 | die("cherry-pick --ff cannot be used with -x"); | |
604 | if (edit) | |
605 | die("cherry-pick --ff cannot be used with --edit"); | |
606 | } | |
607 | ||
f6ce1f25 | 608 | read_and_refresh_cache(me); |
7af46595 | 609 | |
7e2bfd3f CC |
610 | prepare_revs(&revs); |
611 | ||
612 | while ((commit = get_revision(&revs))) { | |
613 | int res = do_pick_commit(); | |
614 | if (res) | |
615 | return res; | |
616 | } | |
617 | ||
618 | return 0; | |
7af46595 CC |
619 | } |
620 | ||
9509af68 JS |
621 | int cmd_revert(int argc, const char **argv, const char *prefix) |
622 | { | |
623 | if (isatty(0)) | |
624 | edit = 1; | |
625 | action = REVERT; | |
626 | return revert_or_cherry_pick(argc, argv); | |
627 | } | |
628 | ||
629 | int cmd_cherry_pick(int argc, const char **argv, const char *prefix) | |
630 | { | |
9509af68 JS |
631 | action = CHERRY_PICK; |
632 | return revert_or_cherry_pick(argc, argv); | |
633 | } |