advice: Introduce error_resolve_conflict
[alt-git.git] / builtin / revert.c
blob2df3f3be4fd24231adf05142f91f81d81f5c5dc8
1 #include "cache.h"
2 #include "builtin.h"
3 #include "object.h"
4 #include "commit.h"
5 #include "tag.h"
6 #include "run-command.h"
7 #include "exec_cmd.h"
8 #include "utf8.h"
9 #include "parse-options.h"
10 #include "cache-tree.h"
11 #include "diff.h"
12 #include "revision.h"
13 #include "rerere.h"
14 #include "merge-recursive.h"
15 #include "refs.h"
18 * This implements the builtins revert and cherry-pick.
20 * Copyright (c) 2007 Johannes E. Schindelin
22 * Based on git-revert.sh, which is
24 * Copyright (c) 2005 Linus Torvalds
25 * Copyright (c) 2005 Junio C Hamano
28 static const char * const revert_usage[] = {
29 "git revert [options] <commit-ish>",
30 NULL
33 static const char * const cherry_pick_usage[] = {
34 "git cherry-pick [options] <commit-ish>",
35 NULL
38 static int edit, no_replay, no_commit, mainline, signoff, allow_ff;
39 static enum { REVERT, CHERRY_PICK } action;
40 static struct commit *commit;
41 static int commit_argc;
42 static const char **commit_argv;
43 static int allow_rerere_auto;
45 static const char *me;
47 /* Merge strategy. */
48 static const char *strategy;
49 static const char **xopts;
50 static size_t xopts_nr, xopts_alloc;
52 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
54 static char *get_encoding(const char *message);
56 static const char * const *revert_or_cherry_pick_usage(void)
58 return action == REVERT ? revert_usage : cherry_pick_usage;
61 static int option_parse_x(const struct option *opt,
62 const char *arg, int unset)
64 if (unset)
65 return 0;
67 ALLOC_GROW(xopts, xopts_nr + 1, xopts_alloc);
68 xopts[xopts_nr++] = xstrdup(arg);
69 return 0;
72 static void parse_args(int argc, const char **argv)
74 const char * const * usage_str = revert_or_cherry_pick_usage();
75 int noop;
76 struct option options[] = {
77 OPT_BOOLEAN('n', "no-commit", &no_commit, "don't automatically commit"),
78 OPT_BOOLEAN('e', "edit", &edit, "edit the commit message"),
79 { OPTION_BOOLEAN, 'r', NULL, &noop, NULL, "no-op (backward compatibility)",
80 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, NULL, 0 },
81 OPT_BOOLEAN('s', "signoff", &signoff, "add Signed-off-by:"),
82 OPT_INTEGER('m', "mainline", &mainline, "parent number"),
83 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
84 OPT_STRING(0, "strategy", &strategy, "strategy", "merge strategy"),
85 OPT_CALLBACK('X', "strategy-option", &xopts, "option",
86 "option for merge strategy", option_parse_x),
87 OPT_END(),
88 OPT_END(),
89 OPT_END(),
92 if (action == CHERRY_PICK) {
93 struct option cp_extra[] = {
94 OPT_BOOLEAN('x', NULL, &no_replay, "append commit name"),
95 OPT_BOOLEAN(0, "ff", &allow_ff, "allow fast-forward"),
96 OPT_END(),
98 if (parse_options_concat(options, ARRAY_SIZE(options), cp_extra))
99 die(_("program error"));
102 commit_argc = parse_options(argc, argv, NULL, options, usage_str,
103 PARSE_OPT_KEEP_ARGV0 |
104 PARSE_OPT_KEEP_UNKNOWN);
105 if (commit_argc < 2)
106 usage_with_options(usage_str, options);
108 commit_argv = argv;
111 struct commit_message {
112 char *parent_label;
113 const char *label;
114 const char *subject;
115 char *reencoded_message;
116 const char *message;
119 static int get_message(const char *raw_message, struct commit_message *out)
121 const char *encoding;
122 const char *abbrev, *subject;
123 int abbrev_len, subject_len;
124 char *q;
126 if (!raw_message)
127 return -1;
128 encoding = get_encoding(raw_message);
129 if (!encoding)
130 encoding = "UTF-8";
131 if (!git_commit_encoding)
132 git_commit_encoding = "UTF-8";
134 out->reencoded_message = NULL;
135 out->message = raw_message;
136 if (strcmp(encoding, git_commit_encoding))
137 out->reencoded_message = reencode_string(raw_message,
138 git_commit_encoding, encoding);
139 if (out->reencoded_message)
140 out->message = out->reencoded_message;
142 abbrev = find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV);
143 abbrev_len = strlen(abbrev);
145 subject_len = find_commit_subject(out->message, &subject);
147 out->parent_label = xmalloc(strlen("parent of ") + abbrev_len +
148 strlen("... ") + subject_len + 1);
149 q = out->parent_label;
150 q = mempcpy(q, "parent of ", strlen("parent of "));
151 out->label = q;
152 q = mempcpy(q, abbrev, abbrev_len);
153 q = mempcpy(q, "... ", strlen("... "));
154 out->subject = q;
155 q = mempcpy(q, subject, subject_len);
156 *q = '\0';
157 return 0;
160 static void free_message(struct commit_message *msg)
162 free(msg->parent_label);
163 free(msg->reencoded_message);
166 static char *get_encoding(const char *message)
168 const char *p = message, *eol;
170 if (!p)
171 die (_("Could not read commit message of %s"),
172 sha1_to_hex(commit->object.sha1));
173 while (*p && *p != '\n') {
174 for (eol = p + 1; *eol && *eol != '\n'; eol++)
175 ; /* do nothing */
176 if (!prefixcmp(p, "encoding ")) {
177 char *result = xmalloc(eol - 8 - p);
178 strlcpy(result, p + 9, eol - 8 - p);
179 return result;
181 p = eol;
182 if (*p == '\n')
183 p++;
185 return NULL;
188 static void add_message_to_msg(struct strbuf *msgbuf, const char *message)
190 const char *p = message;
191 while (*p && (*p != '\n' || p[1] != '\n'))
192 p++;
194 if (!*p)
195 strbuf_addstr(msgbuf, sha1_to_hex(commit->object.sha1));
197 p += 2;
198 strbuf_addstr(msgbuf, p);
201 static void write_cherry_pick_head(void)
203 int fd;
204 struct strbuf buf = STRBUF_INIT;
206 strbuf_addf(&buf, "%s\n", sha1_to_hex(commit->object.sha1));
208 fd = open(git_path("CHERRY_PICK_HEAD"), O_WRONLY | O_CREAT, 0666);
209 if (fd < 0)
210 die_errno(_("Could not open '%s' for writing"),
211 git_path("CHERRY_PICK_HEAD"));
212 if (write_in_full(fd, buf.buf, buf.len) != buf.len || close(fd))
213 die_errno(_("Could not write to '%s'"), git_path("CHERRY_PICK_HEAD"));
214 strbuf_release(&buf);
217 static void print_advice(void)
219 char *msg = getenv("GIT_CHERRY_PICK_HELP");
221 if (msg) {
222 fprintf(stderr, "%s\n", msg);
224 * A conflict has occured but the porcelain
225 * (typically rebase --interactive) wants to take care
226 * of the commit itself so remove CHERRY_PICK_HEAD
228 unlink(git_path("CHERRY_PICK_HEAD"));
229 return;
232 advise("after resolving the conflicts, mark the corrected paths");
233 advise("with 'git add <paths>' or 'git rm <paths>'");
234 advise("and commit the result with 'git commit'");
237 static void write_message(struct strbuf *msgbuf, const char *filename)
239 static struct lock_file msg_file;
241 int msg_fd = hold_lock_file_for_update(&msg_file, filename,
242 LOCK_DIE_ON_ERROR);
243 if (write_in_full(msg_fd, msgbuf->buf, msgbuf->len) < 0)
244 die_errno(_("Could not write to %s."), filename);
245 strbuf_release(msgbuf);
246 if (commit_lock_file(&msg_file) < 0)
247 die(_("Error wrapping up %s"), filename);
250 static struct tree *empty_tree(void)
252 struct tree *tree = xcalloc(1, sizeof(struct tree));
254 tree->object.parsed = 1;
255 tree->object.type = OBJ_TREE;
256 pretend_sha1_file(NULL, 0, OBJ_TREE, tree->object.sha1);
257 return tree;
260 static NORETURN void die_dirty_index(const char *me)
262 if (read_cache_unmerged()) {
263 die_resolve_conflict(me);
264 } else {
265 if (advice_commit_before_merge) {
266 if (action == REVERT)
267 die(_("Your local changes would be overwritten by revert.\n"
268 "Please, commit your changes or stash them to proceed."));
269 else
270 die(_("Your local changes would be overwritten by cherry-pick.\n"
271 "Please, commit your changes or stash them to proceed."));
272 } else {
273 if (action == REVERT)
274 die(_("Your local changes would be overwritten by revert.\n"));
275 else
276 die(_("Your local changes would be overwritten by cherry-pick.\n"));
281 static int fast_forward_to(const unsigned char *to, const unsigned char *from)
283 struct ref_lock *ref_lock;
285 read_cache();
286 if (checkout_fast_forward(from, to))
287 exit(1); /* the callee should have complained already */
288 ref_lock = lock_any_ref_for_update("HEAD", from, 0);
289 return write_ref_sha1(ref_lock, to, "cherry-pick");
292 static int do_recursive_merge(struct commit *base, struct commit *next,
293 const char *base_label, const char *next_label,
294 unsigned char *head, struct strbuf *msgbuf)
296 struct merge_options o;
297 struct tree *result, *next_tree, *base_tree, *head_tree;
298 int clean, index_fd;
299 const char **xopt;
300 static struct lock_file index_lock;
302 index_fd = hold_locked_index(&index_lock, 1);
304 read_cache();
306 init_merge_options(&o);
307 o.ancestor = base ? base_label : "(empty tree)";
308 o.branch1 = "HEAD";
309 o.branch2 = next ? next_label : "(empty tree)";
311 head_tree = parse_tree_indirect(head);
312 next_tree = next ? next->tree : empty_tree();
313 base_tree = base ? base->tree : empty_tree();
315 for (xopt = xopts; xopt != xopts + xopts_nr; xopt++)
316 parse_merge_opt(&o, *xopt);
318 clean = merge_trees(&o,
319 head_tree,
320 next_tree, base_tree, &result);
322 if (active_cache_changed &&
323 (write_cache(index_fd, active_cache, active_nr) ||
324 commit_locked_index(&index_lock)))
325 /* TRANSLATORS: %s will be "revert" or "cherry-pick" */
326 die(_("%s: Unable to write new index file"), me);
327 rollback_lock_file(&index_lock);
329 if (!clean) {
330 int i;
331 strbuf_addstr(msgbuf, "\nConflicts:\n\n");
332 for (i = 0; i < active_nr;) {
333 struct cache_entry *ce = active_cache[i++];
334 if (ce_stage(ce)) {
335 strbuf_addch(msgbuf, '\t');
336 strbuf_addstr(msgbuf, ce->name);
337 strbuf_addch(msgbuf, '\n');
338 while (i < active_nr && !strcmp(ce->name,
339 active_cache[i]->name))
340 i++;
345 return !clean;
349 * If we are cherry-pick, and if the merge did not result in
350 * hand-editing, we will hit this commit and inherit the original
351 * author date and name.
352 * If we are revert, or if our cherry-pick results in a hand merge,
353 * we had better say that the current user is responsible for that.
355 static int run_git_commit(const char *defmsg)
357 /* 6 is max possible length of our args array including NULL */
358 const char *args[6];
359 int i = 0;
361 args[i++] = "commit";
362 args[i++] = "-n";
363 if (signoff)
364 args[i++] = "-s";
365 if (!edit) {
366 args[i++] = "-F";
367 args[i++] = defmsg;
369 args[i] = NULL;
371 return run_command_v_opt(args, RUN_GIT_CMD);
374 static int do_pick_commit(void)
376 unsigned char head[20];
377 struct commit *base, *next, *parent;
378 const char *base_label, *next_label;
379 struct commit_message msg = { NULL, NULL, NULL, NULL, NULL };
380 char *defmsg = NULL;
381 struct strbuf msgbuf = STRBUF_INIT;
382 int res;
384 if (no_commit) {
386 * We do not intend to commit immediately. We just want to
387 * merge the differences in, so let's compute the tree
388 * that represents the "current" state for merge-recursive
389 * to work on.
391 if (write_cache_as_tree(head, 0, NULL))
392 die (_("Your index file is unmerged."));
393 } else {
394 if (get_sha1("HEAD", head))
395 die (_("You do not have a valid HEAD"));
396 if (index_differs_from("HEAD", 0))
397 die_dirty_index(me);
399 discard_cache();
401 if (!commit->parents) {
402 parent = NULL;
404 else if (commit->parents->next) {
405 /* Reverting or cherry-picking a merge commit */
406 int cnt;
407 struct commit_list *p;
409 if (!mainline)
410 die(_("Commit %s is a merge but no -m option was given."),
411 sha1_to_hex(commit->object.sha1));
413 for (cnt = 1, p = commit->parents;
414 cnt != mainline && p;
415 cnt++)
416 p = p->next;
417 if (cnt != mainline || !p)
418 die(_("Commit %s does not have parent %d"),
419 sha1_to_hex(commit->object.sha1), mainline);
420 parent = p->item;
421 } else if (0 < mainline)
422 die(_("Mainline was specified but commit %s is not a merge."),
423 sha1_to_hex(commit->object.sha1));
424 else
425 parent = commit->parents->item;
427 if (allow_ff && parent && !hashcmp(parent->object.sha1, head))
428 return fast_forward_to(commit->object.sha1, head);
430 if (parent && parse_commit(parent) < 0)
431 /* TRANSLATORS: The first %s will be "revert" or
432 "cherry-pick", the second %s a SHA1 */
433 die(_("%s: cannot parse parent commit %s"),
434 me, sha1_to_hex(parent->object.sha1));
436 if (get_message(commit->buffer, &msg) != 0)
437 die(_("Cannot get commit message for %s"),
438 sha1_to_hex(commit->object.sha1));
441 * "commit" is an existing commit. We would want to apply
442 * the difference it introduces since its first parent "prev"
443 * on top of the current HEAD if we are cherry-pick. Or the
444 * reverse of it if we are revert.
447 defmsg = git_pathdup("MERGE_MSG");
449 if (action == REVERT) {
450 base = commit;
451 base_label = msg.label;
452 next = parent;
453 next_label = msg.parent_label;
454 strbuf_addstr(&msgbuf, "Revert \"");
455 strbuf_addstr(&msgbuf, msg.subject);
456 strbuf_addstr(&msgbuf, "\"\n\nThis reverts commit ");
457 strbuf_addstr(&msgbuf, sha1_to_hex(commit->object.sha1));
459 if (commit->parents && commit->parents->next) {
460 strbuf_addstr(&msgbuf, ", reversing\nchanges made to ");
461 strbuf_addstr(&msgbuf, sha1_to_hex(parent->object.sha1));
463 strbuf_addstr(&msgbuf, ".\n");
464 } else {
465 base = parent;
466 base_label = msg.parent_label;
467 next = commit;
468 next_label = msg.label;
469 add_message_to_msg(&msgbuf, msg.message);
470 if (no_replay) {
471 strbuf_addstr(&msgbuf, "(cherry picked from commit ");
472 strbuf_addstr(&msgbuf, sha1_to_hex(commit->object.sha1));
473 strbuf_addstr(&msgbuf, ")\n");
475 if (!no_commit)
476 write_cherry_pick_head();
479 if (!strategy || !strcmp(strategy, "recursive") || action == REVERT) {
480 res = do_recursive_merge(base, next, base_label, next_label,
481 head, &msgbuf);
482 write_message(&msgbuf, defmsg);
483 } else {
484 struct commit_list *common = NULL;
485 struct commit_list *remotes = NULL;
487 write_message(&msgbuf, defmsg);
489 commit_list_insert(base, &common);
490 commit_list_insert(next, &remotes);
491 res = try_merge_command(strategy, xopts_nr, xopts, common,
492 sha1_to_hex(head), remotes);
493 free_commit_list(common);
494 free_commit_list(remotes);
497 if (res) {
498 error(action == REVERT
499 ? _("could not revert %s... %s")
500 : _("could not apply %s... %s"),
501 find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV),
502 msg.subject);
503 print_advice();
504 rerere(allow_rerere_auto);
505 } else {
506 if (!no_commit)
507 res = run_git_commit(defmsg);
510 free_message(&msg);
511 free(defmsg);
513 return res;
516 static void prepare_revs(struct rev_info *revs)
518 int argc;
520 init_revisions(revs, NULL);
521 revs->no_walk = 1;
522 if (action != REVERT)
523 revs->reverse = 1;
525 argc = setup_revisions(commit_argc, commit_argv, revs, NULL);
526 if (argc > 1)
527 usage(*revert_or_cherry_pick_usage());
529 if (prepare_revision_walk(revs))
530 die(_("revision walk setup failed"));
532 if (!revs->commits)
533 die(_("empty commit set passed"));
536 static void read_and_refresh_cache(const char *me)
538 static struct lock_file index_lock;
539 int index_fd = hold_locked_index(&index_lock, 0);
540 if (read_index_preload(&the_index, NULL) < 0)
541 die(_("git %s: failed to read the index"), me);
542 refresh_index(&the_index, REFRESH_QUIET|REFRESH_UNMERGED, NULL, NULL, NULL);
543 if (the_index.cache_changed) {
544 if (write_index(&the_index, index_fd) ||
545 commit_locked_index(&index_lock))
546 die(_("git %s: failed to refresh the index"), me);
548 rollback_lock_file(&index_lock);
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);
560 if (allow_ff) {
561 if (signoff)
562 die(_("cherry-pick --ff cannot be used with --signoff"));
563 if (no_commit)
564 die(_("cherry-pick --ff cannot be used with --no-commit"));
565 if (no_replay)
566 die(_("cherry-pick --ff cannot be used with -x"));
567 if (edit)
568 die(_("cherry-pick --ff cannot be used with --edit"));
571 read_and_refresh_cache(me);
573 prepare_revs(&revs);
575 while ((commit = get_revision(&revs))) {
576 int res = do_pick_commit();
577 if (res)
578 return res;
581 return 0;
584 int cmd_revert(int argc, const char **argv, const char *prefix)
586 if (isatty(0))
587 edit = 1;
588 action = REVERT;
589 return revert_or_cherry_pick(argc, argv);
592 int cmd_cherry_pick(int argc, const char **argv, const char *prefix)
594 action = CHERRY_PICK;
595 return revert_or_cherry_pick(argc, argv);