7 #include "run-command.h"
10 #include "parse-options.h"
11 #include "cache-tree.h"
15 #include "merge-recursive.h"
19 * This implements the builtins revert and cherry-pick.
21 * Copyright (c) 2007 Johannes E. Schindelin
23 * Based on git-revert.sh, which is
25 * Copyright (c) 2005 Linus Torvalds
26 * Copyright (c) 2005 Junio C Hamano
29 static const char * const revert_usage
[] = {
30 "git revert [options] <commit-ish>",
34 static const char * const cherry_pick_usage
[] = {
35 "git cherry-pick [options] <commit-ish>",
39 static int edit
, no_replay
, no_commit
, mainline
, signoff
, allow_ff
;
40 static enum { REVERT
, CHERRY_PICK
} action
;
41 static struct commit
*commit
;
42 static int commit_argc
;
43 static const char **commit_argv
;
44 static int allow_rerere_auto
;
46 static const char *me
;
47 static const char *strategy
;
49 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
51 static char *get_encoding(const char *message
);
53 static const char * const *revert_or_cherry_pick_usage(void)
55 return action
== REVERT
? revert_usage
: cherry_pick_usage
;
58 static void parse_args(int argc
, const char **argv
)
60 const char * const * usage_str
= revert_or_cherry_pick_usage();
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"),
65 OPT_BOOLEAN('r', NULL
, &noop
, "no-op (backward compatibility)"),
66 OPT_BOOLEAN('s', "signoff", &signoff
, "add Signed-off-by:"),
67 OPT_INTEGER('m', "mainline", &mainline
, "parent number"),
68 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto
),
69 OPT_STRING(0, "strategy", &strategy
, "strategy", "merge strategy"),
75 if (action
== CHERRY_PICK
) {
76 struct option cp_extra
[] = {
77 OPT_BOOLEAN('x', NULL
, &no_replay
, "append commit name"),
78 OPT_BOOLEAN(0, "ff", &allow_ff
, "allow fast-forward"),
81 if (parse_options_concat(options
, ARRAY_SIZE(options
), cp_extra
))
85 commit_argc
= parse_options(argc
, argv
, NULL
, options
, usage_str
,
86 PARSE_OPT_KEEP_ARGV0
|
87 PARSE_OPT_KEEP_UNKNOWN
);
89 usage_with_options(usage_str
, options
);
94 struct commit_message
{
98 char *reencoded_message
;
102 static int get_message(const char *raw_message
, struct commit_message
*out
)
104 const char *encoding
;
105 const char *abbrev
, *subject
;
106 int abbrev_len
, subject_len
;
111 encoding
= get_encoding(raw_message
);
114 if (!git_commit_encoding
)
115 git_commit_encoding
= "UTF-8";
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
)
123 out
->message
= out
->reencoded_message
;
125 abbrev
= find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
);
126 abbrev_len
= strlen(abbrev
);
128 subject_len
= find_commit_subject(out
->message
, &subject
);
130 out
->parent_label
= xmalloc(strlen("parent of ") + abbrev_len
+
131 strlen("... ") + subject_len
+ 1);
132 q
= out
->parent_label
;
133 q
= mempcpy(q
, "parent of ", strlen("parent of "));
135 q
= mempcpy(q
, abbrev
, abbrev_len
);
136 q
= mempcpy(q
, "... ", strlen("... "));
138 q
= mempcpy(q
, subject
, subject_len
);
143 static void free_message(struct commit_message
*msg
)
145 free(msg
->parent_label
);
146 free(msg
->reencoded_message
);
149 static char *get_encoding(const char *message
)
151 const char *p
= message
, *eol
;
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
++)
159 if (!prefixcmp(p
, "encoding ")) {
160 char *result
= xmalloc(eol
- 8 - p
);
161 strlcpy(result
, p
+ 9, eol
- 8 - p
);
171 static void add_message_to_msg(struct strbuf
*msgbuf
, const char *message
)
173 const char *p
= message
;
174 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
178 strbuf_addstr(msgbuf
, sha1_to_hex(commit
->object
.sha1
));
181 strbuf_addstr(msgbuf
, p
);
184 static void set_author_ident_env(const char *message
)
186 const char *p
= message
;
188 die ("Could not read commit message of %s",
189 sha1_to_hex(commit
->object
.sha1
));
190 while (*p
&& *p
!= '\n') {
193 for (eol
= p
; *eol
&& *eol
!= '\n'; eol
++)
195 if (!prefixcmp(p
, "author ")) {
196 char *line
, *pend
, *email
, *timestamp
;
199 line
= xmemdupz(p
, eol
- p
);
200 email
= strchr(line
, '<');
202 die ("Could not extract author email from %s",
203 sha1_to_hex(commit
->object
.sha1
));
207 for (pend
= email
; pend
!= line
+ 1 &&
208 isspace(pend
[-1]); pend
--);
212 timestamp
= strchr(email
, '>');
214 die ("Could not extract author time from %s",
215 sha1_to_hex(commit
->object
.sha1
));
217 for (timestamp
++; *timestamp
&& isspace(*timestamp
);
220 setenv("GIT_AUTHOR_NAME", line
, 1);
221 setenv("GIT_AUTHOR_EMAIL", email
, 1);
222 setenv("GIT_AUTHOR_DATE", timestamp
, 1);
230 die ("No author information found in %s",
231 sha1_to_hex(commit
->object
.sha1
));
234 static void advise(const char *advice
, ...)
238 va_start(params
, advice
);
239 vreportf("hint: ", advice
, params
);
243 static void print_advice(void)
245 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
248 fprintf(stderr
, "%s\n", msg
);
252 advise("after resolving the conflicts, mark the corrected paths");
253 advise("with 'git add <paths>' or 'git rm <paths>'");
255 if (action
== CHERRY_PICK
)
256 advise("and commit the result with 'git commit -c %s'",
257 find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
));
260 static void write_message(struct strbuf
*msgbuf
, const char *filename
)
262 static struct lock_file msg_file
;
264 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
,
266 if (write_in_full(msg_fd
, msgbuf
->buf
, msgbuf
->len
) < 0)
267 die_errno("Could not write to %s.", filename
);
268 strbuf_release(msgbuf
);
269 if (commit_lock_file(&msg_file
) < 0)
270 die("Error wrapping up %s", filename
);
273 static struct tree
*empty_tree(void)
275 struct tree
*tree
= xcalloc(1, sizeof(struct tree
));
277 tree
->object
.parsed
= 1;
278 tree
->object
.type
= OBJ_TREE
;
279 pretend_sha1_file(NULL
, 0, OBJ_TREE
, tree
->object
.sha1
);
283 static NORETURN
void die_dirty_index(const char *me
)
285 if (read_cache_unmerged()) {
286 die_resolve_conflict(me
);
288 if (advice_commit_before_merge
)
289 die("Your local changes would be overwritten by %s.\n"
290 "Please, commit your changes or stash them to proceed.", me
);
292 die("Your local changes would be overwritten by %s.\n", me
);
296 static int fast_forward_to(const unsigned char *to
, const unsigned char *from
)
298 struct ref_lock
*ref_lock
;
301 if (checkout_fast_forward(from
, to
))
302 exit(1); /* the callee should have complained already */
303 ref_lock
= lock_any_ref_for_update("HEAD", from
, 0);
304 return write_ref_sha1(ref_lock
, to
, "cherry-pick");
307 static int do_recursive_merge(struct commit
*base
, struct commit
*next
,
308 const char *base_label
, const char *next_label
,
309 unsigned char *head
, struct strbuf
*msgbuf
)
311 struct merge_options o
;
312 struct tree
*result
, *next_tree
, *base_tree
, *head_tree
;
314 static struct lock_file index_lock
;
316 index_fd
= hold_locked_index(&index_lock
, 1);
319 init_merge_options(&o
);
320 o
.ancestor
= base
? base_label
: "(empty tree)";
322 o
.branch2
= next
? next_label
: "(empty tree)";
324 head_tree
= parse_tree_indirect(head
);
325 next_tree
= next
? next
->tree
: empty_tree();
326 base_tree
= base
? base
->tree
: empty_tree();
328 clean
= merge_trees(&o
,
330 next_tree
, base_tree
, &result
);
332 if (active_cache_changed
&&
333 (write_cache(index_fd
, active_cache
, active_nr
) ||
334 commit_locked_index(&index_lock
)))
335 die("%s: Unable to write new index file", me
);
336 rollback_lock_file(&index_lock
);
340 strbuf_addstr(msgbuf
, "\nConflicts:\n\n");
341 for (i
= 0; i
< active_nr
;) {
342 struct cache_entry
*ce
= active_cache
[i
++];
344 strbuf_addch(msgbuf
, '\t');
345 strbuf_addstr(msgbuf
, ce
->name
);
346 strbuf_addch(msgbuf
, '\n');
347 while (i
< active_nr
&& !strcmp(ce
->name
,
348 active_cache
[i
]->name
))
358 * If we are cherry-pick, and if the merge did not result in
359 * hand-editing, we will hit this commit and inherit the original
360 * author date and name.
361 * If we are revert, or if our cherry-pick results in a hand merge,
362 * we had better say that the current user is responsible for that.
364 static int run_git_commit(const char *defmsg
)
366 /* 6 is max possible length of our args array including NULL */
370 args
[i
++] = "commit";
380 return run_command_v_opt(args
, RUN_GIT_CMD
);
383 static int do_pick_commit(void)
385 unsigned char head
[20];
386 struct commit
*base
, *next
, *parent
;
387 const char *base_label
, *next_label
;
388 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
, NULL
};
390 struct strbuf msgbuf
= STRBUF_INIT
;
395 * We do not intend to commit immediately. We just want to
396 * merge the differences in, so let's compute the tree
397 * that represents the "current" state for merge-recursive
400 if (write_cache_as_tree(head
, 0, NULL
))
401 die ("Your index file is unmerged.");
403 if (get_sha1("HEAD", head
))
404 die ("You do not have a valid HEAD");
405 if (index_differs_from("HEAD", 0))
410 if (!commit
->parents
) {
411 if (action
== REVERT
)
412 die ("Cannot revert a root commit");
415 else if (commit
->parents
->next
) {
416 /* Reverting or cherry-picking a merge commit */
418 struct commit_list
*p
;
421 die("Commit %s is a merge but no -m option was given.",
422 sha1_to_hex(commit
->object
.sha1
));
424 for (cnt
= 1, p
= commit
->parents
;
425 cnt
!= mainline
&& p
;
428 if (cnt
!= mainline
|| !p
)
429 die("Commit %s does not have parent %d",
430 sha1_to_hex(commit
->object
.sha1
), mainline
);
432 } else if (0 < mainline
)
433 die("Mainline was specified but commit %s is not a merge.",
434 sha1_to_hex(commit
->object
.sha1
));
436 parent
= commit
->parents
->item
;
438 if (allow_ff
&& !hashcmp(parent
->object
.sha1
, head
))
439 return fast_forward_to(commit
->object
.sha1
, head
);
441 if (parent
&& parse_commit(parent
) < 0)
442 die("%s: cannot parse parent commit %s",
443 me
, sha1_to_hex(parent
->object
.sha1
));
445 if (get_message(commit
->buffer
, &msg
) != 0)
446 die("Cannot get commit message for %s",
447 sha1_to_hex(commit
->object
.sha1
));
450 * "commit" is an existing commit. We would want to apply
451 * the difference it introduces since its first parent "prev"
452 * on top of the current HEAD if we are cherry-pick. Or the
453 * reverse of it if we are revert.
456 defmsg
= git_pathdup("MERGE_MSG");
458 if (action
== REVERT
) {
460 base_label
= msg
.label
;
462 next_label
= msg
.parent_label
;
463 strbuf_addstr(&msgbuf
, "Revert \"");
464 strbuf_addstr(&msgbuf
, msg
.subject
);
465 strbuf_addstr(&msgbuf
, "\"\n\nThis reverts commit ");
466 strbuf_addstr(&msgbuf
, sha1_to_hex(commit
->object
.sha1
));
468 if (commit
->parents
->next
) {
469 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
470 strbuf_addstr(&msgbuf
, sha1_to_hex(parent
->object
.sha1
));
472 strbuf_addstr(&msgbuf
, ".\n");
475 base_label
= msg
.parent_label
;
477 next_label
= msg
.label
;
478 set_author_ident_env(msg
.message
);
479 add_message_to_msg(&msgbuf
, msg
.message
);
481 strbuf_addstr(&msgbuf
, "(cherry picked from commit ");
482 strbuf_addstr(&msgbuf
, sha1_to_hex(commit
->object
.sha1
));
483 strbuf_addstr(&msgbuf
, ")\n");
487 if (!strategy
|| !strcmp(strategy
, "recursive") || action
== REVERT
) {
488 res
= do_recursive_merge(base
, next
, base_label
, next_label
,
490 write_message(&msgbuf
, defmsg
);
492 struct commit_list
*common
= NULL
;
493 struct commit_list
*remotes
= NULL
;
495 write_message(&msgbuf
, defmsg
);
497 commit_list_insert(base
, &common
);
498 commit_list_insert(next
, &remotes
);
499 res
= try_merge_command(strategy
, common
,
500 sha1_to_hex(head
), remotes
);
501 free_commit_list(common
);
502 free_commit_list(remotes
);
506 error("could not %s %s... %s",
507 action
== REVERT
? "revert" : "apply",
508 find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
),
511 rerere(allow_rerere_auto
);
514 res
= run_git_commit(defmsg
);
523 static void prepare_revs(struct rev_info
*revs
)
527 init_revisions(revs
, NULL
);
529 if (action
!= REVERT
)
532 argc
= setup_revisions(commit_argc
, commit_argv
, revs
, NULL
);
534 usage(*revert_or_cherry_pick_usage());
536 if (prepare_revision_walk(revs
))
537 die("revision walk setup failed");
540 die("empty commit set passed");
543 static int revert_or_cherry_pick(int argc
, const char **argv
)
545 struct rev_info revs
;
547 git_config(git_default_config
, NULL
);
548 me
= action
== REVERT
? "revert" : "cherry-pick";
549 setenv(GIT_REFLOG_ACTION
, me
, 0);
550 parse_args(argc
, argv
);
554 die("cherry-pick --ff cannot be used with --signoff");
556 die("cherry-pick --ff cannot be used with --no-commit");
558 die("cherry-pick --ff cannot be used with -x");
560 die("cherry-pick --ff cannot be used with --edit");
563 if (read_cache() < 0)
564 die("git %s: failed to read the index", me
);
568 while ((commit
= get_revision(&revs
))) {
569 int res
= do_pick_commit();
577 int cmd_revert(int argc
, const char **argv
, const char *prefix
)
582 return revert_or_cherry_pick(argc
, argv
);
585 int cmd_cherry_pick(int argc
, const char **argv
, const char *prefix
)
587 action
= CHERRY_PICK
;
588 return revert_or_cherry_pick(argc
, argv
);