8 #include "run-command.h"
11 #include "cache-tree.h"
15 #include "merge-recursive.h"
17 #include "argv-array.h"
19 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
21 const char sign_off_header
[] = "Signed-off-by: ";
22 static const char cherry_picked_prefix
[] = "(cherry picked from commit ";
24 static int is_rfc2822_line(const char *buf
, int len
)
28 for (i
= 0; i
< len
; i
++) {
32 if (!isalnum(ch
) && ch
!= '-')
39 static int is_cherry_picked_from_line(const char *buf
, int len
)
42 * We only care that it looks roughly like (cherry picked from ...)
44 return len
> strlen(cherry_picked_prefix
) + 1 &&
45 starts_with(buf
, cherry_picked_prefix
) && buf
[len
- 1] == ')';
49 * Returns 0 for non-conforming footer
50 * Returns 1 for conforming footer
51 * Returns 2 when sob exists within conforming footer
52 * Returns 3 when sob exists within conforming footer as last entry
54 static int has_conforming_footer(struct strbuf
*sb
, struct strbuf
*sob
,
59 int len
= sb
->len
- ignore_footer
;
60 const char *buf
= sb
->buf
;
63 /* footer must end with newline */
64 if (!len
|| buf
[len
- 1] != '\n')
68 for (i
= len
- 1; i
> 0; i
--) {
70 if (prev
== '\n' && ch
== '\n') /* paragraph break */
75 /* require at least one blank line */
76 if (prev
!= '\n' || buf
[i
] != '\n')
79 /* advance to start of last paragraph */
80 while (i
< len
- 1 && buf
[i
] == '\n')
83 for (; i
< len
; i
= k
) {
86 for (k
= i
; k
< len
&& buf
[k
] != '\n'; k
++)
90 found_rfc2822
= is_rfc2822_line(buf
+ i
, k
- i
- 1);
91 if (found_rfc2822
&& sob
&&
92 !strncmp(buf
+ i
, sob
->buf
, sob
->len
))
95 if (!(found_rfc2822
||
96 is_cherry_picked_from_line(buf
+ i
, k
- i
- 1)))
106 static void remove_sequencer_state(void)
108 struct strbuf seq_dir
= STRBUF_INIT
;
110 strbuf_addf(&seq_dir
, "%s", git_path(SEQ_DIR
));
111 remove_dir_recursively(&seq_dir
, 0);
112 strbuf_release(&seq_dir
);
115 static const char *action_name(const struct replay_opts
*opts
)
117 return opts
->action
== REPLAY_REVERT
? "revert" : "cherry-pick";
120 struct commit_message
{
127 static int get_message(struct commit
*commit
, struct commit_message
*out
)
129 const char *abbrev
, *subject
;
130 int abbrev_len
, subject_len
;
133 if (!git_commit_encoding
)
134 git_commit_encoding
= "UTF-8";
136 out
->message
= logmsg_reencode(commit
, NULL
, git_commit_encoding
);
137 abbrev
= find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
);
138 abbrev_len
= strlen(abbrev
);
140 subject_len
= find_commit_subject(out
->message
, &subject
);
142 out
->parent_label
= xmalloc(strlen("parent of ") + abbrev_len
+
143 strlen("... ") + subject_len
+ 1);
144 q
= out
->parent_label
;
145 q
= mempcpy(q
, "parent of ", strlen("parent of "));
147 q
= mempcpy(q
, abbrev
, abbrev_len
);
148 q
= mempcpy(q
, "... ", strlen("... "));
150 q
= mempcpy(q
, subject
, subject_len
);
155 static void free_message(struct commit
*commit
, struct commit_message
*msg
)
157 free(msg
->parent_label
);
158 unuse_commit_buffer(commit
, msg
->message
);
161 static void write_cherry_pick_head(struct commit
*commit
, const char *pseudoref
)
163 const char *filename
;
165 struct strbuf buf
= STRBUF_INIT
;
167 strbuf_addf(&buf
, "%s\n", sha1_to_hex(commit
->object
.sha1
));
169 filename
= git_path("%s", pseudoref
);
170 fd
= open(filename
, O_WRONLY
| O_CREAT
, 0666);
172 die_errno(_("Could not open '%s' for writing"), filename
);
173 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
|| close(fd
))
174 die_errno(_("Could not write to '%s'"), filename
);
175 strbuf_release(&buf
);
178 static void print_advice(int show_hint
, struct replay_opts
*opts
)
180 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
183 fprintf(stderr
, "%s\n", msg
);
185 * A conflict has occurred but the porcelain
186 * (typically rebase --interactive) wants to take care
187 * of the commit itself so remove CHERRY_PICK_HEAD
189 unlink(git_path("CHERRY_PICK_HEAD"));
195 advise(_("after resolving the conflicts, mark the corrected paths\n"
196 "with 'git add <paths>' or 'git rm <paths>'"));
198 advise(_("after resolving the conflicts, mark the corrected paths\n"
199 "with 'git add <paths>' or 'git rm <paths>'\n"
200 "and commit the result with 'git commit'"));
204 static void write_message(struct strbuf
*msgbuf
, const char *filename
)
206 static struct lock_file msg_file
;
208 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
,
210 if (write_in_full(msg_fd
, msgbuf
->buf
, msgbuf
->len
) < 0)
211 die_errno(_("Could not write to %s"), filename
);
212 strbuf_release(msgbuf
);
213 if (commit_lock_file(&msg_file
) < 0)
214 die(_("Error wrapping up %s"), filename
);
217 static struct tree
*empty_tree(void)
219 return lookup_tree(EMPTY_TREE_SHA1_BIN
);
222 static int error_dirty_index(struct replay_opts
*opts
)
224 if (read_cache_unmerged())
225 return error_resolve_conflict(action_name(opts
));
227 /* Different translation strings for cherry-pick and revert */
228 if (opts
->action
== REPLAY_PICK
)
229 error(_("Your local changes would be overwritten by cherry-pick."));
231 error(_("Your local changes would be overwritten by revert."));
233 if (advice_commit_before_merge
)
234 advise(_("Commit your changes or stash them to proceed."));
238 static int fast_forward_to(const unsigned char *to
, const unsigned char *from
,
239 int unborn
, struct replay_opts
*opts
)
241 struct ref_transaction
*transaction
;
242 struct strbuf sb
= STRBUF_INIT
;
243 struct strbuf err
= STRBUF_INIT
;
246 if (checkout_fast_forward(from
, to
, 1))
247 exit(128); /* the callee should have complained already */
249 strbuf_addf(&sb
, "%s: fast-forward", action_name(opts
));
251 transaction
= ref_transaction_begin(&err
);
253 ref_transaction_update(transaction
, "HEAD",
254 to
, unborn
? null_sha1
: from
,
256 ref_transaction_commit(transaction
, &err
)) {
257 ref_transaction_free(transaction
);
258 error("%s", err
.buf
);
260 strbuf_release(&err
);
265 strbuf_release(&err
);
266 ref_transaction_free(transaction
);
270 void append_conflicts_hint(struct strbuf
*msgbuf
)
274 strbuf_addch(msgbuf
, '\n');
275 strbuf_commented_addf(msgbuf
, "Conflicts:\n");
276 for (i
= 0; i
< active_nr
;) {
277 const struct cache_entry
*ce
= active_cache
[i
++];
279 strbuf_commented_addf(msgbuf
, "\t%s\n", ce
->name
);
280 while (i
< active_nr
&& !strcmp(ce
->name
,
281 active_cache
[i
]->name
))
287 static int do_recursive_merge(struct commit
*base
, struct commit
*next
,
288 const char *base_label
, const char *next_label
,
289 unsigned char *head
, struct strbuf
*msgbuf
,
290 struct replay_opts
*opts
)
292 struct merge_options o
;
293 struct tree
*result
, *next_tree
, *base_tree
, *head_tree
;
296 static struct lock_file index_lock
;
298 hold_locked_index(&index_lock
, 1);
302 init_merge_options(&o
);
303 o
.ancestor
= base
? base_label
: "(empty tree)";
305 o
.branch2
= next
? next_label
: "(empty tree)";
307 head_tree
= parse_tree_indirect(head
);
308 next_tree
= next
? next
->tree
: empty_tree();
309 base_tree
= base
? base
->tree
: empty_tree();
311 for (xopt
= opts
->xopts
; xopt
!= opts
->xopts
+ opts
->xopts_nr
; xopt
++)
312 parse_merge_opt(&o
, *xopt
);
314 clean
= merge_trees(&o
,
316 next_tree
, base_tree
, &result
);
318 if (active_cache_changed
&&
319 write_locked_index(&the_index
, &index_lock
, COMMIT_LOCK
))
320 /* TRANSLATORS: %s will be "revert" or "cherry-pick" */
321 die(_("%s: Unable to write new index file"), action_name(opts
));
322 rollback_lock_file(&index_lock
);
325 append_signoff(msgbuf
, 0, 0);
328 append_conflicts_hint(msgbuf
);
333 static int is_index_unchanged(void)
335 unsigned char head_sha1
[20];
336 struct commit
*head_commit
;
338 if (!resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
, head_sha1
, NULL
))
339 return error(_("Could not resolve HEAD commit\n"));
341 head_commit
= lookup_commit(head_sha1
);
344 * If head_commit is NULL, check_commit, called from
345 * lookup_commit, would have indicated that head_commit is not
346 * a commit object already. parse_commit() will return failure
347 * without further complaints in such a case. Otherwise, if
348 * the commit is invalid, parse_commit() will complain. So
349 * there is nothing for us to say here. Just return failure.
351 if (parse_commit(head_commit
))
354 if (!active_cache_tree
)
355 active_cache_tree
= cache_tree();
357 if (!cache_tree_fully_valid(active_cache_tree
))
358 if (cache_tree_update(&the_index
, 0))
359 return error(_("Unable to update cache tree\n"));
361 return !hashcmp(active_cache_tree
->sha1
, head_commit
->tree
->object
.sha1
);
365 * If we are cherry-pick, and if the merge did not result in
366 * hand-editing, we will hit this commit and inherit the original
367 * author date and name.
368 * If we are revert, or if our cherry-pick results in a hand merge,
369 * we had better say that the current user is responsible for that.
371 static int run_git_commit(const char *defmsg
, struct replay_opts
*opts
,
374 struct argv_array array
;
377 argv_array_init(&array
);
378 argv_array_push(&array
, "commit");
379 argv_array_push(&array
, "-n");
382 argv_array_pushf(&array
, "-S%s", opts
->gpg_sign
);
384 argv_array_push(&array
, "-s");
386 argv_array_push(&array
, "-F");
387 argv_array_push(&array
, defmsg
);
391 argv_array_push(&array
, "--allow-empty");
393 if (opts
->allow_empty_message
)
394 argv_array_push(&array
, "--allow-empty-message");
396 rc
= run_command_v_opt(array
.argv
, RUN_GIT_CMD
);
397 argv_array_clear(&array
);
401 static int is_original_commit_empty(struct commit
*commit
)
403 const unsigned char *ptree_sha1
;
405 if (parse_commit(commit
))
406 return error(_("Could not parse commit %s\n"),
407 sha1_to_hex(commit
->object
.sha1
));
408 if (commit
->parents
) {
409 struct commit
*parent
= commit
->parents
->item
;
410 if (parse_commit(parent
))
411 return error(_("Could not parse parent commit %s\n"),
412 sha1_to_hex(parent
->object
.sha1
));
413 ptree_sha1
= parent
->tree
->object
.sha1
;
415 ptree_sha1
= EMPTY_TREE_SHA1_BIN
; /* commit is root */
418 return !hashcmp(ptree_sha1
, commit
->tree
->object
.sha1
);
422 * Do we run "git commit" with "--allow-empty"?
424 static int allow_empty(struct replay_opts
*opts
, struct commit
*commit
)
426 int index_unchanged
, empty_commit
;
431 * (1) we do not allow empty at all and error out.
433 * (2) we allow ones that were initially empty, but
434 * forbid the ones that become empty;
438 if (!opts
->allow_empty
)
439 return 0; /* let "git commit" barf as necessary */
441 index_unchanged
= is_index_unchanged();
442 if (index_unchanged
< 0)
443 return index_unchanged
;
444 if (!index_unchanged
)
445 return 0; /* we do not have to say --allow-empty */
447 if (opts
->keep_redundant_commits
)
450 empty_commit
= is_original_commit_empty(commit
);
451 if (empty_commit
< 0)
459 static int do_pick_commit(struct commit
*commit
, struct replay_opts
*opts
)
461 unsigned char head
[20];
462 struct commit
*base
, *next
, *parent
;
463 const char *base_label
, *next_label
;
464 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
};
466 struct strbuf msgbuf
= STRBUF_INIT
;
467 int res
, unborn
= 0, allow
;
469 if (opts
->no_commit
) {
471 * We do not intend to commit immediately. We just want to
472 * merge the differences in, so let's compute the tree
473 * that represents the "current" state for merge-recursive
476 if (write_cache_as_tree(head
, 0, NULL
))
477 die (_("Your index file is unmerged."));
479 unborn
= get_sha1("HEAD", head
);
481 hashcpy(head
, EMPTY_TREE_SHA1_BIN
);
482 if (index_differs_from(unborn
? EMPTY_TREE_SHA1_HEX
: "HEAD", 0))
483 return error_dirty_index(opts
);
487 if (!commit
->parents
) {
490 else if (commit
->parents
->next
) {
491 /* Reverting or cherry-picking a merge commit */
493 struct commit_list
*p
;
496 return error(_("Commit %s is a merge but no -m option was given."),
497 sha1_to_hex(commit
->object
.sha1
));
499 for (cnt
= 1, p
= commit
->parents
;
500 cnt
!= opts
->mainline
&& p
;
503 if (cnt
!= opts
->mainline
|| !p
)
504 return error(_("Commit %s does not have parent %d"),
505 sha1_to_hex(commit
->object
.sha1
), opts
->mainline
);
507 } else if (0 < opts
->mainline
)
508 return error(_("Mainline was specified but commit %s is not a merge."),
509 sha1_to_hex(commit
->object
.sha1
));
511 parent
= commit
->parents
->item
;
513 if (opts
->allow_ff
&&
514 ((parent
&& !hashcmp(parent
->object
.sha1
, head
)) ||
515 (!parent
&& unborn
)))
516 return fast_forward_to(commit
->object
.sha1
, head
, unborn
, opts
);
518 if (parent
&& parse_commit(parent
) < 0)
519 /* TRANSLATORS: The first %s will be "revert" or
520 "cherry-pick", the second %s a SHA1 */
521 return error(_("%s: cannot parse parent commit %s"),
522 action_name(opts
), sha1_to_hex(parent
->object
.sha1
));
524 if (get_message(commit
, &msg
) != 0)
525 return error(_("Cannot get commit message for %s"),
526 sha1_to_hex(commit
->object
.sha1
));
529 * "commit" is an existing commit. We would want to apply
530 * the difference it introduces since its first parent "prev"
531 * on top of the current HEAD if we are cherry-pick. Or the
532 * reverse of it if we are revert.
535 defmsg
= git_pathdup("MERGE_MSG");
537 if (opts
->action
== REPLAY_REVERT
) {
539 base_label
= msg
.label
;
541 next_label
= msg
.parent_label
;
542 strbuf_addstr(&msgbuf
, "Revert \"");
543 strbuf_addstr(&msgbuf
, msg
.subject
);
544 strbuf_addstr(&msgbuf
, "\"\n\nThis reverts commit ");
545 strbuf_addstr(&msgbuf
, sha1_to_hex(commit
->object
.sha1
));
547 if (commit
->parents
&& commit
->parents
->next
) {
548 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
549 strbuf_addstr(&msgbuf
, sha1_to_hex(parent
->object
.sha1
));
551 strbuf_addstr(&msgbuf
, ".\n");
556 base_label
= msg
.parent_label
;
558 next_label
= msg
.label
;
561 * Append the commit log message to msgbuf; it starts
562 * after the tree, parent, author, committer
563 * information followed by "\n\n".
565 p
= strstr(msg
.message
, "\n\n");
568 strbuf_addstr(&msgbuf
, p
);
571 if (opts
->record_origin
) {
572 if (!has_conforming_footer(&msgbuf
, NULL
, 0))
573 strbuf_addch(&msgbuf
, '\n');
574 strbuf_addstr(&msgbuf
, cherry_picked_prefix
);
575 strbuf_addstr(&msgbuf
, sha1_to_hex(commit
->object
.sha1
));
576 strbuf_addstr(&msgbuf
, ")\n");
580 if (!opts
->strategy
|| !strcmp(opts
->strategy
, "recursive") || opts
->action
== REPLAY_REVERT
) {
581 res
= do_recursive_merge(base
, next
, base_label
, next_label
,
582 head
, &msgbuf
, opts
);
583 write_message(&msgbuf
, defmsg
);
585 struct commit_list
*common
= NULL
;
586 struct commit_list
*remotes
= NULL
;
588 write_message(&msgbuf
, defmsg
);
590 commit_list_insert(base
, &common
);
591 commit_list_insert(next
, &remotes
);
592 res
= try_merge_command(opts
->strategy
, opts
->xopts_nr
, opts
->xopts
,
593 common
, sha1_to_hex(head
), remotes
);
594 free_commit_list(common
);
595 free_commit_list(remotes
);
599 * If the merge was clean or if it failed due to conflict, we write
600 * CHERRY_PICK_HEAD for the subsequent invocation of commit to use.
601 * However, if the merge did not even start, then we don't want to
604 if (opts
->action
== REPLAY_PICK
&& !opts
->no_commit
&& (res
== 0 || res
== 1))
605 write_cherry_pick_head(commit
, "CHERRY_PICK_HEAD");
606 if (opts
->action
== REPLAY_REVERT
&& ((opts
->no_commit
&& res
== 0) || res
== 1))
607 write_cherry_pick_head(commit
, "REVERT_HEAD");
610 error(opts
->action
== REPLAY_REVERT
611 ? _("could not revert %s... %s")
612 : _("could not apply %s... %s"),
613 find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
),
615 print_advice(res
== 1, opts
);
616 rerere(opts
->allow_rerere_auto
);
620 allow
= allow_empty(opts
, commit
);
625 if (!opts
->no_commit
)
626 res
= run_git_commit(defmsg
, opts
, allow
);
629 free_message(commit
, &msg
);
635 static void prepare_revs(struct replay_opts
*opts
)
638 * picking (but not reverting) ranges (but not individual revisions)
639 * should be done in reverse
641 if (opts
->action
== REPLAY_PICK
&& !opts
->revs
->no_walk
)
642 opts
->revs
->reverse
^= 1;
644 if (prepare_revision_walk(opts
->revs
))
645 die(_("revision walk setup failed"));
647 if (!opts
->revs
->commits
)
648 die(_("empty commit set passed"));
651 static void read_and_refresh_cache(struct replay_opts
*opts
)
653 static struct lock_file index_lock
;
654 int index_fd
= hold_locked_index(&index_lock
, 0);
655 if (read_index_preload(&the_index
, NULL
) < 0)
656 die(_("git %s: failed to read the index"), action_name(opts
));
657 refresh_index(&the_index
, REFRESH_QUIET
|REFRESH_UNMERGED
, NULL
, NULL
, NULL
);
658 if (the_index
.cache_changed
&& index_fd
>= 0) {
659 if (write_locked_index(&the_index
, &index_lock
, COMMIT_LOCK
))
660 die(_("git %s: failed to refresh the index"), action_name(opts
));
662 rollback_lock_file(&index_lock
);
665 static int format_todo(struct strbuf
*buf
, struct commit_list
*todo_list
,
666 struct replay_opts
*opts
)
668 struct commit_list
*cur
= NULL
;
669 const char *sha1_abbrev
= NULL
;
670 const char *action_str
= opts
->action
== REPLAY_REVERT
? "revert" : "pick";
674 for (cur
= todo_list
; cur
; cur
= cur
->next
) {
675 const char *commit_buffer
= get_commit_buffer(cur
->item
, NULL
);
676 sha1_abbrev
= find_unique_abbrev(cur
->item
->object
.sha1
, DEFAULT_ABBREV
);
677 subject_len
= find_commit_subject(commit_buffer
, &subject
);
678 strbuf_addf(buf
, "%s %s %.*s\n", action_str
, sha1_abbrev
,
679 subject_len
, subject
);
680 unuse_commit_buffer(cur
->item
, commit_buffer
);
685 static struct commit
*parse_insn_line(char *bol
, char *eol
, struct replay_opts
*opts
)
687 unsigned char commit_sha1
[20];
688 enum replay_action action
;
689 char *end_of_object_name
;
690 int saved
, status
, padding
;
692 if (starts_with(bol
, "pick")) {
693 action
= REPLAY_PICK
;
694 bol
+= strlen("pick");
695 } else if (starts_with(bol
, "revert")) {
696 action
= REPLAY_REVERT
;
697 bol
+= strlen("revert");
701 /* Eat up extra spaces/ tabs before object name */
702 padding
= strspn(bol
, " \t");
707 end_of_object_name
= bol
+ strcspn(bol
, " \t\n");
708 saved
= *end_of_object_name
;
709 *end_of_object_name
= '\0';
710 status
= get_sha1(bol
, commit_sha1
);
711 *end_of_object_name
= saved
;
714 * Verify that the action matches up with the one in
715 * opts; we don't support arbitrary instructions
717 if (action
!= opts
->action
) {
718 const char *action_str
;
719 action_str
= action
== REPLAY_REVERT
? "revert" : "cherry-pick";
720 error(_("Cannot %s during a %s"), action_str
, action_name(opts
));
727 return lookup_commit_reference(commit_sha1
);
730 static int parse_insn_buffer(char *buf
, struct commit_list
**todo_list
,
731 struct replay_opts
*opts
)
733 struct commit_list
**next
= todo_list
;
734 struct commit
*commit
;
738 for (i
= 1; *p
; i
++) {
739 char *eol
= strchrnul(p
, '\n');
740 commit
= parse_insn_line(p
, eol
, opts
);
742 return error(_("Could not parse line %d."), i
);
743 next
= commit_list_append(commit
, next
);
744 p
= *eol
? eol
+ 1 : eol
;
747 return error(_("No commits parsed."));
751 static void read_populate_todo(struct commit_list
**todo_list
,
752 struct replay_opts
*opts
)
754 const char *todo_file
= git_path(SEQ_TODO_FILE
);
755 struct strbuf buf
= STRBUF_INIT
;
758 fd
= open(todo_file
, O_RDONLY
);
760 die_errno(_("Could not open %s"), todo_file
);
761 if (strbuf_read(&buf
, fd
, 0) < 0) {
763 strbuf_release(&buf
);
764 die(_("Could not read %s."), todo_file
);
768 res
= parse_insn_buffer(buf
.buf
, todo_list
, opts
);
769 strbuf_release(&buf
);
771 die(_("Unusable instruction sheet: %s"), todo_file
);
774 static int populate_opts_cb(const char *key
, const char *value
, void *data
)
776 struct replay_opts
*opts
= data
;
781 else if (!strcmp(key
, "options.no-commit"))
782 opts
->no_commit
= git_config_bool_or_int(key
, value
, &error_flag
);
783 else if (!strcmp(key
, "options.edit"))
784 opts
->edit
= git_config_bool_or_int(key
, value
, &error_flag
);
785 else if (!strcmp(key
, "options.signoff"))
786 opts
->signoff
= git_config_bool_or_int(key
, value
, &error_flag
);
787 else if (!strcmp(key
, "options.record-origin"))
788 opts
->record_origin
= git_config_bool_or_int(key
, value
, &error_flag
);
789 else if (!strcmp(key
, "options.allow-ff"))
790 opts
->allow_ff
= git_config_bool_or_int(key
, value
, &error_flag
);
791 else if (!strcmp(key
, "options.mainline"))
792 opts
->mainline
= git_config_int(key
, value
);
793 else if (!strcmp(key
, "options.strategy"))
794 git_config_string(&opts
->strategy
, key
, value
);
795 else if (!strcmp(key
, "options.gpg-sign"))
796 git_config_string(&opts
->gpg_sign
, key
, value
);
797 else if (!strcmp(key
, "options.strategy-option")) {
798 ALLOC_GROW(opts
->xopts
, opts
->xopts_nr
+ 1, opts
->xopts_alloc
);
799 opts
->xopts
[opts
->xopts_nr
++] = xstrdup(value
);
801 return error(_("Invalid key: %s"), key
);
804 return error(_("Invalid value for %s: %s"), key
, value
);
809 static void read_populate_opts(struct replay_opts
**opts_ptr
)
811 const char *opts_file
= git_path(SEQ_OPTS_FILE
);
813 if (!file_exists(opts_file
))
815 if (git_config_from_file(populate_opts_cb
, opts_file
, *opts_ptr
) < 0)
816 die(_("Malformed options sheet: %s"), opts_file
);
819 static void walk_revs_populate_todo(struct commit_list
**todo_list
,
820 struct replay_opts
*opts
)
822 struct commit
*commit
;
823 struct commit_list
**next
;
828 while ((commit
= get_revision(opts
->revs
)))
829 next
= commit_list_append(commit
, next
);
832 static int create_seq_dir(void)
834 const char *seq_dir
= git_path(SEQ_DIR
);
836 if (file_exists(seq_dir
)) {
837 error(_("a cherry-pick or revert is already in progress"));
838 advise(_("try \"git cherry-pick (--continue | --quit | --abort)\""));
841 else if (mkdir(seq_dir
, 0777) < 0)
842 die_errno(_("Could not create sequencer directory %s"), seq_dir
);
846 static void save_head(const char *head
)
848 const char *head_file
= git_path(SEQ_HEAD_FILE
);
849 static struct lock_file head_lock
;
850 struct strbuf buf
= STRBUF_INIT
;
853 fd
= hold_lock_file_for_update(&head_lock
, head_file
, LOCK_DIE_ON_ERROR
);
854 strbuf_addf(&buf
, "%s\n", head
);
855 if (write_in_full(fd
, buf
.buf
, buf
.len
) < 0)
856 die_errno(_("Could not write to %s"), head_file
);
857 if (commit_lock_file(&head_lock
) < 0)
858 die(_("Error wrapping up %s."), head_file
);
861 static int reset_for_rollback(const unsigned char *sha1
)
863 const char *argv
[4]; /* reset --merge <arg> + NULL */
866 argv
[2] = sha1_to_hex(sha1
);
868 return run_command_v_opt(argv
, RUN_GIT_CMD
);
871 static int rollback_single_pick(void)
873 unsigned char head_sha1
[20];
875 if (!file_exists(git_path("CHERRY_PICK_HEAD")) &&
876 !file_exists(git_path("REVERT_HEAD")))
877 return error(_("no cherry-pick or revert in progress"));
878 if (read_ref_full("HEAD", 0, head_sha1
, NULL
))
879 return error(_("cannot resolve HEAD"));
880 if (is_null_sha1(head_sha1
))
881 return error(_("cannot abort from a branch yet to be born"));
882 return reset_for_rollback(head_sha1
);
885 static int sequencer_rollback(struct replay_opts
*opts
)
887 const char *filename
;
889 unsigned char sha1
[20];
890 struct strbuf buf
= STRBUF_INIT
;
892 filename
= git_path(SEQ_HEAD_FILE
);
893 f
= fopen(filename
, "r");
894 if (!f
&& errno
== ENOENT
) {
896 * There is no multiple-cherry-pick in progress.
897 * If CHERRY_PICK_HEAD or REVERT_HEAD indicates
898 * a single-cherry-pick in progress, abort that.
900 return rollback_single_pick();
903 return error(_("cannot open %s: %s"), filename
,
905 if (strbuf_getline(&buf
, f
, '\n')) {
906 error(_("cannot read %s: %s"), filename
, ferror(f
) ?
907 strerror(errno
) : _("unexpected end of file"));
912 if (get_sha1_hex(buf
.buf
, sha1
) || buf
.buf
[40] != '\0') {
913 error(_("stored pre-cherry-pick HEAD file '%s' is corrupt"),
917 if (reset_for_rollback(sha1
))
919 remove_sequencer_state();
920 strbuf_release(&buf
);
923 strbuf_release(&buf
);
927 static void save_todo(struct commit_list
*todo_list
, struct replay_opts
*opts
)
929 const char *todo_file
= git_path(SEQ_TODO_FILE
);
930 static struct lock_file todo_lock
;
931 struct strbuf buf
= STRBUF_INIT
;
934 fd
= hold_lock_file_for_update(&todo_lock
, todo_file
, LOCK_DIE_ON_ERROR
);
935 if (format_todo(&buf
, todo_list
, opts
) < 0)
936 die(_("Could not format %s."), todo_file
);
937 if (write_in_full(fd
, buf
.buf
, buf
.len
) < 0) {
938 strbuf_release(&buf
);
939 die_errno(_("Could not write to %s"), todo_file
);
941 if (commit_lock_file(&todo_lock
) < 0) {
942 strbuf_release(&buf
);
943 die(_("Error wrapping up %s."), todo_file
);
945 strbuf_release(&buf
);
948 static void save_opts(struct replay_opts
*opts
)
950 const char *opts_file
= git_path(SEQ_OPTS_FILE
);
953 git_config_set_in_file(opts_file
, "options.no-commit", "true");
955 git_config_set_in_file(opts_file
, "options.edit", "true");
957 git_config_set_in_file(opts_file
, "options.signoff", "true");
958 if (opts
->record_origin
)
959 git_config_set_in_file(opts_file
, "options.record-origin", "true");
961 git_config_set_in_file(opts_file
, "options.allow-ff", "true");
962 if (opts
->mainline
) {
963 struct strbuf buf
= STRBUF_INIT
;
964 strbuf_addf(&buf
, "%d", opts
->mainline
);
965 git_config_set_in_file(opts_file
, "options.mainline", buf
.buf
);
966 strbuf_release(&buf
);
969 git_config_set_in_file(opts_file
, "options.strategy", opts
->strategy
);
971 git_config_set_in_file(opts_file
, "options.gpg-sign", opts
->gpg_sign
);
974 for (i
= 0; i
< opts
->xopts_nr
; i
++)
975 git_config_set_multivar_in_file(opts_file
,
976 "options.strategy-option",
977 opts
->xopts
[i
], "^$", 0);
981 static int pick_commits(struct commit_list
*todo_list
, struct replay_opts
*opts
)
983 struct commit_list
*cur
;
986 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
988 assert(!(opts
->signoff
|| opts
->no_commit
||
989 opts
->record_origin
|| opts
->edit
));
990 read_and_refresh_cache(opts
);
992 for (cur
= todo_list
; cur
; cur
= cur
->next
) {
993 save_todo(cur
, opts
);
994 res
= do_pick_commit(cur
->item
, opts
);
1000 * Sequence of picks finished successfully; cleanup by
1001 * removing the .git/sequencer directory
1003 remove_sequencer_state();
1007 static int continue_single_pick(void)
1009 const char *argv
[] = { "commit", NULL
};
1011 if (!file_exists(git_path("CHERRY_PICK_HEAD")) &&
1012 !file_exists(git_path("REVERT_HEAD")))
1013 return error(_("no cherry-pick or revert in progress"));
1014 return run_command_v_opt(argv
, RUN_GIT_CMD
);
1017 static int sequencer_continue(struct replay_opts
*opts
)
1019 struct commit_list
*todo_list
= NULL
;
1021 if (!file_exists(git_path(SEQ_TODO_FILE
)))
1022 return continue_single_pick();
1023 read_populate_opts(&opts
);
1024 read_populate_todo(&todo_list
, opts
);
1026 /* Verify that the conflict has been resolved */
1027 if (file_exists(git_path("CHERRY_PICK_HEAD")) ||
1028 file_exists(git_path("REVERT_HEAD"))) {
1029 int ret
= continue_single_pick();
1033 if (index_differs_from("HEAD", 0))
1034 return error_dirty_index(opts
);
1035 todo_list
= todo_list
->next
;
1036 return pick_commits(todo_list
, opts
);
1039 static int single_pick(struct commit
*cmit
, struct replay_opts
*opts
)
1041 setenv(GIT_REFLOG_ACTION
, action_name(opts
), 0);
1042 return do_pick_commit(cmit
, opts
);
1045 int sequencer_pick_revisions(struct replay_opts
*opts
)
1047 struct commit_list
*todo_list
= NULL
;
1048 unsigned char sha1
[20];
1051 if (opts
->subcommand
== REPLAY_NONE
)
1054 read_and_refresh_cache(opts
);
1057 * Decide what to do depending on the arguments; a fresh
1058 * cherry-pick should be handled differently from an existing
1059 * one that is being continued
1061 if (opts
->subcommand
== REPLAY_REMOVE_STATE
) {
1062 remove_sequencer_state();
1065 if (opts
->subcommand
== REPLAY_ROLLBACK
)
1066 return sequencer_rollback(opts
);
1067 if (opts
->subcommand
== REPLAY_CONTINUE
)
1068 return sequencer_continue(opts
);
1070 for (i
= 0; i
< opts
->revs
->pending
.nr
; i
++) {
1071 unsigned char sha1
[20];
1072 const char *name
= opts
->revs
->pending
.objects
[i
].name
;
1074 /* This happens when using --stdin. */
1078 if (!get_sha1(name
, sha1
)) {
1079 if (!lookup_commit_reference_gently(sha1
, 1)) {
1080 enum object_type type
= sha1_object_info(sha1
, NULL
);
1081 die(_("%s: can't cherry-pick a %s"), name
, typename(type
));
1084 die(_("%s: bad revision"), name
);
1088 * If we were called as "git cherry-pick <commit>", just
1089 * cherry-pick/revert it, set CHERRY_PICK_HEAD /
1090 * REVERT_HEAD, and don't touch the sequencer state.
1091 * This means it is possible to cherry-pick in the middle
1092 * of a cherry-pick sequence.
1094 if (opts
->revs
->cmdline
.nr
== 1 &&
1095 opts
->revs
->cmdline
.rev
->whence
== REV_CMD_REV
&&
1096 opts
->revs
->no_walk
&&
1097 !opts
->revs
->cmdline
.rev
->flags
) {
1098 struct commit
*cmit
;
1099 if (prepare_revision_walk(opts
->revs
))
1100 die(_("revision walk setup failed"));
1101 cmit
= get_revision(opts
->revs
);
1102 if (!cmit
|| get_revision(opts
->revs
))
1103 die("BUG: expected exactly one commit from walk");
1104 return single_pick(cmit
, opts
);
1108 * Start a new cherry-pick/ revert sequence; but
1109 * first, make sure that an existing one isn't in
1113 walk_revs_populate_todo(&todo_list
, opts
);
1114 if (create_seq_dir() < 0)
1116 if (get_sha1("HEAD", sha1
)) {
1117 if (opts
->action
== REPLAY_REVERT
)
1118 return error(_("Can't revert as initial commit"));
1119 return error(_("Can't cherry-pick into empty head"));
1121 save_head(sha1_to_hex(sha1
));
1123 return pick_commits(todo_list
, opts
);
1126 void append_signoff(struct strbuf
*msgbuf
, int ignore_footer
, unsigned flag
)
1128 unsigned no_dup_sob
= flag
& APPEND_SIGNOFF_DEDUP
;
1129 struct strbuf sob
= STRBUF_INIT
;
1132 strbuf_addstr(&sob
, sign_off_header
);
1133 strbuf_addstr(&sob
, fmt_name(getenv("GIT_COMMITTER_NAME"),
1134 getenv("GIT_COMMITTER_EMAIL")));
1135 strbuf_addch(&sob
, '\n');
1138 * If the whole message buffer is equal to the sob, pretend that we
1139 * found a conforming footer with a matching sob
1141 if (msgbuf
->len
- ignore_footer
== sob
.len
&&
1142 !strncmp(msgbuf
->buf
, sob
.buf
, sob
.len
))
1145 has_footer
= has_conforming_footer(msgbuf
, &sob
, ignore_footer
);
1148 const char *append_newlines
= NULL
;
1149 size_t len
= msgbuf
->len
- ignore_footer
;
1153 * The buffer is completely empty. Leave foom for
1154 * the title and body to be filled in by the user.
1156 append_newlines
= "\n\n";
1157 } else if (msgbuf
->buf
[len
- 1] != '\n') {
1159 * Incomplete line. Complete the line and add a
1160 * blank one so that there is an empty line between
1161 * the message body and the sob.
1163 append_newlines
= "\n\n";
1164 } else if (len
== 1) {
1166 * Buffer contains a single newline. Add another
1167 * so that we leave room for the title and body.
1169 append_newlines
= "\n";
1170 } else if (msgbuf
->buf
[len
- 2] != '\n') {
1172 * Buffer ends with a single newline. Add another
1173 * so that there is an empty line between the message
1176 append_newlines
= "\n";
1177 } /* else, the buffer already ends with two newlines. */
1179 if (append_newlines
)
1180 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
1181 append_newlines
, strlen(append_newlines
));
1184 if (has_footer
!= 3 && (!no_dup_sob
|| has_footer
!= 2))
1185 strbuf_splice(msgbuf
, msgbuf
->len
- ignore_footer
, 0,
1188 strbuf_release(&sob
);