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 void parse_args(int argc
, const char **argv
)
55 const char * const * usage_str
=
56 action
== REVERT
? revert_usage
: cherry_pick_usage
;
58 struct option options
[] = {
59 OPT_BOOLEAN('n', "no-commit", &no_commit
, "don't automatically commit"),
60 OPT_BOOLEAN('e', "edit", &edit
, "edit the commit message"),
61 OPT_BOOLEAN('r', NULL
, &noop
, "no-op (backward compatibility)"),
62 OPT_BOOLEAN('s', "signoff", &signoff
, "add Signed-off-by:"),
63 OPT_INTEGER('m', "mainline", &mainline
, "parent number"),
64 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto
),
65 OPT_STRING(0, "strategy", &strategy
, "strategy", "merge strategy"),
71 if (action
== CHERRY_PICK
) {
72 struct option cp_extra
[] = {
73 OPT_BOOLEAN('x', NULL
, &no_replay
, "append commit name"),
74 OPT_BOOLEAN(0, "ff", &allow_ff
, "allow fast-forward"),
77 if (parse_options_concat(options
, ARRAY_SIZE(options
), cp_extra
))
81 commit_argc
= parse_options(argc
, argv
, NULL
, options
, usage_str
, 0);
83 usage_with_options(usage_str
, options
);
88 struct commit_message
{
92 char *reencoded_message
;
96 static int get_message(const char *raw_message
, struct commit_message
*out
)
99 const char *p
, *abbrev
, *eol
;
101 int abbrev_len
, oneline_len
;
105 encoding
= get_encoding(raw_message
);
108 if (!git_commit_encoding
)
109 git_commit_encoding
= "UTF-8";
111 out
->reencoded_message
= NULL
;
112 out
->message
= raw_message
;
113 if (strcmp(encoding
, git_commit_encoding
))
114 out
->reencoded_message
= reencode_string(raw_message
,
115 git_commit_encoding
, encoding
);
116 if (out
->reencoded_message
)
117 out
->message
= out
->reencoded_message
;
119 abbrev
= find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
);
120 abbrev_len
= strlen(abbrev
);
122 /* Find beginning and end of commit subject. */
124 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
128 for (eol
= p
+ 1; *eol
&& *eol
!= '\n'; eol
++)
132 oneline_len
= eol
- p
;
134 out
->parent_label
= xmalloc(strlen("parent of ") + abbrev_len
+
135 strlen("... ") + oneline_len
+ 1);
136 q
= out
->parent_label
;
137 q
= mempcpy(q
, "parent of ", strlen("parent of "));
139 q
= mempcpy(q
, abbrev
, abbrev_len
);
140 q
= mempcpy(q
, "... ", strlen("... "));
142 q
= mempcpy(q
, p
, oneline_len
);
147 static void free_message(struct commit_message
*msg
)
149 free(msg
->parent_label
);
150 free(msg
->reencoded_message
);
153 static char *get_encoding(const char *message
)
155 const char *p
= message
, *eol
;
158 die ("Could not read commit message of %s",
159 sha1_to_hex(commit
->object
.sha1
));
160 while (*p
&& *p
!= '\n') {
161 for (eol
= p
+ 1; *eol
&& *eol
!= '\n'; eol
++)
163 if (!prefixcmp(p
, "encoding ")) {
164 char *result
= xmalloc(eol
- 8 - p
);
165 strlcpy(result
, p
+ 9, eol
- 8 - p
);
175 static void add_message_to_msg(struct strbuf
*msgbuf
, const char *message
)
177 const char *p
= message
;
178 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
182 strbuf_addstr(msgbuf
, sha1_to_hex(commit
->object
.sha1
));
185 strbuf_addstr(msgbuf
, p
);
188 static void set_author_ident_env(const char *message
)
190 const char *p
= message
;
192 die ("Could not read commit message of %s",
193 sha1_to_hex(commit
->object
.sha1
));
194 while (*p
&& *p
!= '\n') {
197 for (eol
= p
; *eol
&& *eol
!= '\n'; eol
++)
199 if (!prefixcmp(p
, "author ")) {
200 char *line
, *pend
, *email
, *timestamp
;
203 line
= xmemdupz(p
, eol
- p
);
204 email
= strchr(line
, '<');
206 die ("Could not extract author email from %s",
207 sha1_to_hex(commit
->object
.sha1
));
211 for (pend
= email
; pend
!= line
+ 1 &&
212 isspace(pend
[-1]); pend
--);
216 timestamp
= strchr(email
, '>');
218 die ("Could not extract author time from %s",
219 sha1_to_hex(commit
->object
.sha1
));
221 for (timestamp
++; *timestamp
&& isspace(*timestamp
);
224 setenv("GIT_AUTHOR_NAME", line
, 1);
225 setenv("GIT_AUTHOR_EMAIL", email
, 1);
226 setenv("GIT_AUTHOR_DATE", timestamp
, 1);
234 die ("No author information found in %s",
235 sha1_to_hex(commit
->object
.sha1
));
238 static char *help_msg(void)
240 struct strbuf helpbuf
= STRBUF_INIT
;
241 char *msg
= getenv("GIT_CHERRY_PICK_HELP");
246 strbuf_addstr(&helpbuf
, " After resolving the conflicts,\n"
247 "mark the corrected paths with 'git add <paths>' or 'git rm <paths>'\n"
248 "and commit the result");
250 if (action
== CHERRY_PICK
) {
251 strbuf_addf(&helpbuf
, " with: \n"
253 " git commit -c %s\n",
254 sha1_to_hex(commit
->object
.sha1
));
257 strbuf_addch(&helpbuf
, '.');
258 return strbuf_detach(&helpbuf
, NULL
);
261 static void write_message(struct strbuf
*msgbuf
, const char *filename
)
263 static struct lock_file msg_file
;
265 int msg_fd
= hold_lock_file_for_update(&msg_file
, filename
,
267 if (write_in_full(msg_fd
, msgbuf
->buf
, msgbuf
->len
) < 0)
268 die_errno("Could not write to %s.", filename
);
269 strbuf_release(msgbuf
);
270 if (commit_lock_file(&msg_file
) < 0)
271 die("Error wrapping up %s", filename
);
274 static struct tree
*empty_tree(void)
276 struct tree
*tree
= xcalloc(1, sizeof(struct tree
));
278 tree
->object
.parsed
= 1;
279 tree
->object
.type
= OBJ_TREE
;
280 pretend_sha1_file(NULL
, 0, OBJ_TREE
, tree
->object
.sha1
);
284 static NORETURN
void die_dirty_index(const char *me
)
286 if (read_cache_unmerged()) {
287 die_resolve_conflict(me
);
289 if (advice_commit_before_merge
)
290 die("Your local changes would be overwritten by %s.\n"
291 "Please, commit your changes or stash them to proceed.", me
);
293 die("Your local changes would be overwritten by %s.\n", me
);
297 static int fast_forward_to(const unsigned char *to
, const unsigned char *from
)
299 struct ref_lock
*ref_lock
;
302 if (checkout_fast_forward(from
, to
))
303 exit(1); /* the callee should have complained already */
304 ref_lock
= lock_any_ref_for_update("HEAD", from
, 0);
305 return write_ref_sha1(ref_lock
, to
, "cherry-pick");
308 static void do_recursive_merge(struct commit
*base
, struct commit
*next
,
309 const char *base_label
, const char *next_label
,
310 unsigned char *head
, struct strbuf
*msgbuf
,
313 struct merge_options o
;
314 struct tree
*result
, *next_tree
, *base_tree
, *head_tree
;
316 static struct lock_file index_lock
;
318 index_fd
= hold_locked_index(&index_lock
, 1);
321 init_merge_options(&o
);
322 o
.ancestor
= base
? base_label
: "(empty tree)";
324 o
.branch2
= next
? next_label
: "(empty tree)";
326 head_tree
= parse_tree_indirect(head
);
327 next_tree
= next
? next
->tree
: empty_tree();
328 base_tree
= base
? base
->tree
: empty_tree();
330 clean
= merge_trees(&o
,
332 next_tree
, base_tree
, &result
);
334 if (active_cache_changed
&&
335 (write_cache(index_fd
, active_cache
, active_nr
) ||
336 commit_locked_index(&index_lock
)))
337 die("%s: Unable to write new index file", me
);
338 rollback_lock_file(&index_lock
);
342 strbuf_addstr(msgbuf
, "\nConflicts:\n\n");
343 for (i
= 0; i
< active_nr
;) {
344 struct cache_entry
*ce
= active_cache
[i
++];
346 strbuf_addch(msgbuf
, '\t');
347 strbuf_addstr(msgbuf
, ce
->name
);
348 strbuf_addch(msgbuf
, '\n');
349 while (i
< active_nr
&& !strcmp(ce
->name
,
350 active_cache
[i
]->name
))
354 write_message(msgbuf
, defmsg
);
355 fprintf(stderr
, "Automatic %s failed.%s\n",
357 rerere(allow_rerere_auto
);
360 write_message(msgbuf
, defmsg
);
361 fprintf(stderr
, "Finished one %s.\n", me
);
364 static int do_pick_commit(void)
366 unsigned char head
[20];
367 struct commit
*base
, *next
, *parent
;
368 const char *base_label
, *next_label
;
369 struct commit_message msg
= { NULL
, NULL
, NULL
, NULL
, NULL
};
371 struct strbuf msgbuf
= STRBUF_INIT
;
375 * We do not intend to commit immediately. We just want to
376 * merge the differences in, so let's compute the tree
377 * that represents the "current" state for merge-recursive
380 if (write_cache_as_tree(head
, 0, NULL
))
381 die ("Your index file is unmerged.");
383 if (get_sha1("HEAD", head
))
384 die ("You do not have a valid HEAD");
385 if (index_differs_from("HEAD", 0))
390 if (!commit
->parents
) {
391 if (action
== REVERT
)
392 die ("Cannot revert a root commit");
395 else if (commit
->parents
->next
) {
396 /* Reverting or cherry-picking a merge commit */
398 struct commit_list
*p
;
401 die("Commit %s is a merge but no -m option was given.",
402 sha1_to_hex(commit
->object
.sha1
));
404 for (cnt
= 1, p
= commit
->parents
;
405 cnt
!= mainline
&& p
;
408 if (cnt
!= mainline
|| !p
)
409 die("Commit %s does not have parent %d",
410 sha1_to_hex(commit
->object
.sha1
), mainline
);
412 } else if (0 < mainline
)
413 die("Mainline was specified but commit %s is not a merge.",
414 sha1_to_hex(commit
->object
.sha1
));
416 parent
= commit
->parents
->item
;
418 if (allow_ff
&& !hashcmp(parent
->object
.sha1
, head
))
419 return fast_forward_to(commit
->object
.sha1
, head
);
421 if (parent
&& parse_commit(parent
) < 0)
422 die("%s: cannot parse parent commit %s",
423 me
, sha1_to_hex(parent
->object
.sha1
));
425 if (get_message(commit
->buffer
, &msg
) != 0)
426 die("Cannot get commit message for %s",
427 sha1_to_hex(commit
->object
.sha1
));
430 * "commit" is an existing commit. We would want to apply
431 * the difference it introduces since its first parent "prev"
432 * on top of the current HEAD if we are cherry-pick. Or the
433 * reverse of it if we are revert.
436 defmsg
= git_pathdup("MERGE_MSG");
438 if (action
== REVERT
) {
440 base_label
= msg
.label
;
442 next_label
= msg
.parent_label
;
443 strbuf_addstr(&msgbuf
, "Revert \"");
444 strbuf_addstr(&msgbuf
, msg
.subject
);
445 strbuf_addstr(&msgbuf
, "\"\n\nThis reverts commit ");
446 strbuf_addstr(&msgbuf
, sha1_to_hex(commit
->object
.sha1
));
448 if (commit
->parents
->next
) {
449 strbuf_addstr(&msgbuf
, ", reversing\nchanges made to ");
450 strbuf_addstr(&msgbuf
, sha1_to_hex(parent
->object
.sha1
));
452 strbuf_addstr(&msgbuf
, ".\n");
455 base_label
= msg
.parent_label
;
457 next_label
= msg
.label
;
458 set_author_ident_env(msg
.message
);
459 add_message_to_msg(&msgbuf
, msg
.message
);
461 strbuf_addstr(&msgbuf
, "(cherry picked from commit ");
462 strbuf_addstr(&msgbuf
, sha1_to_hex(commit
->object
.sha1
));
463 strbuf_addstr(&msgbuf
, ")\n");
467 if (!strategy
|| !strcmp(strategy
, "recursive") || action
== REVERT
)
468 do_recursive_merge(base
, next
, base_label
, next_label
,
469 head
, &msgbuf
, defmsg
);
472 struct commit_list
*common
= NULL
;
473 struct commit_list
*remotes
= NULL
;
474 write_message(&msgbuf
, defmsg
);
475 commit_list_insert(base
, &common
);
476 commit_list_insert(next
, &remotes
);
477 res
= try_merge_command(strategy
, common
,
478 sha1_to_hex(head
), remotes
);
479 free_commit_list(common
);
480 free_commit_list(remotes
);
482 fprintf(stderr
, "Automatic %s with strategy %s failed.%s\n",
483 me
, strategy
, help_msg());
484 rerere(allow_rerere_auto
);
493 * If we are cherry-pick, and if the merge did not result in
494 * hand-editing, we will hit this commit and inherit the original
495 * author date and name.
496 * If we are revert, or if our cherry-pick results in a hand merge,
497 * we had better say that the current user is responsible for that.
501 /* 6 is max possible length of our args array including NULL */
506 args
[i
++] = "commit";
515 res
= run_command_v_opt(args
, RUN_GIT_CMD
);
526 static void prepare_revs(struct rev_info
*revs
)
530 const char **argv
= xmalloc((commit_argc
+ 4) * sizeof(*argv
));
533 argv
[argc
++] = "--no-walk";
534 if (action
!= REVERT
)
535 argv
[argc
++] = "--reverse";
536 for (i
= 0; i
< commit_argc
; i
++)
537 argv
[argc
++] = commit_argv
[i
];
540 init_revisions(revs
, NULL
);
541 setup_revisions(argc
- 1, argv
, revs
, NULL
);
542 if (prepare_revision_walk(revs
))
543 die("revision walk setup failed");
546 die("empty commit set passed");
551 static int revert_or_cherry_pick(int argc
, const char **argv
)
553 struct rev_info revs
;
555 git_config(git_default_config
, NULL
);
556 me
= action
== REVERT
? "revert" : "cherry-pick";
557 setenv(GIT_REFLOG_ACTION
, me
, 0);
558 parse_args(argc
, argv
);
562 die("cherry-pick --ff cannot be used with --signoff");
564 die("cherry-pick --ff cannot be used with --no-commit");
566 die("cherry-pick --ff cannot be used with -x");
568 die("cherry-pick --ff cannot be used with --edit");
571 if (read_cache() < 0)
572 die("git %s: failed to read the index", me
);
576 while ((commit
= get_revision(&revs
))) {
577 int res
= do_pick_commit();
585 int cmd_revert(int argc
, const char **argv
, const char *prefix
)
590 return revert_or_cherry_pick(argc
, argv
);
593 int cmd_cherry_pick(int argc
, const char **argv
, const char *prefix
)
595 action
= CHERRY_PICK
;
596 return revert_or_cherry_pick(argc
, argv
);