7 #include "run-command.h"
10 #include "cache-tree.h"
14 #include "merge-recursive.h"
17 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
19 void remove_sequencer_state(void)
21 struct strbuf seq_dir
= STRBUF_INIT
;
23 strbuf_addf(&seq_dir
, "%s", git_path(SEQ_DIR
));
24 remove_dir_recursively(&seq_dir
, 0);
25 strbuf_release(&seq_dir
);
28 static const char *action_name(const struct replay_opts
*opts
)
30 return opts
->action
== REPLAY_REVERT
? "revert" : "cherry-pick";
33 static char *get_encoding(const char *message
);
35 struct commit_message
{
39 char *reencoded_message
;
43 static int get_message(struct commit
*commit
, struct commit_message
*out
)
46 const char *abbrev
, *subject
;
47 int abbrev_len
, subject_len
;
52 encoding
= get_encoding(commit
->buffer
);
55 if (!git_commit_encoding
)
56 git_commit_encoding
= "UTF-8";
58 out
->reencoded_message
= NULL
;
59 out
->message
= commit
->buffer
;
60 if (strcmp(encoding
, git_commit_encoding
))
61 out
->reencoded_message
= reencode_string(commit
->buffer
,
62 git_commit_encoding
, encoding
);
63 if (out
->reencoded_message
)
64 out
->message
= out
->reencoded_message
;
66 abbrev
= find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
);
67 abbrev_len
= strlen(abbrev
);
69 subject_len
= find_commit_subject(out
->message
, &subject
);
71 out
->parent_label
= xmalloc(strlen("parent of ") + abbrev_len
+
72 strlen("... ") + subject_len
+ 1);
73 q
= out
->parent_label
;
74 q
= mempcpy(q
, "parent of ", strlen("parent of "));
76 q
= mempcpy(q
, abbrev
, abbrev_len
);
77 q
= mempcpy(q
, "... ", strlen("... "));
79 q
= mempcpy(q
, subject
, subject_len
);
84 static void free_message(struct commit_message
*msg
)
86 free(msg
->parent_label
);
87 free(msg
->reencoded_message
);
90 static char *get_encoding(const char *message
)
92 const char *p
= message
, *eol
;
94 while (*p
&& *p
!= '\n') {
95 for (eol
= p
+ 1; *eol
&& *eol
!= '\n'; eol
++)
97 if (!prefixcmp(p
, "encoding ")) {
98 char *result
= xmalloc(eol
- 8 - p
);
99 strlcpy(result
, p
+ 9, eol
- 8 - p
);
109 static void write_cherry_pick_head(struct commit
*commit
, const char *pseudoref
)
111 const char *filename
;
113 struct strbuf buf
= STRBUF_INIT
;
115 strbuf_addf(&buf
, "%s\n", sha1_to_hex(commit
->object
.sha1
));
117 filename
= git_path("%s", pseudoref
);
118 fd
= open(filename
, O_WRONLY
| O_CREAT
, 0666);
120 die_errno(_("Could not open '%s' for writing"), filename
);
121 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
|| close(fd
))
122 die_errno(_("Could not write to '%s'"), filename
);
123 strbuf_release(&buf
);
126 static void print_advice(int show_hint
, struct replay_opts
*opts
)
128 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
131 fprintf(stderr
, "%s\n", msg
);
133 * A conflict has occured but the porcelain
134 * (typically rebase --interactive) wants to take care
135 * of the commit itself so remove CHERRY_PICK_HEAD
137 unlink(git_path("CHERRY_PICK_HEAD"));
143 advise(_("after resolving the conflicts, mark the corrected paths\n"
144 "with 'git add <paths>' or 'git rm <paths>'"));
146 advise(_("after resolving the conflicts, mark the corrected paths\n"
147 "with 'git add <paths>' or 'git rm <paths>'\n"
148 "and commit the result with 'git commit'"));
152 static void write_message(struct strbuf
*msgbuf
, const char *filename
)
154 static struct lock_file msg_file
;
156 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
,
158 if (write_in_full(msg_fd
, msgbuf
->buf
, msgbuf
->len
) < 0)
159 die_errno(_("Could not write to %s"), filename
);
160 strbuf_release(msgbuf
);
161 if (commit_lock_file(&msg_file
) < 0)
162 die(_("Error wrapping up %s"), filename
);
165 static struct tree
*empty_tree(void)
167 return lookup_tree(EMPTY_TREE_SHA1_BIN
);
170 static int error_dirty_index(struct replay_opts
*opts
)
172 if (read_cache_unmerged())
173 return error_resolve_conflict(action_name(opts
));
175 /* Different translation strings for cherry-pick and revert */
176 if (opts
->action
== REPLAY_PICK
)
177 error(_("Your local changes would be overwritten by cherry-pick."));
179 error(_("Your local changes would be overwritten by revert."));
181 if (advice_commit_before_merge
)
182 advise(_("Commit your changes or stash them to proceed."));
186 static int fast_forward_to(const unsigned char *to
, const unsigned char *from
)
188 struct ref_lock
*ref_lock
;
191 if (checkout_fast_forward(from
, to
))
192 exit(1); /* the callee should have complained already */
193 ref_lock
= lock_any_ref_for_update("HEAD", from
, 0);
194 return write_ref_sha1(ref_lock
, to
, "cherry-pick");
197 static int do_recursive_merge(struct commit
*base
, struct commit
*next
,
198 const char *base_label
, const char *next_label
,
199 unsigned char *head
, struct strbuf
*msgbuf
,
200 struct replay_opts
*opts
)
202 struct merge_options o
;
203 struct tree
*result
, *next_tree
, *base_tree
, *head_tree
;
206 static struct lock_file index_lock
;
208 index_fd
= hold_locked_index(&index_lock
, 1);
212 init_merge_options(&o
);
213 o
.ancestor
= base
? base_label
: "(empty tree)";
215 o
.branch2
= next
? next_label
: "(empty tree)";
217 head_tree
= parse_tree_indirect(head
);
218 next_tree
= next
? next
->tree
: empty_tree();
219 base_tree
= base
? base
->tree
: empty_tree();
221 for (xopt
= opts
->xopts
; xopt
!= opts
->xopts
+ opts
->xopts_nr
; xopt
++)
222 parse_merge_opt(&o
, *xopt
);
224 clean
= merge_trees(&o
,
226 next_tree
, base_tree
, &result
);
228 if (active_cache_changed
&&
229 (write_cache(index_fd
, active_cache
, active_nr
) ||
230 commit_locked_index(&index_lock
)))
231 /* TRANSLATORS: %s will be "revert" or "cherry-pick" */
232 die(_("%s: Unable to write new index file"), action_name(opts
));
233 rollback_lock_file(&index_lock
);
237 strbuf_addstr(msgbuf
, "\nConflicts:\n\n");
238 for (i
= 0; i
< active_nr
;) {
239 struct cache_entry
*ce
= active_cache
[i
++];
241 strbuf_addch(msgbuf
, '\t');
242 strbuf_addstr(msgbuf
, ce
->name
);
243 strbuf_addch(msgbuf
, '\n');
244 while (i
< active_nr
&& !strcmp(ce
->name
,
245 active_cache
[i
]->name
))
255 * If we are cherry-pick, and if the merge did not result in
256 * hand-editing, we will hit this commit and inherit the original
257 * author date and name.
258 * If we are revert, or if our cherry-pick results in a hand merge,
259 * we had better say that the current user is responsible for that.
261 static int run_git_commit(const char *defmsg
, struct replay_opts
*opts
)
263 /* 6 is max possible length of our args array including NULL */
267 args
[i
++] = "commit";
277 return run_command_v_opt(args
, RUN_GIT_CMD
);
280 static int do_pick_commit(struct commit
*commit
, struct replay_opts
*opts
)
282 unsigned char head
[20];
283 struct commit
*base
, *next
, *parent
;
284 const char *base_label
, *next_label
;
285 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
, NULL
};
287 struct strbuf msgbuf
= STRBUF_INIT
;
290 if (opts
->no_commit
) {
292 * We do not intend to commit immediately. We just want to
293 * merge the differences in, so let's compute the tree
294 * that represents the "current" state for merge-recursive
297 if (write_cache_as_tree(head
, 0, NULL
))
298 die (_("Your index file is unmerged."));
300 if (get_sha1("HEAD", head
))
301 return error(_("You do not have a valid HEAD"));
302 if (index_differs_from("HEAD", 0))
303 return error_dirty_index(opts
);
307 if (!commit
->parents
) {
310 else if (commit
->parents
->next
) {
311 /* Reverting or cherry-picking a merge commit */
313 struct commit_list
*p
;
316 return error(_("Commit %s is a merge but no -m option was given."),
317 sha1_to_hex(commit
->object
.sha1
));
319 for (cnt
= 1, p
= commit
->parents
;
320 cnt
!= opts
->mainline
&& p
;
323 if (cnt
!= opts
->mainline
|| !p
)
324 return error(_("Commit %s does not have parent %d"),
325 sha1_to_hex(commit
->object
.sha1
), opts
->mainline
);
327 } else if (0 < opts
->mainline
)
328 return error(_("Mainline was specified but commit %s is not a merge."),
329 sha1_to_hex(commit
->object
.sha1
));
331 parent
= commit
->parents
->item
;
333 if (opts
->allow_ff
&& parent
&& !hashcmp(parent
->object
.sha1
, head
))
334 return fast_forward_to(commit
->object
.sha1
, head
);
336 if (parent
&& parse_commit(parent
) < 0)
337 /* TRANSLATORS: The first %s will be "revert" or
338 "cherry-pick", the second %s a SHA1 */
339 return error(_("%s: cannot parse parent commit %s"),
340 action_name(opts
), sha1_to_hex(parent
->object
.sha1
));
342 if (get_message(commit
, &msg
) != 0)
343 return error(_("Cannot get commit message for %s"),
344 sha1_to_hex(commit
->object
.sha1
));
347 * "commit" is an existing commit. We would want to apply
348 * the difference it introduces since its first parent "prev"
349 * on top of the current HEAD if we are cherry-pick. Or the
350 * reverse of it if we are revert.
353 defmsg
= git_pathdup("MERGE_MSG");
355 if (opts
->action
== REPLAY_REVERT
) {
357 base_label
= msg
.label
;
359 next_label
= msg
.parent_label
;
360 strbuf_addstr(&msgbuf
, "Revert \"");
361 strbuf_addstr(&msgbuf
, msg
.subject
);
362 strbuf_addstr(&msgbuf
, "\"\n\nThis reverts commit ");
363 strbuf_addstr(&msgbuf
, sha1_to_hex(commit
->object
.sha1
));
365 if (commit
->parents
&& commit
->parents
->next
) {
366 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
367 strbuf_addstr(&msgbuf
, sha1_to_hex(parent
->object
.sha1
));
369 strbuf_addstr(&msgbuf
, ".\n");
374 base_label
= msg
.parent_label
;
376 next_label
= msg
.label
;
379 * Append the commit log message to msgbuf; it starts
380 * after the tree, parent, author, committer
381 * information followed by "\n\n".
383 p
= strstr(msg
.message
, "\n\n");
386 strbuf_addstr(&msgbuf
, p
);
389 if (opts
->record_origin
) {
390 strbuf_addstr(&msgbuf
, "(cherry picked from commit ");
391 strbuf_addstr(&msgbuf
, sha1_to_hex(commit
->object
.sha1
));
392 strbuf_addstr(&msgbuf
, ")\n");
396 if (!opts
->strategy
|| !strcmp(opts
->strategy
, "recursive") || opts
->action
== REPLAY_REVERT
) {
397 res
= do_recursive_merge(base
, next
, base_label
, next_label
,
398 head
, &msgbuf
, opts
);
399 write_message(&msgbuf
, defmsg
);
401 struct commit_list
*common
= NULL
;
402 struct commit_list
*remotes
= NULL
;
404 write_message(&msgbuf
, defmsg
);
406 commit_list_insert(base
, &common
);
407 commit_list_insert(next
, &remotes
);
408 res
= try_merge_command(opts
->strategy
, opts
->xopts_nr
, opts
->xopts
,
409 common
, sha1_to_hex(head
), remotes
);
410 free_commit_list(common
);
411 free_commit_list(remotes
);
415 * If the merge was clean or if it failed due to conflict, we write
416 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
417 * However, if the merge did not even start, then we don't want to
420 if (opts
->action
== REPLAY_PICK
&& !opts
->no_commit
&& (res
== 0 || res
== 1))
421 write_cherry_pick_head(commit
, "CHERRY_PICK_HEAD");
422 if (opts
->action
== REPLAY_REVERT
&& ((opts
->no_commit
&& res
== 0) || res
== 1))
423 write_cherry_pick_head(commit
, "REVERT_HEAD");
426 error(opts
->action
== REPLAY_REVERT
427 ? _("could not revert %s... %s")
428 : _("could not apply %s... %s"),
429 find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
),
431 print_advice(res
== 1, opts
);
432 rerere(opts
->allow_rerere_auto
);
434 if (!opts
->no_commit
)
435 res
= run_git_commit(defmsg
, opts
);
444 static void prepare_revs(struct replay_opts
*opts
)
446 if (opts
->action
!= REPLAY_REVERT
)
447 opts
->revs
->reverse
^= 1;
449 if (prepare_revision_walk(opts
->revs
))
450 die(_("revision walk setup failed"));
452 if (!opts
->revs
->commits
)
453 die(_("empty commit set passed"));
456 static void read_and_refresh_cache(struct replay_opts
*opts
)
458 static struct lock_file index_lock
;
459 int index_fd
= hold_locked_index(&index_lock
, 0);
460 if (read_index_preload(&the_index
, NULL
) < 0)
461 die(_("git %s: failed to read the index"), action_name(opts
));
462 refresh_index(&the_index
, REFRESH_QUIET
|REFRESH_UNMERGED
, NULL
, NULL
, NULL
);
463 if (the_index
.cache_changed
) {
464 if (write_index(&the_index
, index_fd
) ||
465 commit_locked_index(&index_lock
))
466 die(_("git %s: failed to refresh the index"), action_name(opts
));
468 rollback_lock_file(&index_lock
);
471 static int format_todo(struct strbuf
*buf
, struct commit_list
*todo_list
,
472 struct replay_opts
*opts
)
474 struct commit_list
*cur
= NULL
;
475 const char *sha1_abbrev
= NULL
;
476 const char *action_str
= opts
->action
== REPLAY_REVERT
? "revert" : "pick";
480 for (cur
= todo_list
; cur
; cur
= cur
->next
) {
481 sha1_abbrev
= find_unique_abbrev(cur
->item
->object
.sha1
, DEFAULT_ABBREV
);
482 subject_len
= find_commit_subject(cur
->item
->buffer
, &subject
);
483 strbuf_addf(buf
, "%s %s %.*s\n", action_str
, sha1_abbrev
,
484 subject_len
, subject
);
489 static struct commit
*parse_insn_line(char *bol
, char *eol
, struct replay_opts
*opts
)
491 unsigned char commit_sha1
[20];
492 enum replay_action action
;
493 char *end_of_object_name
;
494 int saved
, status
, padding
;
496 if (!prefixcmp(bol
, "pick")) {
497 action
= REPLAY_PICK
;
498 bol
+= strlen("pick");
499 } else if (!prefixcmp(bol
, "revert")) {
500 action
= REPLAY_REVERT
;
501 bol
+= strlen("revert");
505 /* Eat up extra spaces/ tabs before object name */
506 padding
= strspn(bol
, " \t");
511 end_of_object_name
= bol
+ strcspn(bol
, " \t\n");
512 saved
= *end_of_object_name
;
513 *end_of_object_name
= '\0';
514 status
= get_sha1(bol
, commit_sha1
);
515 *end_of_object_name
= saved
;
518 * Verify that the action matches up with the one in
519 * opts; we don't support arbitrary instructions
521 if (action
!= opts
->action
) {
522 const char *action_str
;
523 action_str
= action
== REPLAY_REVERT
? "revert" : "cherry-pick";
524 error(_("Cannot %s during a %s"), action_str
, action_name(opts
));
531 return lookup_commit_reference(commit_sha1
);
534 static int parse_insn_buffer(char *buf
, struct commit_list
**todo_list
,
535 struct replay_opts
*opts
)
537 struct commit_list
**next
= todo_list
;
538 struct commit
*commit
;
542 for (i
= 1; *p
; i
++) {
543 char *eol
= strchrnul(p
, '\n');
544 commit
= parse_insn_line(p
, eol
, opts
);
546 return error(_("Could not parse line %d."), i
);
547 next
= commit_list_append(commit
, next
);
548 p
= *eol
? eol
+ 1 : eol
;
551 return error(_("No commits parsed."));
555 static void read_populate_todo(struct commit_list
**todo_list
,
556 struct replay_opts
*opts
)
558 const char *todo_file
= git_path(SEQ_TODO_FILE
);
559 struct strbuf buf
= STRBUF_INIT
;
562 fd
= open(todo_file
, O_RDONLY
);
564 die_errno(_("Could not open %s"), todo_file
);
565 if (strbuf_read(&buf
, fd
, 0) < 0) {
567 strbuf_release(&buf
);
568 die(_("Could not read %s."), todo_file
);
572 res
= parse_insn_buffer(buf
.buf
, todo_list
, opts
);
573 strbuf_release(&buf
);
575 die(_("Unusable instruction sheet: %s"), todo_file
);
578 static int populate_opts_cb(const char *key
, const char *value
, void *data
)
580 struct replay_opts
*opts
= data
;
585 else if (!strcmp(key
, "options.no-commit"))
586 opts
->no_commit
= git_config_bool_or_int(key
, value
, &error_flag
);
587 else if (!strcmp(key
, "options.edit"))
588 opts
->edit
= git_config_bool_or_int(key
, value
, &error_flag
);
589 else if (!strcmp(key
, "options.signoff"))
590 opts
->signoff
= git_config_bool_or_int(key
, value
, &error_flag
);
591 else if (!strcmp(key
, "options.record-origin"))
592 opts
->record_origin
= git_config_bool_or_int(key
, value
, &error_flag
);
593 else if (!strcmp(key
, "options.allow-ff"))
594 opts
->allow_ff
= git_config_bool_or_int(key
, value
, &error_flag
);
595 else if (!strcmp(key
, "options.mainline"))
596 opts
->mainline
= git_config_int(key
, value
);
597 else if (!strcmp(key
, "options.strategy"))
598 git_config_string(&opts
->strategy
, key
, value
);
599 else if (!strcmp(key
, "options.strategy-option")) {
600 ALLOC_GROW(opts
->xopts
, opts
->xopts_nr
+ 1, opts
->xopts_alloc
);
601 opts
->xopts
[opts
->xopts_nr
++] = xstrdup(value
);
603 return error(_("Invalid key: %s"), key
);
606 return error(_("Invalid value for %s: %s"), key
, value
);
611 static void read_populate_opts(struct replay_opts
**opts_ptr
)
613 const char *opts_file
= git_path(SEQ_OPTS_FILE
);
615 if (!file_exists(opts_file
))
617 if (git_config_from_file(populate_opts_cb
, opts_file
, *opts_ptr
) < 0)
618 die(_("Malformed options sheet: %s"), opts_file
);
621 static void walk_revs_populate_todo(struct commit_list
**todo_list
,
622 struct replay_opts
*opts
)
624 struct commit
*commit
;
625 struct commit_list
**next
;
630 while ((commit
= get_revision(opts
->revs
)))
631 next
= commit_list_append(commit
, next
);
634 static int create_seq_dir(void)
636 const char *seq_dir
= git_path(SEQ_DIR
);
638 if (file_exists(seq_dir
)) {
639 error(_("a cherry-pick or revert is already in progress"));
640 advise(_("try \"git cherry-pick (--continue | --quit | --abort)\""));
643 else if (mkdir(seq_dir
, 0777) < 0)
644 die_errno(_("Could not create sequencer directory %s"), seq_dir
);
648 static void save_head(const char *head
)
650 const char *head_file
= git_path(SEQ_HEAD_FILE
);
651 static struct lock_file head_lock
;
652 struct strbuf buf
= STRBUF_INIT
;
655 fd
= hold_lock_file_for_update(&head_lock
, head_file
, LOCK_DIE_ON_ERROR
);
656 strbuf_addf(&buf
, "%s\n", head
);
657 if (write_in_full(fd
, buf
.buf
, buf
.len
) < 0)
658 die_errno(_("Could not write to %s"), head_file
);
659 if (commit_lock_file(&head_lock
) < 0)
660 die(_("Error wrapping up %s."), head_file
);
663 static int reset_for_rollback(const unsigned char *sha1
)
665 const char *argv
[4]; /* reset --merge <arg> + NULL */
668 argv
[2] = sha1_to_hex(sha1
);
670 return run_command_v_opt(argv
, RUN_GIT_CMD
);
673 static int rollback_single_pick(void)
675 unsigned char head_sha1
[20];
677 if (!file_exists(git_path("CHERRY_PICK_HEAD")) &&
678 !file_exists(git_path("REVERT_HEAD")))
679 return error(_("no cherry-pick or revert in progress"));
680 if (read_ref_full("HEAD", head_sha1
, 0, NULL
))
681 return error(_("cannot resolve HEAD"));
682 if (is_null_sha1(head_sha1
))
683 return error(_("cannot abort from a branch yet to be born"));
684 return reset_for_rollback(head_sha1
);
687 static int sequencer_rollback(struct replay_opts
*opts
)
689 const char *filename
;
691 unsigned char sha1
[20];
692 struct strbuf buf
= STRBUF_INIT
;
694 filename
= git_path(SEQ_HEAD_FILE
);
695 f
= fopen(filename
, "r");
696 if (!f
&& errno
== ENOENT
) {
698 * There is no multiple-cherry-pick in progress.
699 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
700 * a single-cherry-pick in progress, abort that.
702 return rollback_single_pick();
705 return error(_("cannot open %s: %s"), filename
,
707 if (strbuf_getline(&buf
, f
, '\n')) {
708 error(_("cannot read %s: %s"), filename
, ferror(f
) ?
709 strerror(errno
) : _("unexpected end of file"));
714 if (get_sha1_hex(buf
.buf
, sha1
) || buf
.buf
[40] != '\0') {
715 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
719 if (reset_for_rollback(sha1
))
721 remove_sequencer_state();
722 strbuf_release(&buf
);
725 strbuf_release(&buf
);
729 static void save_todo(struct commit_list
*todo_list
, struct replay_opts
*opts
)
731 const char *todo_file
= git_path(SEQ_TODO_FILE
);
732 static struct lock_file todo_lock
;
733 struct strbuf buf
= STRBUF_INIT
;
736 fd
= hold_lock_file_for_update(&todo_lock
, todo_file
, LOCK_DIE_ON_ERROR
);
737 if (format_todo(&buf
, todo_list
, opts
) < 0)
738 die(_("Could not format %s."), todo_file
);
739 if (write_in_full(fd
, buf
.buf
, buf
.len
) < 0) {
740 strbuf_release(&buf
);
741 die_errno(_("Could not write to %s"), todo_file
);
743 if (commit_lock_file(&todo_lock
) < 0) {
744 strbuf_release(&buf
);
745 die(_("Error wrapping up %s."), todo_file
);
747 strbuf_release(&buf
);
750 static void save_opts(struct replay_opts
*opts
)
752 const char *opts_file
= git_path(SEQ_OPTS_FILE
);
755 git_config_set_in_file(opts_file
, "options.no-commit", "true");
757 git_config_set_in_file(opts_file
, "options.edit", "true");
759 git_config_set_in_file(opts_file
, "options.signoff", "true");
760 if (opts
->record_origin
)
761 git_config_set_in_file(opts_file
, "options.record-origin", "true");
763 git_config_set_in_file(opts_file
, "options.allow-ff", "true");
764 if (opts
->mainline
) {
765 struct strbuf buf
= STRBUF_INIT
;
766 strbuf_addf(&buf
, "%d", opts
->mainline
);
767 git_config_set_in_file(opts_file
, "options.mainline", buf
.buf
);
768 strbuf_release(&buf
);
771 git_config_set_in_file(opts_file
, "options.strategy", opts
->strategy
);
774 for (i
= 0; i
< opts
->xopts_nr
; i
++)
775 git_config_set_multivar_in_file(opts_file
,
776 "options.strategy-option",
777 opts
->xopts
[i
], "^$", 0);
781 static int pick_commits(struct commit_list
*todo_list
, struct replay_opts
*opts
)
783 struct commit_list
*cur
;
786 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
788 assert(!(opts
->signoff
|| opts
->no_commit
||
789 opts
->record_origin
|| opts
->edit
));
790 read_and_refresh_cache(opts
);
792 for (cur
= todo_list
; cur
; cur
= cur
->next
) {
793 save_todo(cur
, opts
);
794 res
= do_pick_commit(cur
->item
, opts
);
800 * Sequence of picks finished successfully; cleanup by
801 * removing the .git/sequencer directory
803 remove_sequencer_state();
807 static int continue_single_pick(void)
809 const char *argv
[] = { "commit", NULL
};
811 if (!file_exists(git_path("CHERRY_PICK_HEAD")) &&
812 !file_exists(git_path("REVERT_HEAD")))
813 return error(_("no cherry-pick or revert in progress"));
814 return run_command_v_opt(argv
, RUN_GIT_CMD
);
817 static int sequencer_continue(struct replay_opts
*opts
)
819 struct commit_list
*todo_list
= NULL
;
821 if (!file_exists(git_path(SEQ_TODO_FILE
)))
822 return continue_single_pick();
823 read_populate_opts(&opts
);
824 read_populate_todo(&todo_list
, opts
);
826 /* Verify that the conflict has been resolved */
827 if (file_exists(git_path("CHERRY_PICK_HEAD")) ||
828 file_exists(git_path("REVERT_HEAD"))) {
829 int ret
= continue_single_pick();
833 if (index_differs_from("HEAD", 0))
834 return error_dirty_index(opts
);
835 todo_list
= todo_list
->next
;
836 return pick_commits(todo_list
, opts
);
839 static int single_pick(struct commit
*cmit
, struct replay_opts
*opts
)
841 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
842 return do_pick_commit(cmit
, opts
);
845 int sequencer_pick_revisions(struct replay_opts
*opts
)
847 struct commit_list
*todo_list
= NULL
;
848 unsigned char sha1
[20];
850 if (opts
->subcommand
== REPLAY_NONE
)
853 read_and_refresh_cache(opts
);
856 * Decide what to do depending on the arguments; a fresh
857 * cherry-pick should be handled differently from an existing
858 * one that is being continued
860 if (opts
->subcommand
== REPLAY_REMOVE_STATE
) {
861 remove_sequencer_state();
864 if (opts
->subcommand
== REPLAY_ROLLBACK
)
865 return sequencer_rollback(opts
);
866 if (opts
->subcommand
== REPLAY_CONTINUE
)
867 return sequencer_continue(opts
);
870 * If we were called as "git cherry-pick <commit>", just
871 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
872 * REVERT_HEAD, and don't touch the sequencer state.
873 * This means it is possible to cherry-pick in the middle
874 * of a cherry-pick sequence.
876 if (opts
->revs
->cmdline
.nr
== 1 &&
877 opts
->revs
->cmdline
.rev
->whence
== REV_CMD_REV
&&
878 opts
->revs
->no_walk
&&
879 !opts
->revs
->cmdline
.rev
->flags
) {
881 if (prepare_revision_walk(opts
->revs
))
882 die(_("revision walk setup failed"));
883 cmit
= get_revision(opts
->revs
);
884 if (!cmit
|| get_revision(opts
->revs
))
885 die("BUG: expected exactly one commit from walk");
886 return single_pick(cmit
, opts
);
890 * Start a new cherry-pick/ revert sequence; but
891 * first, make sure that an existing one isn't in
895 walk_revs_populate_todo(&todo_list
, opts
);
896 if (create_seq_dir() < 0)
898 if (get_sha1("HEAD", sha1
)) {
899 if (opts
->action
== REPLAY_REVERT
)
900 return error(_("Can't revert as initial commit"));
901 return error(_("Can't cherry-pick into empty head"));
903 save_head(sha1_to_hex(sha1
));
905 return pick_commits(todo_list
, opts
);