revert: use run_command_v_opt() instead of execv_git_cmd()
[git/dscho.git] / builtin / revert.c
blob02f18c2208ed67db5f8eb93c1e408e97173d7031
1 #include "cache.h"
2 #include "builtin.h"
3 #include "object.h"
4 #include "commit.h"
5 #include "tag.h"
6 #include "wt-status.h"
7 #include "run-command.h"
8 #include "exec_cmd.h"
9 #include "utf8.h"
10 #include "parse-options.h"
11 #include "cache-tree.h"
12 #include "diff.h"
13 #include "revision.h"
14 #include "rerere.h"
15 #include "merge-recursive.h"
16 #include "refs.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>",
31 NULL
34 static const char * const cherry_pick_usage[] = {
35 "git cherry-pick [options] <commit-ish>",
36 NULL
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 const char *commit_name;
43 static int allow_rerere_auto;
45 static const char *me;
46 static const char *strategy;
48 #define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
50 static char *get_encoding(const char *message);
52 static void parse_args(int argc, const char **argv)
54 const char * const * usage_str =
55 action == REVERT ? revert_usage : cherry_pick_usage;
56 unsigned char sha1[20];
57 int noop;
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"),
66 OPT_END(),
67 OPT_END(),
68 OPT_END(),
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"),
75 OPT_END(),
77 if (parse_options_concat(options, ARRAY_SIZE(options), cp_extra))
78 die("program error");
81 if (parse_options(argc, argv, NULL, options, usage_str, 0) != 1)
82 usage_with_options(usage_str, options);
84 commit_name = argv[0];
85 if (get_sha1(commit_name, sha1))
86 die ("Cannot find '%s'", commit_name);
87 commit = lookup_commit_reference(sha1);
88 if (!commit)
89 exit(1);
92 struct commit_message {
93 char *parent_label;
94 const char *label;
95 const char *subject;
96 char *reencoded_message;
97 const char *message;
100 static int get_message(const char *raw_message, struct commit_message *out)
102 const char *encoding;
103 const char *p, *abbrev, *eol;
104 char *q;
105 int abbrev_len, oneline_len;
107 if (!raw_message)
108 return -1;
109 encoding = get_encoding(raw_message);
110 if (!encoding)
111 encoding = "UTF-8";
112 if (!git_commit_encoding)
113 git_commit_encoding = "UTF-8";
115 out->reencoded_message = NULL;
116 out->message = raw_message;
117 if (strcmp(encoding, git_commit_encoding))
118 out->reencoded_message = reencode_string(raw_message,
119 git_commit_encoding, encoding);
120 if (out->reencoded_message)
121 out->message = out->reencoded_message;
123 abbrev = find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV);
124 abbrev_len = strlen(abbrev);
126 /* Find beginning and end of commit subject. */
127 p = out->message;
128 while (*p && (*p != '\n' || p[1] != '\n'))
129 p++;
130 if (*p) {
131 p += 2;
132 for (eol = p + 1; *eol && *eol != '\n'; eol++)
133 ; /* do nothing */
134 } else
135 eol = p;
136 oneline_len = eol - p;
138 out->parent_label = xmalloc(strlen("parent of ") + abbrev_len +
139 strlen("... ") + oneline_len + 1);
140 q = out->parent_label;
141 q = mempcpy(q, "parent of ", strlen("parent of "));
142 out->label = q;
143 q = mempcpy(q, abbrev, abbrev_len);
144 q = mempcpy(q, "... ", strlen("... "));
145 out->subject = q;
146 q = mempcpy(q, p, oneline_len);
147 *q = '\0';
148 return 0;
151 static void free_message(struct commit_message *msg)
153 free(msg->parent_label);
154 free(msg->reencoded_message);
157 static char *get_encoding(const char *message)
159 const char *p = message, *eol;
161 if (!p)
162 die ("Could not read commit message of %s",
163 sha1_to_hex(commit->object.sha1));
164 while (*p && *p != '\n') {
165 for (eol = p + 1; *eol && *eol != '\n'; eol++)
166 ; /* do nothing */
167 if (!prefixcmp(p, "encoding ")) {
168 char *result = xmalloc(eol - 8 - p);
169 strlcpy(result, p + 9, eol - 8 - p);
170 return result;
172 p = eol;
173 if (*p == '\n')
174 p++;
176 return NULL;
179 static void add_message_to_msg(struct strbuf *msgbuf, const char *message)
181 const char *p = message;
182 while (*p && (*p != '\n' || p[1] != '\n'))
183 p++;
185 if (!*p)
186 strbuf_addstr(msgbuf, sha1_to_hex(commit->object.sha1));
188 p += 2;
189 strbuf_addstr(msgbuf, p);
192 static void set_author_ident_env(const char *message)
194 const char *p = message;
195 if (!p)
196 die ("Could not read commit message of %s",
197 sha1_to_hex(commit->object.sha1));
198 while (*p && *p != '\n') {
199 const char *eol;
201 for (eol = p; *eol && *eol != '\n'; eol++)
202 ; /* do nothing */
203 if (!prefixcmp(p, "author ")) {
204 char *line, *pend, *email, *timestamp;
206 p += 7;
207 line = xmemdupz(p, eol - p);
208 email = strchr(line, '<');
209 if (!email)
210 die ("Could not extract author email from %s",
211 sha1_to_hex(commit->object.sha1));
212 if (email == line)
213 pend = line;
214 else
215 for (pend = email; pend != line + 1 &&
216 isspace(pend[-1]); pend--);
217 ; /* do nothing */
218 *pend = '\0';
219 email++;
220 timestamp = strchr(email, '>');
221 if (!timestamp)
222 die ("Could not extract author time from %s",
223 sha1_to_hex(commit->object.sha1));
224 *timestamp = '\0';
225 for (timestamp++; *timestamp && isspace(*timestamp);
226 timestamp++)
227 ; /* do nothing */
228 setenv("GIT_AUTHOR_NAME", line, 1);
229 setenv("GIT_AUTHOR_EMAIL", email, 1);
230 setenv("GIT_AUTHOR_DATE", timestamp, 1);
231 free(line);
232 return;
234 p = eol;
235 if (*p == '\n')
236 p++;
238 die ("No author information found in %s",
239 sha1_to_hex(commit->object.sha1));
242 static char *help_msg(const char *name)
244 struct strbuf helpbuf = STRBUF_INIT;
245 char *msg = getenv("GIT_CHERRY_PICK_HELP");
247 if (msg)
248 return msg;
250 strbuf_addstr(&helpbuf, " After resolving the conflicts,\n"
251 "mark the corrected paths with 'git add <paths>' or 'git rm <paths>'\n"
252 "and commit the result");
254 if (action == CHERRY_PICK) {
255 strbuf_addf(&helpbuf, " with: \n"
256 "\n"
257 " git commit -c %s\n",
258 name);
260 else
261 strbuf_addch(&helpbuf, '.');
262 return strbuf_detach(&helpbuf, NULL);
265 static void write_message(struct strbuf *msgbuf, const char *filename)
267 static struct lock_file msg_file;
269 int msg_fd = hold_lock_file_for_update(&msg_file, filename,
270 LOCK_DIE_ON_ERROR);
271 if (write_in_full(msg_fd, msgbuf->buf, msgbuf->len) < 0)
272 die_errno("Could not write to %s.", filename);
273 strbuf_release(msgbuf);
274 if (commit_lock_file(&msg_file) < 0)
275 die("Error wrapping up %s", filename);
278 static struct tree *empty_tree(void)
280 struct tree *tree = xcalloc(1, sizeof(struct tree));
282 tree->object.parsed = 1;
283 tree->object.type = OBJ_TREE;
284 pretend_sha1_file(NULL, 0, OBJ_TREE, tree->object.sha1);
285 return tree;
288 static NORETURN void die_dirty_index(const char *me)
290 if (read_cache_unmerged()) {
291 die_resolve_conflict(me);
292 } else {
293 if (advice_commit_before_merge)
294 die("Your local changes would be overwritten by %s.\n"
295 "Please, commit your changes or stash them to proceed.", me);
296 else
297 die("Your local changes would be overwritten by %s.\n", me);
301 static int fast_forward_to(const unsigned char *to, const unsigned char *from)
303 struct ref_lock *ref_lock;
305 read_cache();
306 if (checkout_fast_forward(from, to))
307 exit(1); /* the callee should have complained already */
308 ref_lock = lock_any_ref_for_update("HEAD", from, 0);
309 return write_ref_sha1(ref_lock, to, "cherry-pick");
312 static void do_recursive_merge(struct commit *base, struct commit *next,
313 const char *base_label, const char *next_label,
314 unsigned char *head, struct strbuf *msgbuf,
315 char *defmsg)
317 struct merge_options o;
318 struct tree *result, *next_tree, *base_tree, *head_tree;
319 int clean, index_fd;
320 static struct lock_file index_lock;
322 index_fd = hold_locked_index(&index_lock, 1);
324 read_cache();
325 init_merge_options(&o);
326 o.ancestor = base ? base_label : "(empty tree)";
327 o.branch1 = "HEAD";
328 o.branch2 = next ? next_label : "(empty tree)";
330 head_tree = parse_tree_indirect(head);
331 next_tree = next ? next->tree : empty_tree();
332 base_tree = base ? base->tree : empty_tree();
334 clean = merge_trees(&o,
335 head_tree,
336 next_tree, base_tree, &result);
338 if (active_cache_changed &&
339 (write_cache(index_fd, active_cache, active_nr) ||
340 commit_locked_index(&index_lock)))
341 die("%s: Unable to write new index file", me);
342 rollback_lock_file(&index_lock);
344 if (!clean) {
345 int i;
346 strbuf_addstr(msgbuf, "\nConflicts:\n\n");
347 for (i = 0; i < active_nr;) {
348 struct cache_entry *ce = active_cache[i++];
349 if (ce_stage(ce)) {
350 strbuf_addch(msgbuf, '\t');
351 strbuf_addstr(msgbuf, ce->name);
352 strbuf_addch(msgbuf, '\n');
353 while (i < active_nr && !strcmp(ce->name,
354 active_cache[i]->name))
355 i++;
358 write_message(msgbuf, defmsg);
359 fprintf(stderr, "Automatic %s failed.%s\n",
360 me, help_msg(commit_name));
361 rerere(allow_rerere_auto);
362 exit(1);
364 write_message(msgbuf, defmsg);
365 fprintf(stderr, "Finished one %s.\n", me);
368 static int revert_or_cherry_pick(int argc, const char **argv)
370 unsigned char head[20];
371 struct commit *base, *next, *parent;
372 const char *base_label, *next_label;
373 struct commit_message msg = { NULL, NULL, NULL, NULL, NULL };
374 char *defmsg = NULL;
375 struct strbuf msgbuf = STRBUF_INIT;
377 git_config(git_default_config, NULL);
378 me = action == REVERT ? "revert" : "cherry-pick";
379 setenv(GIT_REFLOG_ACTION, me, 0);
380 parse_args(argc, argv);
382 if (allow_ff) {
383 if (signoff)
384 die("cherry-pick --ff cannot be used with --signoff");
385 if (no_commit)
386 die("cherry-pick --ff cannot be used with --no-commit");
387 if (no_replay)
388 die("cherry-pick --ff cannot be used with -x");
389 if (edit)
390 die("cherry-pick --ff cannot be used with --edit");
393 if (read_cache() < 0)
394 die("git %s: failed to read the index", me);
395 if (no_commit) {
397 * We do not intend to commit immediately. We just want to
398 * merge the differences in, so let's compute the tree
399 * that represents the "current" state for merge-recursive
400 * to work on.
402 if (write_cache_as_tree(head, 0, NULL))
403 die ("Your index file is unmerged.");
404 } else {
405 if (get_sha1("HEAD", head))
406 die ("You do not have a valid HEAD");
407 if (index_differs_from("HEAD", 0))
408 die_dirty_index(me);
410 discard_cache();
412 if (!commit->parents) {
413 if (action == REVERT)
414 die ("Cannot revert a root commit");
415 parent = NULL;
417 else if (commit->parents->next) {
418 /* Reverting or cherry-picking a merge commit */
419 int cnt;
420 struct commit_list *p;
422 if (!mainline)
423 die("Commit %s is a merge but no -m option was given.",
424 sha1_to_hex(commit->object.sha1));
426 for (cnt = 1, p = commit->parents;
427 cnt != mainline && p;
428 cnt++)
429 p = p->next;
430 if (cnt != mainline || !p)
431 die("Commit %s does not have parent %d",
432 sha1_to_hex(commit->object.sha1), mainline);
433 parent = p->item;
434 } else if (0 < mainline)
435 die("Mainline was specified but commit %s is not a merge.",
436 sha1_to_hex(commit->object.sha1));
437 else
438 parent = commit->parents->item;
440 if (allow_ff && !hashcmp(parent->object.sha1, head))
441 return fast_forward_to(commit->object.sha1, head);
443 if (parent && parse_commit(parent) < 0)
444 die("%s: cannot parse parent commit %s",
445 me, sha1_to_hex(parent->object.sha1));
447 if (get_message(commit->buffer, &msg) != 0)
448 die("Cannot get commit message for %s",
449 sha1_to_hex(commit->object.sha1));
452 * "commit" is an existing commit. We would want to apply
453 * the difference it introduces since its first parent "prev"
454 * on top of the current HEAD if we are cherry-pick. Or the
455 * reverse of it if we are revert.
458 defmsg = git_pathdup("MERGE_MSG");
460 if (action == REVERT) {
461 base = commit;
462 base_label = msg.label;
463 next = parent;
464 next_label = msg.parent_label;
465 strbuf_addstr(&msgbuf, "Revert \"");
466 strbuf_addstr(&msgbuf, msg.subject);
467 strbuf_addstr(&msgbuf, "\"\n\nThis reverts commit ");
468 strbuf_addstr(&msgbuf, sha1_to_hex(commit->object.sha1));
470 if (commit->parents->next) {
471 strbuf_addstr(&msgbuf, ", reversing\nchanges made to ");
472 strbuf_addstr(&msgbuf, sha1_to_hex(parent->object.sha1));
474 strbuf_addstr(&msgbuf, ".\n");
475 } else {
476 base = parent;
477 base_label = msg.parent_label;
478 next = commit;
479 next_label = msg.label;
480 set_author_ident_env(msg.message);
481 add_message_to_msg(&msgbuf, msg.message);
482 if (no_replay) {
483 strbuf_addstr(&msgbuf, "(cherry picked from commit ");
484 strbuf_addstr(&msgbuf, sha1_to_hex(commit->object.sha1));
485 strbuf_addstr(&msgbuf, ")\n");
489 if (!strategy || !strcmp(strategy, "recursive") || action == REVERT)
490 do_recursive_merge(base, next, base_label, next_label,
491 head, &msgbuf, defmsg);
492 else {
493 int res;
494 struct commit_list *common = NULL;
495 struct commit_list *remotes = NULL;
496 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);
503 if (res) {
504 fprintf(stderr, "Automatic %s with strategy %s failed.%s\n",
505 me, strategy, help_msg(commit_name));
506 rerere(allow_rerere_auto);
507 exit(1);
511 free_message(&msg);
515 * If we are cherry-pick, and if the merge did not result in
516 * hand-editing, we will hit this commit and inherit the original
517 * author date and name.
518 * If we are revert, or if our cherry-pick results in a hand merge,
519 * we had better say that the current user is responsible for that.
522 if (!no_commit) {
523 /* 6 is max possible length of our args array including NULL */
524 const char *args[6];
525 int res;
526 int i = 0;
528 args[i++] = "commit";
529 args[i++] = "-n";
530 if (signoff)
531 args[i++] = "-s";
532 if (!edit) {
533 args[i++] = "-F";
534 args[i++] = defmsg;
536 args[i] = NULL;
537 res = run_command_v_opt(args, RUN_GIT_CMD);
538 free(defmsg);
540 return res;
543 free(defmsg);
545 return 0;
548 int cmd_revert(int argc, const char **argv, const char *prefix)
550 if (isatty(0))
551 edit = 1;
552 action = REVERT;
553 return revert_or_cherry_pick(argc, argv);
556 int cmd_cherry_pick(int argc, const char **argv, const char *prefix)
558 action = CHERRY_PICK;
559 return revert_or_cherry_pick(argc, argv);