Merge branch 'nd/format-patch-cover-letter-stat-width'
[git] / builtin / log.c
1 /*
2  * Builtin "git log" and related commands (show, whatchanged)
3  *
4  * (C) Copyright 2006 Linus Torvalds
5  *               2006 Junio Hamano
6  */
7 #include "cache.h"
8 #include "config.h"
9 #include "refs.h"
10 #include "object-store.h"
11 #include "color.h"
12 #include "commit.h"
13 #include "diff.h"
14 #include "revision.h"
15 #include "log-tree.h"
16 #include "builtin.h"
17 #include "tag.h"
18 #include "reflog-walk.h"
19 #include "patch-ids.h"
20 #include "run-command.h"
21 #include "shortlog.h"
22 #include "remote.h"
23 #include "string-list.h"
24 #include "parse-options.h"
25 #include "line-log.h"
26 #include "branch.h"
27 #include "streaming.h"
28 #include "version.h"
29 #include "mailmap.h"
30 #include "gpg-interface.h"
31 #include "progress.h"
32 #include "commit-slab.h"
33 #include "repository.h"
34 #include "commit-reach.h"
35 #include "interdiff.h"
36 #include "range-diff.h"
37
38 #define MAIL_DEFAULT_WRAP 72
39
40 /* Set a default date-time format for git log ("log.date" config variable) */
41 static const char *default_date_mode = NULL;
42
43 static int default_abbrev_commit;
44 static int default_show_root = 1;
45 static int default_follow;
46 static int default_show_signature;
47 static int decoration_style;
48 static int decoration_given;
49 static int use_mailmap_config;
50 static const char *fmt_patch_subject_prefix = "PATCH";
51 static const char *fmt_pretty;
52
53 static const char * const builtin_log_usage[] = {
54         N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
55         N_("git show [<options>] <object>..."),
56         NULL
57 };
58
59 struct line_opt_callback_data {
60         struct rev_info *rev;
61         const char *prefix;
62         struct string_list args;
63 };
64
65 static int auto_decoration_style(void)
66 {
67         return (isatty(1) || pager_in_use()) ? DECORATE_SHORT_REFS : 0;
68 }
69
70 static int parse_decoration_style(const char *value)
71 {
72         switch (git_parse_maybe_bool(value)) {
73         case 1:
74                 return DECORATE_SHORT_REFS;
75         case 0:
76                 return 0;
77         default:
78                 break;
79         }
80         if (!strcmp(value, "full"))
81                 return DECORATE_FULL_REFS;
82         else if (!strcmp(value, "short"))
83                 return DECORATE_SHORT_REFS;
84         else if (!strcmp(value, "auto"))
85                 return auto_decoration_style();
86         return -1;
87 }
88
89 static int decorate_callback(const struct option *opt, const char *arg, int unset)
90 {
91         if (unset)
92                 decoration_style = 0;
93         else if (arg)
94                 decoration_style = parse_decoration_style(arg);
95         else
96                 decoration_style = DECORATE_SHORT_REFS;
97
98         if (decoration_style < 0)
99                 die(_("invalid --decorate option: %s"), arg);
100
101         decoration_given = 1;
102
103         return 0;
104 }
105
106 static int log_line_range_callback(const struct option *option, const char *arg, int unset)
107 {
108         struct line_opt_callback_data *data = option->value;
109
110         BUG_ON_OPT_NEG(unset);
111
112         if (!arg)
113                 return -1;
114
115         data->rev->line_level_traverse = 1;
116         string_list_append(&data->args, arg);
117
118         return 0;
119 }
120
121 static void init_log_defaults(void)
122 {
123         init_grep_defaults(the_repository);
124         init_diff_ui_defaults();
125
126         decoration_style = auto_decoration_style();
127 }
128
129 static void cmd_log_init_defaults(struct rev_info *rev)
130 {
131         if (fmt_pretty)
132                 get_commit_format(fmt_pretty, rev);
133         if (default_follow)
134                 rev->diffopt.flags.default_follow_renames = 1;
135         rev->verbose_header = 1;
136         rev->diffopt.flags.recursive = 1;
137         rev->diffopt.stat_width = -1; /* use full terminal width */
138         rev->diffopt.stat_graph_width = -1; /* respect statGraphWidth config */
139         rev->abbrev_commit = default_abbrev_commit;
140         rev->show_root_diff = default_show_root;
141         rev->subject_prefix = fmt_patch_subject_prefix;
142         rev->show_signature = default_show_signature;
143         rev->diffopt.flags.allow_textconv = 1;
144
145         if (default_date_mode)
146                 parse_date_format(default_date_mode, &rev->date_mode);
147 }
148
149 static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
150                          struct rev_info *rev, struct setup_revision_opt *opt)
151 {
152         struct userformat_want w;
153         int quiet = 0, source = 0, mailmap = 0;
154         static struct line_opt_callback_data line_cb = {NULL, NULL, STRING_LIST_INIT_DUP};
155         static struct string_list decorate_refs_exclude = STRING_LIST_INIT_NODUP;
156         static struct string_list decorate_refs_include = STRING_LIST_INIT_NODUP;
157         struct decoration_filter decoration_filter = {&decorate_refs_include,
158                                                       &decorate_refs_exclude};
159         static struct revision_sources revision_sources;
160
161         const struct option builtin_log_options[] = {
162                 OPT__QUIET(&quiet, N_("suppress diff output")),
163                 OPT_BOOL(0, "source", &source, N_("show source")),
164                 OPT_BOOL(0, "use-mailmap", &mailmap, N_("Use mail map file")),
165                 OPT_STRING_LIST(0, "decorate-refs", &decorate_refs_include,
166                                 N_("pattern"), N_("only decorate refs that match <pattern>")),
167                 OPT_STRING_LIST(0, "decorate-refs-exclude", &decorate_refs_exclude,
168                                 N_("pattern"), N_("do not decorate refs that match <pattern>")),
169                 { OPTION_CALLBACK, 0, "decorate", NULL, NULL, N_("decorate options"),
170                   PARSE_OPT_OPTARG, decorate_callback},
171                 OPT_CALLBACK('L', NULL, &line_cb, "n,m:file",
172                              N_("Process line range n,m in file, counting from 1"),
173                              log_line_range_callback),
174                 OPT_END()
175         };
176
177         line_cb.rev = rev;
178         line_cb.prefix = prefix;
179
180         mailmap = use_mailmap_config;
181         argc = parse_options(argc, argv, prefix,
182                              builtin_log_options, builtin_log_usage,
183                              PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
184                              PARSE_OPT_KEEP_DASHDASH);
185
186         if (quiet)
187                 rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
188         argc = setup_revisions(argc, argv, rev, opt);
189
190         /* Any arguments at this point are not recognized */
191         if (argc > 1)
192                 die(_("unrecognized argument: %s"), argv[1]);
193
194         memset(&w, 0, sizeof(w));
195         userformat_find_requirements(NULL, &w);
196
197         if (!rev->show_notes_given && (!rev->pretty_given || w.notes))
198                 rev->show_notes = 1;
199         if (rev->show_notes)
200                 init_display_notes(&rev->notes_opt);
201
202         if ((rev->diffopt.pickaxe_opts & DIFF_PICKAXE_KINDS_MASK) ||
203             rev->diffopt.filter || rev->diffopt.flags.follow_renames)
204                 rev->always_show_header = 0;
205
206         if (source) {
207                 init_revision_sources(&revision_sources);
208                 rev->sources = &revision_sources;
209         }
210
211         if (mailmap) {
212                 rev->mailmap = xcalloc(1, sizeof(struct string_list));
213                 read_mailmap(rev->mailmap, NULL);
214         }
215
216         if (rev->pretty_given && rev->commit_format == CMIT_FMT_RAW) {
217                 /*
218                  * "log --pretty=raw" is special; ignore UI oriented
219                  * configuration variables such as decoration.
220                  */
221                 if (!decoration_given)
222                         decoration_style = 0;
223                 if (!rev->abbrev_commit_given)
224                         rev->abbrev_commit = 0;
225         }
226
227         if (decoration_style) {
228                 rev->show_decorations = 1;
229                 load_ref_decorations(&decoration_filter, decoration_style);
230         }
231
232         if (rev->line_level_traverse)
233                 line_log_init(rev, line_cb.prefix, &line_cb.args);
234
235         setup_pager();
236 }
237
238 static void cmd_log_init(int argc, const char **argv, const char *prefix,
239                          struct rev_info *rev, struct setup_revision_opt *opt)
240 {
241         cmd_log_init_defaults(rev);
242         cmd_log_init_finish(argc, argv, prefix, rev, opt);
243 }
244
245 /*
246  * This gives a rough estimate for how many commits we
247  * will print out in the list.
248  */
249 static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
250 {
251         int n = 0;
252
253         while (list) {
254                 struct commit *commit = list->item;
255                 unsigned int flags = commit->object.flags;
256                 list = list->next;
257                 if (!(flags & (TREESAME | UNINTERESTING)))
258                         n++;
259         }
260         return n;
261 }
262
263 static void show_early_header(struct rev_info *rev, const char *stage, int nr)
264 {
265         if (rev->shown_one) {
266                 rev->shown_one = 0;
267                 if (rev->commit_format != CMIT_FMT_ONELINE)
268                         putchar(rev->diffopt.line_termination);
269         }
270         fprintf(rev->diffopt.file, _("Final output: %d %s\n"), nr, stage);
271 }
272
273 static struct itimerval early_output_timer;
274
275 static void log_show_early(struct rev_info *revs, struct commit_list *list)
276 {
277         int i = revs->early_output, close_file = revs->diffopt.close_file;
278         int show_header = 1;
279
280         revs->diffopt.close_file = 0;
281         sort_in_topological_order(&list, revs->sort_order);
282         while (list && i) {
283                 struct commit *commit = list->item;
284                 switch (simplify_commit(revs, commit)) {
285                 case commit_show:
286                         if (show_header) {
287                                 int n = estimate_commit_count(revs, list);
288                                 show_early_header(revs, "incomplete", n);
289                                 show_header = 0;
290                         }
291                         log_tree_commit(revs, commit);
292                         i--;
293                         break;
294                 case commit_ignore:
295                         break;
296                 case commit_error:
297                         if (close_file)
298                                 fclose(revs->diffopt.file);
299                         return;
300                 }
301                 list = list->next;
302         }
303
304         /* Did we already get enough commits for the early output? */
305         if (!i) {
306                 if (close_file)
307                         fclose(revs->diffopt.file);
308                 return;
309         }
310
311         /*
312          * ..if no, then repeat it twice a second until we
313          * do.
314          *
315          * NOTE! We don't use "it_interval", because if the
316          * reader isn't listening, we want our output to be
317          * throttled by the writing, and not have the timer
318          * trigger every second even if we're blocked on a
319          * reader!
320          */
321         early_output_timer.it_value.tv_sec = 0;
322         early_output_timer.it_value.tv_usec = 500000;
323         setitimer(ITIMER_REAL, &early_output_timer, NULL);
324 }
325
326 static void early_output(int signal)
327 {
328         show_early_output = log_show_early;
329 }
330
331 static void setup_early_output(struct rev_info *rev)
332 {
333         struct sigaction sa;
334
335         /*
336          * Set up the signal handler, minimally intrusively:
337          * we only set a single volatile integer word (not
338          * using sigatomic_t - trying to avoid unnecessary
339          * system dependencies and headers), and using
340          * SA_RESTART.
341          */
342         memset(&sa, 0, sizeof(sa));
343         sa.sa_handler = early_output;
344         sigemptyset(&sa.sa_mask);
345         sa.sa_flags = SA_RESTART;
346         sigaction(SIGALRM, &sa, NULL);
347
348         /*
349          * If we can get the whole output in less than a
350          * tenth of a second, don't even bother doing the
351          * early-output thing..
352          *
353          * This is a one-time-only trigger.
354          */
355         early_output_timer.it_value.tv_sec = 0;
356         early_output_timer.it_value.tv_usec = 100000;
357         setitimer(ITIMER_REAL, &early_output_timer, NULL);
358 }
359
360 static void finish_early_output(struct rev_info *rev)
361 {
362         int n = estimate_commit_count(rev, rev->commits);
363         signal(SIGALRM, SIG_IGN);
364         show_early_header(rev, "done", n);
365 }
366
367 static int cmd_log_walk(struct rev_info *rev)
368 {
369         struct commit *commit;
370         int saved_nrl = 0;
371         int saved_dcctc = 0, close_file = rev->diffopt.close_file;
372
373         if (rev->early_output)
374                 setup_early_output(rev);
375
376         if (prepare_revision_walk(rev))
377                 die(_("revision walk setup failed"));
378
379         if (rev->early_output)
380                 finish_early_output(rev);
381
382         /*
383          * For --check and --exit-code, the exit code is based on CHECK_FAILED
384          * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
385          * retain that state information if replacing rev->diffopt in this loop
386          */
387         rev->diffopt.close_file = 0;
388         while ((commit = get_revision(rev)) != NULL) {
389                 if (!log_tree_commit(rev, commit) && rev->max_count >= 0)
390                         /*
391                          * We decremented max_count in get_revision,
392                          * but we didn't actually show the commit.
393                          */
394                         rev->max_count++;
395                 if (!rev->reflog_info) {
396                         /*
397                          * We may show a given commit multiple times when
398                          * walking the reflogs.
399                          */
400                         free_commit_buffer(commit);
401                         free_commit_list(commit->parents);
402                         commit->parents = NULL;
403                 }
404                 if (saved_nrl < rev->diffopt.needed_rename_limit)
405                         saved_nrl = rev->diffopt.needed_rename_limit;
406                 if (rev->diffopt.degraded_cc_to_c)
407                         saved_dcctc = 1;
408         }
409         rev->diffopt.degraded_cc_to_c = saved_dcctc;
410         rev->diffopt.needed_rename_limit = saved_nrl;
411         if (close_file)
412                 fclose(rev->diffopt.file);
413
414         if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
415             rev->diffopt.flags.check_failed) {
416                 return 02;
417         }
418         return diff_result_code(&rev->diffopt, 0);
419 }
420
421 static int git_log_config(const char *var, const char *value, void *cb)
422 {
423         const char *slot_name;
424
425         if (!strcmp(var, "format.pretty"))
426                 return git_config_string(&fmt_pretty, var, value);
427         if (!strcmp(var, "format.subjectprefix"))
428                 return git_config_string(&fmt_patch_subject_prefix, var, value);
429         if (!strcmp(var, "log.abbrevcommit")) {
430                 default_abbrev_commit = git_config_bool(var, value);
431                 return 0;
432         }
433         if (!strcmp(var, "log.date"))
434                 return git_config_string(&default_date_mode, var, value);
435         if (!strcmp(var, "log.decorate")) {
436                 decoration_style = parse_decoration_style(value);
437                 if (decoration_style < 0)
438                         decoration_style = 0; /* maybe warn? */
439                 return 0;
440         }
441         if (!strcmp(var, "log.showroot")) {
442                 default_show_root = git_config_bool(var, value);
443                 return 0;
444         }
445         if (!strcmp(var, "log.follow")) {
446                 default_follow = git_config_bool(var, value);
447                 return 0;
448         }
449         if (skip_prefix(var, "color.decorate.", &slot_name))
450                 return parse_decorate_color_config(var, slot_name, value);
451         if (!strcmp(var, "log.mailmap")) {
452                 use_mailmap_config = git_config_bool(var, value);
453                 return 0;
454         }
455         if (!strcmp(var, "log.showsignature")) {
456                 default_show_signature = git_config_bool(var, value);
457                 return 0;
458         }
459
460         if (grep_config(var, value, cb) < 0)
461                 return -1;
462         if (git_gpg_config(var, value, cb) < 0)
463                 return -1;
464         return git_diff_ui_config(var, value, cb);
465 }
466
467 int cmd_whatchanged(int argc, const char **argv, const char *prefix)
468 {
469         struct rev_info rev;
470         struct setup_revision_opt opt;
471
472         init_log_defaults();
473         git_config(git_log_config, NULL);
474
475         repo_init_revisions(the_repository, &rev, prefix);
476         rev.diff = 1;
477         rev.simplify_history = 0;
478         memset(&opt, 0, sizeof(opt));
479         opt.def = "HEAD";
480         opt.revarg_opt = REVARG_COMMITTISH;
481         cmd_log_init(argc, argv, prefix, &rev, &opt);
482         if (!rev.diffopt.output_format)
483                 rev.diffopt.output_format = DIFF_FORMAT_RAW;
484         return cmd_log_walk(&rev);
485 }
486
487 static void show_tagger(char *buf, int len, struct rev_info *rev)
488 {
489         struct strbuf out = STRBUF_INIT;
490         struct pretty_print_context pp = {0};
491
492         pp.fmt = rev->commit_format;
493         pp.date_mode = rev->date_mode;
494         pp_user_info(&pp, "Tagger", &out, buf, get_log_output_encoding());
495         fprintf(rev->diffopt.file, "%s", out.buf);
496         strbuf_release(&out);
497 }
498
499 static int show_blob_object(const struct object_id *oid, struct rev_info *rev, const char *obj_name)
500 {
501         struct object_id oidc;
502         struct object_context obj_context;
503         char *buf;
504         unsigned long size;
505
506         fflush(rev->diffopt.file);
507         if (!rev->diffopt.flags.textconv_set_via_cmdline ||
508             !rev->diffopt.flags.allow_textconv)
509                 return stream_blob_to_fd(1, oid, NULL, 0);
510
511         if (get_oid_with_context(obj_name, GET_OID_RECORD_PATH,
512                                  &oidc, &obj_context))
513                 die(_("Not a valid object name %s"), obj_name);
514         if (!obj_context.path ||
515             !textconv_object(the_repository, obj_context.path,
516                              obj_context.mode, &oidc, 1, &buf, &size)) {
517                 free(obj_context.path);
518                 return stream_blob_to_fd(1, oid, NULL, 0);
519         }
520
521         if (!buf)
522                 die(_("git show %s: bad file"), obj_name);
523
524         write_or_die(1, buf, size);
525         free(obj_context.path);
526         return 0;
527 }
528
529 static int show_tag_object(const struct object_id *oid, struct rev_info *rev)
530 {
531         unsigned long size;
532         enum object_type type;
533         char *buf = read_object_file(oid, &type, &size);
534         int offset = 0;
535
536         if (!buf)
537                 return error(_("Could not read object %s"), oid_to_hex(oid));
538
539         assert(type == OBJ_TAG);
540         while (offset < size && buf[offset] != '\n') {
541                 int new_offset = offset + 1;
542                 while (new_offset < size && buf[new_offset++] != '\n')
543                         ; /* do nothing */
544                 if (starts_with(buf + offset, "tagger "))
545                         show_tagger(buf + offset + 7,
546                                     new_offset - offset - 7, rev);
547                 offset = new_offset;
548         }
549
550         if (offset < size)
551                 fwrite(buf + offset, size - offset, 1, rev->diffopt.file);
552         free(buf);
553         return 0;
554 }
555
556 static int show_tree_object(const struct object_id *oid,
557                 struct strbuf *base,
558                 const char *pathname, unsigned mode, int stage, void *context)
559 {
560         FILE *file = context;
561         fprintf(file, "%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
562         return 0;
563 }
564
565 static void show_setup_revisions_tweak(struct rev_info *rev,
566                                        struct setup_revision_opt *opt)
567 {
568         if (rev->ignore_merges) {
569                 /* There was no "-m" on the command line */
570                 rev->ignore_merges = 0;
571                 if (!rev->first_parent_only && !rev->combine_merges) {
572                         /* No "--first-parent", "-c", or "--cc" */
573                         rev->combine_merges = 1;
574                         rev->dense_combined_merges = 1;
575                 }
576         }
577         if (!rev->diffopt.output_format)
578                 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
579 }
580
581 int cmd_show(int argc, const char **argv, const char *prefix)
582 {
583         struct rev_info rev;
584         struct object_array_entry *objects;
585         struct setup_revision_opt opt;
586         struct pathspec match_all;
587         int i, count, ret = 0;
588
589         init_log_defaults();
590         git_config(git_log_config, NULL);
591
592         memset(&match_all, 0, sizeof(match_all));
593         repo_init_revisions(the_repository, &rev, prefix);
594         rev.diff = 1;
595         rev.always_show_header = 1;
596         rev.no_walk = REVISION_WALK_NO_WALK_SORTED;
597         rev.diffopt.stat_width = -1;    /* Scale to real terminal size */
598
599         memset(&opt, 0, sizeof(opt));
600         opt.def = "HEAD";
601         opt.tweak = show_setup_revisions_tweak;
602         cmd_log_init(argc, argv, prefix, &rev, &opt);
603
604         if (!rev.no_walk)
605                 return cmd_log_walk(&rev);
606
607         count = rev.pending.nr;
608         objects = rev.pending.objects;
609         for (i = 0; i < count && !ret; i++) {
610                 struct object *o = objects[i].item;
611                 const char *name = objects[i].name;
612                 switch (o->type) {
613                 case OBJ_BLOB:
614                         ret = show_blob_object(&o->oid, &rev, name);
615                         break;
616                 case OBJ_TAG: {
617                         struct tag *t = (struct tag *)o;
618
619                         if (rev.shown_one)
620                                 putchar('\n');
621                         fprintf(rev.diffopt.file, "%stag %s%s\n",
622                                         diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
623                                         t->tag,
624                                         diff_get_color_opt(&rev.diffopt, DIFF_RESET));
625                         ret = show_tag_object(&o->oid, &rev);
626                         rev.shown_one = 1;
627                         if (ret)
628                                 break;
629                         o = parse_object(the_repository, &t->tagged->oid);
630                         if (!o)
631                                 ret = error(_("Could not read object %s"),
632                                             oid_to_hex(&t->tagged->oid));
633                         objects[i].item = o;
634                         i--;
635                         break;
636                 }
637                 case OBJ_TREE:
638                         if (rev.shown_one)
639                                 putchar('\n');
640                         fprintf(rev.diffopt.file, "%stree %s%s\n\n",
641                                         diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
642                                         name,
643                                         diff_get_color_opt(&rev.diffopt, DIFF_RESET));
644                         read_tree_recursive((struct tree *)o, "", 0, 0, &match_all,
645                                         show_tree_object, rev.diffopt.file);
646                         rev.shown_one = 1;
647                         break;
648                 case OBJ_COMMIT:
649                         rev.pending.nr = rev.pending.alloc = 0;
650                         rev.pending.objects = NULL;
651                         add_object_array(o, name, &rev.pending);
652                         ret = cmd_log_walk(&rev);
653                         break;
654                 default:
655                         ret = error(_("Unknown type: %d"), o->type);
656                 }
657         }
658         free(objects);
659         return ret;
660 }
661
662 /*
663  * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
664  */
665 int cmd_log_reflog(int argc, const char **argv, const char *prefix)
666 {
667         struct rev_info rev;
668         struct setup_revision_opt opt;
669
670         init_log_defaults();
671         git_config(git_log_config, NULL);
672
673         repo_init_revisions(the_repository, &rev, prefix);
674         init_reflog_walk(&rev.reflog_info);
675         rev.verbose_header = 1;
676         memset(&opt, 0, sizeof(opt));
677         opt.def = "HEAD";
678         cmd_log_init_defaults(&rev);
679         rev.abbrev_commit = 1;
680         rev.commit_format = CMIT_FMT_ONELINE;
681         rev.use_terminator = 1;
682         rev.always_show_header = 1;
683         cmd_log_init_finish(argc, argv, prefix, &rev, &opt);
684
685         return cmd_log_walk(&rev);
686 }
687
688 static void log_setup_revisions_tweak(struct rev_info *rev,
689                                       struct setup_revision_opt *opt)
690 {
691         if (rev->diffopt.flags.default_follow_renames &&
692             rev->prune_data.nr == 1)
693                 rev->diffopt.flags.follow_renames = 1;
694
695         /* Turn --cc/-c into -p --cc/-c when -p was not given */
696         if (!rev->diffopt.output_format && rev->combine_merges)
697                 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
698
699         /* Turn -m on when --cc/-c was given */
700         if (rev->combine_merges)
701                 rev->ignore_merges = 0;
702 }
703
704 int cmd_log(int argc, const char **argv, const char *prefix)
705 {
706         struct rev_info rev;
707         struct setup_revision_opt opt;
708
709         init_log_defaults();
710         git_config(git_log_config, NULL);
711
712         repo_init_revisions(the_repository, &rev, prefix);
713         rev.always_show_header = 1;
714         memset(&opt, 0, sizeof(opt));
715         opt.def = "HEAD";
716         opt.revarg_opt = REVARG_COMMITTISH;
717         opt.tweak = log_setup_revisions_tweak;
718         cmd_log_init(argc, argv, prefix, &rev, &opt);
719         return cmd_log_walk(&rev);
720 }
721
722 /* format-patch */
723
724 static const char *fmt_patch_suffix = ".patch";
725 static int numbered = 0;
726 static int auto_number = 1;
727
728 static char *default_attach = NULL;
729
730 static struct string_list extra_hdr = STRING_LIST_INIT_NODUP;
731 static struct string_list extra_to = STRING_LIST_INIT_NODUP;
732 static struct string_list extra_cc = STRING_LIST_INIT_NODUP;
733
734 static void add_header(const char *value)
735 {
736         struct string_list_item *item;
737         int len = strlen(value);
738         while (len && value[len - 1] == '\n')
739                 len--;
740
741         if (!strncasecmp(value, "to: ", 4)) {
742                 item = string_list_append(&extra_to, value + 4);
743                 len -= 4;
744         } else if (!strncasecmp(value, "cc: ", 4)) {
745                 item = string_list_append(&extra_cc, value + 4);
746                 len -= 4;
747         } else {
748                 item = string_list_append(&extra_hdr, value);
749         }
750
751         item->string[len] = '\0';
752 }
753
754 #define THREAD_SHALLOW 1
755 #define THREAD_DEEP 2
756 static int thread;
757 static int do_signoff;
758 static int base_auto;
759 static char *from;
760 static const char *signature = git_version_string;
761 static const char *signature_file;
762 static int config_cover_letter;
763 static const char *config_output_directory;
764
765 enum {
766         COVER_UNSET,
767         COVER_OFF,
768         COVER_ON,
769         COVER_AUTO
770 };
771
772 static int git_format_config(const char *var, const char *value, void *cb)
773 {
774         if (!strcmp(var, "format.headers")) {
775                 if (!value)
776                         die(_("format.headers without value"));
777                 add_header(value);
778                 return 0;
779         }
780         if (!strcmp(var, "format.suffix"))
781                 return git_config_string(&fmt_patch_suffix, var, value);
782         if (!strcmp(var, "format.to")) {
783                 if (!value)
784                         return config_error_nonbool(var);
785                 string_list_append(&extra_to, value);
786                 return 0;
787         }
788         if (!strcmp(var, "format.cc")) {
789                 if (!value)
790                         return config_error_nonbool(var);
791                 string_list_append(&extra_cc, value);
792                 return 0;
793         }
794         if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") ||
795             !strcmp(var, "color.ui") || !strcmp(var, "diff.submodule")) {
796                 return 0;
797         }
798         if (!strcmp(var, "format.numbered")) {
799                 if (value && !strcasecmp(value, "auto")) {
800                         auto_number = 1;
801                         return 0;
802                 }
803                 numbered = git_config_bool(var, value);
804                 auto_number = auto_number && numbered;
805                 return 0;
806         }
807         if (!strcmp(var, "format.attach")) {
808                 if (value && *value)
809                         default_attach = xstrdup(value);
810                 else
811                         default_attach = xstrdup(git_version_string);
812                 return 0;
813         }
814         if (!strcmp(var, "format.thread")) {
815                 if (value && !strcasecmp(value, "deep")) {
816                         thread = THREAD_DEEP;
817                         return 0;
818                 }
819                 if (value && !strcasecmp(value, "shallow")) {
820                         thread = THREAD_SHALLOW;
821                         return 0;
822                 }
823                 thread = git_config_bool(var, value) && THREAD_SHALLOW;
824                 return 0;
825         }
826         if (!strcmp(var, "format.signoff")) {
827                 do_signoff = git_config_bool(var, value);
828                 return 0;
829         }
830         if (!strcmp(var, "format.signature"))
831                 return git_config_string(&signature, var, value);
832         if (!strcmp(var, "format.signaturefile"))
833                 return git_config_pathname(&signature_file, var, value);
834         if (!strcmp(var, "format.coverletter")) {
835                 if (value && !strcasecmp(value, "auto")) {
836                         config_cover_letter = COVER_AUTO;
837                         return 0;
838                 }
839                 config_cover_letter = git_config_bool(var, value) ? COVER_ON : COVER_OFF;
840                 return 0;
841         }
842         if (!strcmp(var, "format.outputdirectory"))
843                 return git_config_string(&config_output_directory, var, value);
844         if (!strcmp(var, "format.useautobase")) {
845                 base_auto = git_config_bool(var, value);
846                 return 0;
847         }
848         if (!strcmp(var, "format.from")) {
849                 int b = git_parse_maybe_bool(value);
850                 free(from);
851                 if (b < 0)
852                         from = xstrdup(value);
853                 else if (b)
854                         from = xstrdup(git_committer_info(IDENT_NO_DATE));
855                 else
856                         from = NULL;
857                 return 0;
858         }
859
860         return git_log_config(var, value, cb);
861 }
862
863 static const char *output_directory = NULL;
864 static int outdir_offset;
865
866 static int open_next_file(struct commit *commit, const char *subject,
867                          struct rev_info *rev, int quiet)
868 {
869         struct strbuf filename = STRBUF_INIT;
870         int suffix_len = strlen(rev->patch_suffix) + 1;
871
872         if (output_directory) {
873                 strbuf_addstr(&filename, output_directory);
874                 if (filename.len >=
875                     PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len) {
876                         strbuf_release(&filename);
877                         return error(_("name of output directory is too long"));
878                 }
879                 strbuf_complete(&filename, '/');
880         }
881
882         if (rev->numbered_files)
883                 strbuf_addf(&filename, "%d", rev->nr);
884         else if (commit)
885                 fmt_output_commit(&filename, commit, rev);
886         else
887                 fmt_output_subject(&filename, subject, rev);
888
889         if (!quiet)
890                 printf("%s\n", filename.buf + outdir_offset);
891
892         if ((rev->diffopt.file = fopen(filename.buf, "w")) == NULL) {
893                 error_errno(_("Cannot open patch file %s"), filename.buf);
894                 strbuf_release(&filename);
895                 return -1;
896         }
897
898         strbuf_release(&filename);
899         return 0;
900 }
901
902 static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids)
903 {
904         struct rev_info check_rev;
905         struct commit *commit, *c1, *c2;
906         struct object *o1, *o2;
907         unsigned flags1, flags2;
908
909         if (rev->pending.nr != 2)
910                 die(_("Need exactly one range."));
911
912         o1 = rev->pending.objects[0].item;
913         o2 = rev->pending.objects[1].item;
914         flags1 = o1->flags;
915         flags2 = o2->flags;
916         c1 = lookup_commit_reference(the_repository, &o1->oid);
917         c2 = lookup_commit_reference(the_repository, &o2->oid);
918
919         if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
920                 die(_("Not a range."));
921
922         init_patch_ids(the_repository, ids);
923
924         /* given a range a..b get all patch ids for b..a */
925         repo_init_revisions(the_repository, &check_rev, rev->prefix);
926         check_rev.max_parents = 1;
927         o1->flags ^= UNINTERESTING;
928         o2->flags ^= UNINTERESTING;
929         add_pending_object(&check_rev, o1, "o1");
930         add_pending_object(&check_rev, o2, "o2");
931         if (prepare_revision_walk(&check_rev))
932                 die(_("revision walk setup failed"));
933
934         while ((commit = get_revision(&check_rev)) != NULL) {
935                 add_commit_patch_id(commit, ids);
936         }
937
938         /* reset for next revision walk */
939         clear_commit_marks(c1, SEEN | UNINTERESTING | SHOWN | ADDED);
940         clear_commit_marks(c2, SEEN | UNINTERESTING | SHOWN | ADDED);
941         o1->flags = flags1;
942         o2->flags = flags2;
943 }
944
945 static void gen_message_id(struct rev_info *info, char *base)
946 {
947         struct strbuf buf = STRBUF_INIT;
948         strbuf_addf(&buf, "%s.%"PRItime".git.%s", base,
949                     (timestamp_t) time(NULL),
950                     git_committer_info(IDENT_NO_NAME|IDENT_NO_DATE|IDENT_STRICT));
951         info->message_id = strbuf_detach(&buf, NULL);
952 }
953
954 static void print_signature(FILE *file)
955 {
956         if (!signature || !*signature)
957                 return;
958
959         fprintf(file, "-- \n%s", signature);
960         if (signature[strlen(signature)-1] != '\n')
961                 putc('\n', file);
962         putc('\n', file);
963 }
964
965 static void add_branch_description(struct strbuf *buf, const char *branch_name)
966 {
967         struct strbuf desc = STRBUF_INIT;
968         if (!branch_name || !*branch_name)
969                 return;
970         read_branch_desc(&desc, branch_name);
971         if (desc.len) {
972                 strbuf_addch(buf, '\n');
973                 strbuf_addbuf(buf, &desc);
974                 strbuf_addch(buf, '\n');
975         }
976         strbuf_release(&desc);
977 }
978
979 static char *find_branch_name(struct rev_info *rev)
980 {
981         int i, positive = -1;
982         struct object_id branch_oid;
983         const struct object_id *tip_oid;
984         const char *ref, *v;
985         char *full_ref, *branch = NULL;
986
987         for (i = 0; i < rev->cmdline.nr; i++) {
988                 if (rev->cmdline.rev[i].flags & UNINTERESTING)
989                         continue;
990                 if (positive < 0)
991                         positive = i;
992                 else
993                         return NULL;
994         }
995         if (positive < 0)
996                 return NULL;
997         ref = rev->cmdline.rev[positive].name;
998         tip_oid = &rev->cmdline.rev[positive].item->oid;
999         if (dwim_ref(ref, strlen(ref), &branch_oid, &full_ref) &&
1000             skip_prefix(full_ref, "refs/heads/", &v) &&
1001             oideq(tip_oid, &branch_oid))
1002                 branch = xstrdup(v);
1003         free(full_ref);
1004         return branch;
1005 }
1006
1007 static void show_diffstat(struct rev_info *rev,
1008                           struct commit *origin, struct commit *head)
1009 {
1010         struct diff_options opts;
1011
1012         memcpy(&opts, &rev->diffopt, sizeof(opts));
1013         opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
1014         diff_setup_done(&opts);
1015
1016         diff_tree_oid(get_commit_tree_oid(origin),
1017                       get_commit_tree_oid(head),
1018                       "", &opts);
1019         diffcore_std(&opts);
1020         diff_flush(&opts);
1021
1022         fprintf(rev->diffopt.file, "\n");
1023 }
1024
1025 static void make_cover_letter(struct rev_info *rev, int use_stdout,
1026                               struct commit *origin,
1027                               int nr, struct commit **list,
1028                               const char *branch_name,
1029                               int quiet)
1030 {
1031         const char *committer;
1032         const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
1033         const char *msg;
1034         struct shortlog log;
1035         struct strbuf sb = STRBUF_INIT;
1036         int i;
1037         const char *encoding = "UTF-8";
1038         int need_8bit_cte = 0;
1039         struct pretty_print_context pp = {0};
1040         struct commit *head = list[0];
1041
1042         if (!cmit_fmt_is_mail(rev->commit_format))
1043                 die(_("Cover letter needs email format"));
1044
1045         committer = git_committer_info(0);
1046
1047         if (!use_stdout &&
1048             open_next_file(NULL, rev->numbered_files ? NULL : "cover-letter", rev, quiet))
1049                 return;
1050
1051         log_write_email_headers(rev, head, &pp.after_subject, &need_8bit_cte, 0);
1052
1053         for (i = 0; !need_8bit_cte && i < nr; i++) {
1054                 const char *buf = get_commit_buffer(list[i], NULL);
1055                 if (has_non_ascii(buf))
1056                         need_8bit_cte = 1;
1057                 unuse_commit_buffer(list[i], buf);
1058         }
1059
1060         if (!branch_name)
1061                 branch_name = find_branch_name(rev);
1062
1063         msg = body;
1064         pp.fmt = CMIT_FMT_EMAIL;
1065         pp.date_mode.type = DATE_RFC2822;
1066         pp.rev = rev;
1067         pp.print_email_subject = 1;
1068         pp_user_info(&pp, NULL, &sb, committer, encoding);
1069         pp_title_line(&pp, &msg, &sb, encoding, need_8bit_cte);
1070         pp_remainder(&pp, &msg, &sb, 0);
1071         add_branch_description(&sb, branch_name);
1072         fprintf(rev->diffopt.file, "%s\n", sb.buf);
1073
1074         strbuf_release(&sb);
1075
1076         shortlog_init(&log);
1077         log.wrap_lines = 1;
1078         log.wrap = MAIL_DEFAULT_WRAP;
1079         log.in1 = 2;
1080         log.in2 = 4;
1081         log.file = rev->diffopt.file;
1082         for (i = 0; i < nr; i++)
1083                 shortlog_add_commit(&log, list[i]);
1084
1085         shortlog_output(&log);
1086
1087         /* We can only do diffstat with a unique reference point */
1088         if (origin)
1089                 show_diffstat(rev, origin, head);
1090
1091         if (rev->idiff_oid1) {
1092                 fprintf_ln(rev->diffopt.file, "%s", rev->idiff_title);
1093                 show_interdiff(rev, 0);
1094         }
1095
1096         if (rev->rdiff1) {
1097                 fprintf_ln(rev->diffopt.file, "%s", rev->rdiff_title);
1098                 show_range_diff(rev->rdiff1, rev->rdiff2,
1099                                 rev->creation_factor, 1, &rev->diffopt);
1100         }
1101 }
1102
1103 static const char *clean_message_id(const char *msg_id)
1104 {
1105         char ch;
1106         const char *a, *z, *m;
1107
1108         m = msg_id;
1109         while ((ch = *m) && (isspace(ch) || (ch == '<')))
1110                 m++;
1111         a = m;
1112         z = NULL;
1113         while ((ch = *m)) {
1114                 if (!isspace(ch) && (ch != '>'))
1115                         z = m;
1116                 m++;
1117         }
1118         if (!z)
1119                 die(_("insane in-reply-to: %s"), msg_id);
1120         if (++z == m)
1121                 return a;
1122         return xmemdupz(a, z - a);
1123 }
1124
1125 static const char *set_outdir(const char *prefix, const char *output_directory)
1126 {
1127         if (output_directory && is_absolute_path(output_directory))
1128                 return output_directory;
1129
1130         if (!prefix || !*prefix) {
1131                 if (output_directory)
1132                         return output_directory;
1133                 /* The user did not explicitly ask for "./" */
1134                 outdir_offset = 2;
1135                 return "./";
1136         }
1137
1138         outdir_offset = strlen(prefix);
1139         if (!output_directory)
1140                 return prefix;
1141
1142         return prefix_filename(prefix, output_directory);
1143 }
1144
1145 static const char * const builtin_format_patch_usage[] = {
1146         N_("git format-patch [<options>] [<since> | <revision-range>]"),
1147         NULL
1148 };
1149
1150 static int keep_subject = 0;
1151
1152 static int keep_callback(const struct option *opt, const char *arg, int unset)
1153 {
1154         BUG_ON_OPT_NEG(unset);
1155         BUG_ON_OPT_ARG(arg);
1156         ((struct rev_info *)opt->value)->total = -1;
1157         keep_subject = 1;
1158         return 0;
1159 }
1160
1161 static int subject_prefix = 0;
1162
1163 static int subject_prefix_callback(const struct option *opt, const char *arg,
1164                             int unset)
1165 {
1166         BUG_ON_OPT_NEG(unset);
1167         subject_prefix = 1;
1168         ((struct rev_info *)opt->value)->subject_prefix = arg;
1169         return 0;
1170 }
1171
1172 static int rfc_callback(const struct option *opt, const char *arg, int unset)
1173 {
1174         BUG_ON_OPT_NEG(unset);
1175         BUG_ON_OPT_ARG(arg);
1176         return subject_prefix_callback(opt, "RFC PATCH", unset);
1177 }
1178
1179 static int numbered_cmdline_opt = 0;
1180
1181 static int numbered_callback(const struct option *opt, const char *arg,
1182                              int unset)
1183 {
1184         BUG_ON_OPT_ARG(arg);
1185         *(int *)opt->value = numbered_cmdline_opt = unset ? 0 : 1;
1186         if (unset)
1187                 auto_number =  0;
1188         return 0;
1189 }
1190
1191 static int no_numbered_callback(const struct option *opt, const char *arg,
1192                                 int unset)
1193 {
1194         BUG_ON_OPT_NEG(unset);
1195         return numbered_callback(opt, arg, 1);
1196 }
1197
1198 static int output_directory_callback(const struct option *opt, const char *arg,
1199                               int unset)
1200 {
1201         const char **dir = (const char **)opt->value;
1202         BUG_ON_OPT_NEG(unset);
1203         if (*dir)
1204                 die(_("Two output directories?"));
1205         *dir = arg;
1206         return 0;
1207 }
1208
1209 static int thread_callback(const struct option *opt, const char *arg, int unset)
1210 {
1211         int *thread = (int *)opt->value;
1212         if (unset)
1213                 *thread = 0;
1214         else if (!arg || !strcmp(arg, "shallow"))
1215                 *thread = THREAD_SHALLOW;
1216         else if (!strcmp(arg, "deep"))
1217                 *thread = THREAD_DEEP;
1218         else
1219                 return 1;
1220         return 0;
1221 }
1222
1223 static int attach_callback(const struct option *opt, const char *arg, int unset)
1224 {
1225         struct rev_info *rev = (struct rev_info *)opt->value;
1226         if (unset)
1227                 rev->mime_boundary = NULL;
1228         else if (arg)
1229                 rev->mime_boundary = arg;
1230         else
1231                 rev->mime_boundary = git_version_string;
1232         rev->no_inline = unset ? 0 : 1;
1233         return 0;
1234 }
1235
1236 static int inline_callback(const struct option *opt, const char *arg, int unset)
1237 {
1238         struct rev_info *rev = (struct rev_info *)opt->value;
1239         if (unset)
1240                 rev->mime_boundary = NULL;
1241         else if (arg)
1242                 rev->mime_boundary = arg;
1243         else
1244                 rev->mime_boundary = git_version_string;
1245         rev->no_inline = 0;
1246         return 0;
1247 }
1248
1249 static int header_callback(const struct option *opt, const char *arg, int unset)
1250 {
1251         if (unset) {
1252                 string_list_clear(&extra_hdr, 0);
1253                 string_list_clear(&extra_to, 0);
1254                 string_list_clear(&extra_cc, 0);
1255         } else {
1256             add_header(arg);
1257         }
1258         return 0;
1259 }
1260
1261 static int to_callback(const struct option *opt, const char *arg, int unset)
1262 {
1263         if (unset)
1264                 string_list_clear(&extra_to, 0);
1265         else
1266                 string_list_append(&extra_to, arg);
1267         return 0;
1268 }
1269
1270 static int cc_callback(const struct option *opt, const char *arg, int unset)
1271 {
1272         if (unset)
1273                 string_list_clear(&extra_cc, 0);
1274         else
1275                 string_list_append(&extra_cc, arg);
1276         return 0;
1277 }
1278
1279 static int from_callback(const struct option *opt, const char *arg, int unset)
1280 {
1281         char **from = opt->value;
1282
1283         free(*from);
1284
1285         if (unset)
1286                 *from = NULL;
1287         else if (arg)
1288                 *from = xstrdup(arg);
1289         else
1290                 *from = xstrdup(git_committer_info(IDENT_NO_DATE));
1291         return 0;
1292 }
1293
1294 struct base_tree_info {
1295         struct object_id base_commit;
1296         int nr_patch_id, alloc_patch_id;
1297         struct object_id *patch_id;
1298 };
1299
1300 static struct commit *get_base_commit(const char *base_commit,
1301                                       struct commit **list,
1302                                       int total)
1303 {
1304         struct commit *base = NULL;
1305         struct commit **rev;
1306         int i = 0, rev_nr = 0;
1307
1308         if (base_commit && strcmp(base_commit, "auto")) {
1309                 base = lookup_commit_reference_by_name(base_commit);
1310                 if (!base)
1311                         die(_("Unknown commit %s"), base_commit);
1312         } else if ((base_commit && !strcmp(base_commit, "auto")) || base_auto) {
1313                 struct branch *curr_branch = branch_get(NULL);
1314                 const char *upstream = branch_get_upstream(curr_branch, NULL);
1315                 if (upstream) {
1316                         struct commit_list *base_list;
1317                         struct commit *commit;
1318                         struct object_id oid;
1319
1320                         if (get_oid(upstream, &oid))
1321                                 die(_("Failed to resolve '%s' as a valid ref."), upstream);
1322                         commit = lookup_commit_or_die(&oid, "upstream base");
1323                         base_list = get_merge_bases_many(commit, total, list);
1324                         /* There should be one and only one merge base. */
1325                         if (!base_list || base_list->next)
1326                                 die(_("Could not find exact merge base."));
1327                         base = base_list->item;
1328                         free_commit_list(base_list);
1329                 } else {
1330                         die(_("Failed to get upstream, if you want to record base commit automatically,\n"
1331                               "please use git branch --set-upstream-to to track a remote branch.\n"
1332                               "Or you could specify base commit by --base=<base-commit-id> manually."));
1333                 }
1334         }
1335
1336         ALLOC_ARRAY(rev, total);
1337         for (i = 0; i < total; i++)
1338                 rev[i] = list[i];
1339
1340         rev_nr = total;
1341         /*
1342          * Get merge base through pair-wise computations
1343          * and store it in rev[0].
1344          */
1345         while (rev_nr > 1) {
1346                 for (i = 0; i < rev_nr / 2; i++) {
1347                         struct commit_list *merge_base;
1348                         merge_base = get_merge_bases(rev[2 * i], rev[2 * i + 1]);
1349                         if (!merge_base || merge_base->next)
1350                                 die(_("Failed to find exact merge base"));
1351
1352                         rev[i] = merge_base->item;
1353                 }
1354
1355                 if (rev_nr % 2)
1356                         rev[i] = rev[2 * i];
1357                 rev_nr = DIV_ROUND_UP(rev_nr, 2);
1358         }
1359
1360         if (!in_merge_bases(base, rev[0]))
1361                 die(_("base commit should be the ancestor of revision list"));
1362
1363         for (i = 0; i < total; i++) {
1364                 if (base == list[i])
1365                         die(_("base commit shouldn't be in revision list"));
1366         }
1367
1368         free(rev);
1369         return base;
1370 }
1371
1372 define_commit_slab(commit_base, int);
1373
1374 static void prepare_bases(struct base_tree_info *bases,
1375                           struct commit *base,
1376                           struct commit **list,
1377                           int total)
1378 {
1379         struct commit *commit;
1380         struct rev_info revs;
1381         struct diff_options diffopt;
1382         struct commit_base commit_base;
1383         int i;
1384
1385         if (!base)
1386                 return;
1387
1388         init_commit_base(&commit_base);
1389         repo_diff_setup(the_repository, &diffopt);
1390         diffopt.flags.recursive = 1;
1391         diff_setup_done(&diffopt);
1392
1393         oidcpy(&bases->base_commit, &base->object.oid);
1394
1395         repo_init_revisions(the_repository, &revs, NULL);
1396         revs.max_parents = 1;
1397         revs.topo_order = 1;
1398         for (i = 0; i < total; i++) {
1399                 list[i]->object.flags &= ~UNINTERESTING;
1400                 add_pending_object(&revs, &list[i]->object, "rev_list");
1401                 *commit_base_at(&commit_base, list[i]) = 1;
1402         }
1403         base->object.flags |= UNINTERESTING;
1404         add_pending_object(&revs, &base->object, "base");
1405
1406         if (prepare_revision_walk(&revs))
1407                 die(_("revision walk setup failed"));
1408         /*
1409          * Traverse the commits list, get prerequisite patch ids
1410          * and stuff them in bases structure.
1411          */
1412         while ((commit = get_revision(&revs)) != NULL) {
1413                 struct object_id oid;
1414                 struct object_id *patch_id;
1415                 if (*commit_base_at(&commit_base, commit))
1416                         continue;
1417                 if (commit_patch_id(commit, &diffopt, &oid, 0))
1418                         die(_("cannot get patch id"));
1419                 ALLOC_GROW(bases->patch_id, bases->nr_patch_id + 1, bases->alloc_patch_id);
1420                 patch_id = bases->patch_id + bases->nr_patch_id;
1421                 oidcpy(patch_id, &oid);
1422                 bases->nr_patch_id++;
1423         }
1424         clear_commit_base(&commit_base);
1425 }
1426
1427 static void print_bases(struct base_tree_info *bases, FILE *file)
1428 {
1429         int i;
1430
1431         /* Only do this once, either for the cover or for the first one */
1432         if (is_null_oid(&bases->base_commit))
1433                 return;
1434
1435         /* Show the base commit */
1436         fprintf(file, "\nbase-commit: %s\n", oid_to_hex(&bases->base_commit));
1437
1438         /* Show the prerequisite patches */
1439         for (i = bases->nr_patch_id - 1; i >= 0; i--)
1440                 fprintf(file, "prerequisite-patch-id: %s\n", oid_to_hex(&bases->patch_id[i]));
1441
1442         free(bases->patch_id);
1443         bases->nr_patch_id = 0;
1444         bases->alloc_patch_id = 0;
1445         oidclr(&bases->base_commit);
1446 }
1447
1448 static const char *diff_title(struct strbuf *sb, int reroll_count,
1449                        const char *generic, const char *rerolled)
1450 {
1451         if (reroll_count <= 0)
1452                 strbuf_addstr(sb, generic);
1453         else /* RFC may be v0, so allow -v1 to diff against v0 */
1454                 strbuf_addf(sb, rerolled, reroll_count - 1);
1455         return sb->buf;
1456 }
1457
1458 static void infer_range_diff_ranges(struct strbuf *r1,
1459                                     struct strbuf *r2,
1460                                     const char *prev,
1461                                     struct commit *origin,
1462                                     struct commit *head)
1463 {
1464         const char *head_oid = oid_to_hex(&head->object.oid);
1465
1466         if (!strstr(prev, "..")) {
1467                 strbuf_addf(r1, "%s..%s", head_oid, prev);
1468                 strbuf_addf(r2, "%s..%s", prev, head_oid);
1469         } else if (!origin) {
1470                 die(_("failed to infer range-diff ranges"));
1471         } else {
1472                 strbuf_addstr(r1, prev);
1473                 strbuf_addf(r2, "%s..%s",
1474                             oid_to_hex(&origin->object.oid), head_oid);
1475         }
1476 }
1477
1478 int cmd_format_patch(int argc, const char **argv, const char *prefix)
1479 {
1480         struct commit *commit;
1481         struct commit **list = NULL;
1482         struct rev_info rev;
1483         struct setup_revision_opt s_r_opt;
1484         int nr = 0, total, i;
1485         int use_stdout = 0;
1486         int start_number = -1;
1487         int just_numbers = 0;
1488         int ignore_if_in_upstream = 0;
1489         int cover_letter = -1;
1490         int boundary_count = 0;
1491         int no_binary_diff = 0;
1492         int zero_commit = 0;
1493         struct commit *origin = NULL;
1494         const char *in_reply_to = NULL;
1495         struct patch_ids ids;
1496         struct strbuf buf = STRBUF_INIT;
1497         int use_patch_format = 0;
1498         int quiet = 0;
1499         int reroll_count = -1;
1500         char *branch_name = NULL;
1501         char *base_commit = NULL;
1502         struct base_tree_info bases;
1503         int show_progress = 0;
1504         struct progress *progress = NULL;
1505         struct oid_array idiff_prev = OID_ARRAY_INIT;
1506         struct strbuf idiff_title = STRBUF_INIT;
1507         const char *rdiff_prev = NULL;
1508         struct strbuf rdiff1 = STRBUF_INIT;
1509         struct strbuf rdiff2 = STRBUF_INIT;
1510         struct strbuf rdiff_title = STRBUF_INIT;
1511         int creation_factor = -1;
1512
1513         const struct option builtin_format_patch_options[] = {
1514                 { OPTION_CALLBACK, 'n', "numbered", &numbered, NULL,
1515                             N_("use [PATCH n/m] even with a single patch"),
1516                             PARSE_OPT_NOARG, numbered_callback },
1517                 { OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL,
1518                             N_("use [PATCH] even with multiple patches"),
1519                             PARSE_OPT_NOARG | PARSE_OPT_NONEG, no_numbered_callback },
1520                 OPT_BOOL('s', "signoff", &do_signoff, N_("add Signed-off-by:")),
1521                 OPT_BOOL(0, "stdout", &use_stdout,
1522                             N_("print patches to standard out")),
1523                 OPT_BOOL(0, "cover-letter", &cover_letter,
1524                             N_("generate a cover letter")),
1525                 OPT_BOOL(0, "numbered-files", &just_numbers,
1526                             N_("use simple number sequence for output file names")),
1527                 OPT_STRING(0, "suffix", &fmt_patch_suffix, N_("sfx"),
1528                             N_("use <sfx> instead of '.patch'")),
1529                 OPT_INTEGER(0, "start-number", &start_number,
1530                             N_("start numbering patches at <n> instead of 1")),
1531                 OPT_INTEGER('v', "reroll-count", &reroll_count,
1532                             N_("mark the series as Nth re-roll")),
1533                 { OPTION_CALLBACK, 0, "rfc", &rev, NULL,
1534                             N_("Use [RFC PATCH] instead of [PATCH]"),
1535                             PARSE_OPT_NOARG | PARSE_OPT_NONEG, rfc_callback },
1536                 { OPTION_CALLBACK, 0, "subject-prefix", &rev, N_("prefix"),
1537                             N_("Use [<prefix>] instead of [PATCH]"),
1538                             PARSE_OPT_NONEG, subject_prefix_callback },
1539                 { OPTION_CALLBACK, 'o', "output-directory", &output_directory,
1540                             N_("dir"), N_("store resulting files in <dir>"),
1541                             PARSE_OPT_NONEG, output_directory_callback },
1542                 { OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL,
1543                             N_("don't strip/add [PATCH]"),
1544                             PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback },
1545                 OPT_BOOL(0, "no-binary", &no_binary_diff,
1546                          N_("don't output binary diffs")),
1547                 OPT_BOOL(0, "zero-commit", &zero_commit,
1548                          N_("output all-zero hash in From header")),
1549                 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream,
1550                          N_("don't include a patch matching a commit upstream")),
1551                 OPT_SET_INT_F('p', "no-stat", &use_patch_format,
1552                               N_("show patch format instead of default (patch + stat)"),
1553                               1, PARSE_OPT_NONEG),
1554                 OPT_GROUP(N_("Messaging")),
1555                 { OPTION_CALLBACK, 0, "add-header", NULL, N_("header"),
1556                             N_("add email header"), 0, header_callback },
1557                 { OPTION_CALLBACK, 0, "to", NULL, N_("email"), N_("add To: header"),
1558                             0, to_callback },
1559                 { OPTION_CALLBACK, 0, "cc", NULL, N_("email"), N_("add Cc: header"),
1560                             0, cc_callback },
1561                 { OPTION_CALLBACK, 0, "from", &from, N_("ident"),
1562                             N_("set From address to <ident> (or committer ident if absent)"),
1563                             PARSE_OPT_OPTARG, from_callback },
1564                 OPT_STRING(0, "in-reply-to", &in_reply_to, N_("message-id"),
1565                             N_("make first mail a reply to <message-id>")),
1566                 { OPTION_CALLBACK, 0, "attach", &rev, N_("boundary"),
1567                             N_("attach the patch"), PARSE_OPT_OPTARG,
1568                             attach_callback },
1569                 { OPTION_CALLBACK, 0, "inline", &rev, N_("boundary"),
1570                             N_("inline the patch"),
1571                             PARSE_OPT_OPTARG | PARSE_OPT_NONEG,
1572                             inline_callback },
1573                 { OPTION_CALLBACK, 0, "thread", &thread, N_("style"),
1574                             N_("enable message threading, styles: shallow, deep"),
1575                             PARSE_OPT_OPTARG, thread_callback },
1576                 OPT_STRING(0, "signature", &signature, N_("signature"),
1577                             N_("add a signature")),
1578                 OPT_STRING(0, "base", &base_commit, N_("base-commit"),
1579                            N_("add prerequisite tree info to the patch series")),
1580                 OPT_FILENAME(0, "signature-file", &signature_file,
1581                                 N_("add a signature from a file")),
1582                 OPT__QUIET(&quiet, N_("don't print the patch filenames")),
1583                 OPT_BOOL(0, "progress", &show_progress,
1584                          N_("show progress while generating patches")),
1585                 OPT_CALLBACK(0, "interdiff", &idiff_prev, N_("rev"),
1586                              N_("show changes against <rev> in cover letter or single patch"),
1587                              parse_opt_object_name),
1588                 OPT_STRING(0, "range-diff", &rdiff_prev, N_("refspec"),
1589                            N_("show changes against <refspec> in cover letter or single patch")),
1590                 OPT_INTEGER(0, "creation-factor", &creation_factor,
1591                             N_("percentage by which creation is weighted")),
1592                 OPT_END()
1593         };
1594
1595         extra_hdr.strdup_strings = 1;
1596         extra_to.strdup_strings = 1;
1597         extra_cc.strdup_strings = 1;
1598         init_log_defaults();
1599         git_config(git_format_config, NULL);
1600         repo_init_revisions(the_repository, &rev, prefix);
1601         rev.commit_format = CMIT_FMT_EMAIL;
1602         rev.expand_tabs_in_log_default = 0;
1603         rev.verbose_header = 1;
1604         rev.diff = 1;
1605         rev.max_parents = 1;
1606         rev.diffopt.flags.recursive = 1;
1607         rev.subject_prefix = fmt_patch_subject_prefix;
1608         memset(&s_r_opt, 0, sizeof(s_r_opt));
1609         s_r_opt.def = "HEAD";
1610         s_r_opt.revarg_opt = REVARG_COMMITTISH;
1611
1612         if (default_attach) {
1613                 rev.mime_boundary = default_attach;
1614                 rev.no_inline = 1;
1615         }
1616
1617         /*
1618          * Parse the arguments before setup_revisions(), or something
1619          * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1620          * possibly a valid SHA1.
1621          */
1622         argc = parse_options(argc, argv, prefix, builtin_format_patch_options,
1623                              builtin_format_patch_usage,
1624                              PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
1625                              PARSE_OPT_KEEP_DASHDASH);
1626
1627         if (0 < reroll_count) {
1628                 struct strbuf sprefix = STRBUF_INIT;
1629                 strbuf_addf(&sprefix, "%s v%d",
1630                             rev.subject_prefix, reroll_count);
1631                 rev.reroll_count = reroll_count;
1632                 rev.subject_prefix = strbuf_detach(&sprefix, NULL);
1633         }
1634
1635         for (i = 0; i < extra_hdr.nr; i++) {
1636                 strbuf_addstr(&buf, extra_hdr.items[i].string);
1637                 strbuf_addch(&buf, '\n');
1638         }
1639
1640         if (extra_to.nr)
1641                 strbuf_addstr(&buf, "To: ");
1642         for (i = 0; i < extra_to.nr; i++) {
1643                 if (i)
1644                         strbuf_addstr(&buf, "    ");
1645                 strbuf_addstr(&buf, extra_to.items[i].string);
1646                 if (i + 1 < extra_to.nr)
1647                         strbuf_addch(&buf, ',');
1648                 strbuf_addch(&buf, '\n');
1649         }
1650
1651         if (extra_cc.nr)
1652                 strbuf_addstr(&buf, "Cc: ");
1653         for (i = 0; i < extra_cc.nr; i++) {
1654                 if (i)
1655                         strbuf_addstr(&buf, "    ");
1656                 strbuf_addstr(&buf, extra_cc.items[i].string);
1657                 if (i + 1 < extra_cc.nr)
1658                         strbuf_addch(&buf, ',');
1659                 strbuf_addch(&buf, '\n');
1660         }
1661
1662         rev.extra_headers = strbuf_detach(&buf, NULL);
1663
1664         if (from) {
1665                 if (split_ident_line(&rev.from_ident, from, strlen(from)))
1666                         die(_("invalid ident line: %s"), from);
1667         }
1668
1669         if (start_number < 0)
1670                 start_number = 1;
1671
1672         /*
1673          * If numbered is set solely due to format.numbered in config,
1674          * and it would conflict with --keep-subject (-k) from the
1675          * command line, reset "numbered".
1676          */
1677         if (numbered && keep_subject && !numbered_cmdline_opt)
1678                 numbered = 0;
1679
1680         if (numbered && keep_subject)
1681                 die(_("-n and -k are mutually exclusive"));
1682         if (keep_subject && subject_prefix)
1683                 die(_("--subject-prefix/--rfc and -k are mutually exclusive"));
1684         rev.preserve_subject = keep_subject;
1685
1686         argc = setup_revisions(argc, argv, &rev, &s_r_opt);
1687         if (argc > 1)
1688                 die(_("unrecognized argument: %s"), argv[1]);
1689
1690         if (rev.diffopt.output_format & DIFF_FORMAT_NAME)
1691                 die(_("--name-only does not make sense"));
1692         if (rev.diffopt.output_format & DIFF_FORMAT_NAME_STATUS)
1693                 die(_("--name-status does not make sense"));
1694         if (rev.diffopt.output_format & DIFF_FORMAT_CHECKDIFF)
1695                 die(_("--check does not make sense"));
1696
1697         if (!use_patch_format &&
1698                 (!rev.diffopt.output_format ||
1699                  rev.diffopt.output_format == DIFF_FORMAT_PATCH))
1700                 rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY;
1701         if (!rev.diffopt.stat_width)
1702                 rev.diffopt.stat_width = MAIL_DEFAULT_WRAP;
1703
1704         /* Always generate a patch */
1705         rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
1706
1707         rev.zero_commit = zero_commit;
1708
1709         if (!rev.diffopt.flags.text && !no_binary_diff)
1710                 rev.diffopt.flags.binary = 1;
1711
1712         if (rev.show_notes)
1713                 init_display_notes(&rev.notes_opt);
1714
1715         if (!output_directory && !use_stdout)
1716                 output_directory = config_output_directory;
1717
1718         if (!use_stdout)
1719                 output_directory = set_outdir(prefix, output_directory);
1720         else
1721                 setup_pager();
1722
1723         if (output_directory) {
1724                 if (rev.diffopt.use_color != GIT_COLOR_ALWAYS)
1725                         rev.diffopt.use_color = GIT_COLOR_NEVER;
1726                 if (use_stdout)
1727                         die(_("standard output, or directory, which one?"));
1728                 if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
1729                         die_errno(_("Could not create directory '%s'"),
1730                                   output_directory);
1731         }
1732
1733         if (rev.pending.nr == 1) {
1734                 int check_head = 0;
1735
1736                 if (rev.max_count < 0 && !rev.show_root_diff) {
1737                         /*
1738                          * This is traditional behaviour of "git format-patch
1739                          * origin" that prepares what the origin side still
1740                          * does not have.
1741                          */
1742                         rev.pending.objects[0].item->flags |= UNINTERESTING;
1743                         add_head_to_pending(&rev);
1744                         check_head = 1;
1745                 }
1746                 /*
1747                  * Otherwise, it is "format-patch -22 HEAD", and/or
1748                  * "format-patch --root HEAD".  The user wants
1749                  * get_revision() to do the usual traversal.
1750                  */
1751
1752                 if (!strcmp(rev.pending.objects[0].name, "HEAD"))
1753                         check_head = 1;
1754
1755                 if (check_head) {
1756                         const char *ref, *v;
1757                         ref = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
1758                                                  NULL, NULL);
1759                         if (ref && skip_prefix(ref, "refs/heads/", &v))
1760                                 branch_name = xstrdup(v);
1761                         else
1762                                 branch_name = xstrdup(""); /* no branch */
1763                 }
1764         }
1765
1766         /*
1767          * We cannot move this anywhere earlier because we do want to
1768          * know if --root was given explicitly from the command line.
1769          */
1770         rev.show_root_diff = 1;
1771
1772         if (ignore_if_in_upstream) {
1773                 /* Don't say anything if head and upstream are the same. */
1774                 if (rev.pending.nr == 2) {
1775                         struct object_array_entry *o = rev.pending.objects;
1776                         if (oideq(&o[0].item->oid, &o[1].item->oid))
1777                                 goto done;
1778                 }
1779                 get_patch_ids(&rev, &ids);
1780         }
1781
1782         if (prepare_revision_walk(&rev))
1783                 die(_("revision walk setup failed"));
1784         rev.boundary = 1;
1785         while ((commit = get_revision(&rev)) != NULL) {
1786                 if (commit->object.flags & BOUNDARY) {
1787                         boundary_count++;
1788                         origin = (boundary_count == 1) ? commit : NULL;
1789                         continue;
1790                 }
1791
1792                 if (ignore_if_in_upstream && has_commit_patch_id(commit, &ids))
1793                         continue;
1794
1795                 nr++;
1796                 REALLOC_ARRAY(list, nr);
1797                 list[nr - 1] = commit;
1798         }
1799         if (nr == 0)
1800                 /* nothing to do */
1801                 goto done;
1802         total = nr;
1803         if (cover_letter == -1) {
1804                 if (config_cover_letter == COVER_AUTO)
1805                         cover_letter = (total > 1);
1806                 else
1807                         cover_letter = (config_cover_letter == COVER_ON);
1808         }
1809         if (!keep_subject && auto_number && (total > 1 || cover_letter))
1810                 numbered = 1;
1811         if (numbered)
1812                 rev.total = total + start_number - 1;
1813
1814         if (idiff_prev.nr) {
1815                 if (!cover_letter && total != 1)
1816                         die(_("--interdiff requires --cover-letter or single patch"));
1817                 rev.idiff_oid1 = &idiff_prev.oid[idiff_prev.nr - 1];
1818                 rev.idiff_oid2 = get_commit_tree_oid(list[0]);
1819                 rev.idiff_title = diff_title(&idiff_title, reroll_count,
1820                                              _("Interdiff:"),
1821                                              _("Interdiff against v%d:"));
1822         }
1823
1824         if (creation_factor < 0)
1825                 creation_factor = RANGE_DIFF_CREATION_FACTOR_DEFAULT;
1826         else if (!rdiff_prev)
1827                 die(_("--creation-factor requires --range-diff"));
1828
1829         if (rdiff_prev) {
1830                 if (!cover_letter && total != 1)
1831                         die(_("--range-diff requires --cover-letter or single patch"));
1832
1833                 infer_range_diff_ranges(&rdiff1, &rdiff2, rdiff_prev,
1834                                         origin, list[0]);
1835                 rev.rdiff1 = rdiff1.buf;
1836                 rev.rdiff2 = rdiff2.buf;
1837                 rev.creation_factor = creation_factor;
1838                 rev.rdiff_title = diff_title(&rdiff_title, reroll_count,
1839                                              _("Range-diff:"),
1840                                              _("Range-diff against v%d:"));
1841         }
1842
1843         if (!signature) {
1844                 ; /* --no-signature inhibits all signatures */
1845         } else if (signature && signature != git_version_string) {
1846                 ; /* non-default signature already set */
1847         } else if (signature_file) {
1848                 struct strbuf buf = STRBUF_INIT;
1849
1850                 if (strbuf_read_file(&buf, signature_file, 128) < 0)
1851                         die_errno(_("unable to read signature file '%s'"), signature_file);
1852                 signature = strbuf_detach(&buf, NULL);
1853         }
1854
1855         memset(&bases, 0, sizeof(bases));
1856         if (base_commit || base_auto) {
1857                 struct commit *base = get_base_commit(base_commit, list, nr);
1858                 reset_revision_walk();
1859                 clear_object_flags(UNINTERESTING);
1860                 prepare_bases(&bases, base, list, nr);
1861         }
1862
1863         if (in_reply_to || thread || cover_letter)
1864                 rev.ref_message_ids = xcalloc(1, sizeof(struct string_list));
1865         if (in_reply_to) {
1866                 const char *msgid = clean_message_id(in_reply_to);
1867                 string_list_append(rev.ref_message_ids, msgid);
1868         }
1869         rev.numbered_files = just_numbers;
1870         rev.patch_suffix = fmt_patch_suffix;
1871         if (cover_letter) {
1872                 if (thread)
1873                         gen_message_id(&rev, "cover");
1874                 make_cover_letter(&rev, use_stdout,
1875                                   origin, nr, list, branch_name, quiet);
1876                 print_bases(&bases, rev.diffopt.file);
1877                 print_signature(rev.diffopt.file);
1878                 total++;
1879                 start_number--;
1880                 /* interdiff/range-diff in cover-letter; omit from patches */
1881                 rev.idiff_oid1 = NULL;
1882                 rev.rdiff1 = NULL;
1883         }
1884         rev.add_signoff = do_signoff;
1885
1886         if (show_progress)
1887                 progress = start_delayed_progress(_("Generating patches"), total);
1888         while (0 <= --nr) {
1889                 int shown;
1890                 display_progress(progress, total - nr);
1891                 commit = list[nr];
1892                 rev.nr = total - nr + (start_number - 1);
1893                 /* Make the second and subsequent mails replies to the first */
1894                 if (thread) {
1895                         /* Have we already had a message ID? */
1896                         if (rev.message_id) {
1897                                 /*
1898                                  * For deep threading: make every mail
1899                                  * a reply to the previous one, no
1900                                  * matter what other options are set.
1901                                  *
1902                                  * For shallow threading:
1903                                  *
1904                                  * Without --cover-letter and
1905                                  * --in-reply-to, make every mail a
1906                                  * reply to the one before.
1907                                  *
1908                                  * With --in-reply-to but no
1909                                  * --cover-letter, make every mail a
1910                                  * reply to the <reply-to>.
1911                                  *
1912                                  * With --cover-letter, make every
1913                                  * mail but the cover letter a reply
1914                                  * to the cover letter.  The cover
1915                                  * letter is a reply to the
1916                                  * --in-reply-to, if specified.
1917                                  */
1918                                 if (thread == THREAD_SHALLOW
1919                                     && rev.ref_message_ids->nr > 0
1920                                     && (!cover_letter || rev.nr > 1))
1921                                         free(rev.message_id);
1922                                 else
1923                                         string_list_append(rev.ref_message_ids,
1924                                                            rev.message_id);
1925                         }
1926                         gen_message_id(&rev, oid_to_hex(&commit->object.oid));
1927                 }
1928
1929                 if (!use_stdout &&
1930                     open_next_file(rev.numbered_files ? NULL : commit, NULL, &rev, quiet))
1931                         die(_("Failed to create output files"));
1932                 shown = log_tree_commit(&rev, commit);
1933                 free_commit_buffer(commit);
1934
1935                 /* We put one extra blank line between formatted
1936                  * patches and this flag is used by log-tree code
1937                  * to see if it needs to emit a LF before showing
1938                  * the log; when using one file per patch, we do
1939                  * not want the extra blank line.
1940                  */
1941                 if (!use_stdout)
1942                         rev.shown_one = 0;
1943                 if (shown) {
1944                         print_bases(&bases, rev.diffopt.file);
1945                         if (rev.mime_boundary)
1946                                 fprintf(rev.diffopt.file, "\n--%s%s--\n\n\n",
1947                                        mime_boundary_leader,
1948                                        rev.mime_boundary);
1949                         else
1950                                 print_signature(rev.diffopt.file);
1951                 }
1952                 if (!use_stdout)
1953                         fclose(rev.diffopt.file);
1954         }
1955         stop_progress(&progress);
1956         free(list);
1957         free(branch_name);
1958         string_list_clear(&extra_to, 0);
1959         string_list_clear(&extra_cc, 0);
1960         string_list_clear(&extra_hdr, 0);
1961         if (ignore_if_in_upstream)
1962                 free_patch_ids(&ids);
1963
1964 done:
1965         oid_array_clear(&idiff_prev);
1966         strbuf_release(&idiff_title);
1967         strbuf_release(&rdiff1);
1968         strbuf_release(&rdiff2);
1969         strbuf_release(&rdiff_title);
1970         return 0;
1971 }
1972
1973 static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
1974 {
1975         struct object_id oid;
1976         if (get_oid(arg, &oid) == 0) {
1977                 struct commit *commit = lookup_commit_reference(the_repository,
1978                                                                 &oid);
1979                 if (commit) {
1980                         commit->object.flags |= flags;
1981                         add_pending_object(revs, &commit->object, arg);
1982                         return 0;
1983                 }
1984         }
1985         return -1;
1986 }
1987
1988 static const char * const cherry_usage[] = {
1989         N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
1990         NULL
1991 };
1992
1993 static void print_commit(char sign, struct commit *commit, int verbose,
1994                          int abbrev, FILE *file)
1995 {
1996         if (!verbose) {
1997                 fprintf(file, "%c %s\n", sign,
1998                        find_unique_abbrev(&commit->object.oid, abbrev));
1999         } else {
2000                 struct strbuf buf = STRBUF_INIT;
2001                 pp_commit_easy(CMIT_FMT_ONELINE, commit, &buf);
2002                 fprintf(file, "%c %s %s\n", sign,
2003                        find_unique_abbrev(&commit->object.oid, abbrev),
2004                        buf.buf);
2005                 strbuf_release(&buf);
2006         }
2007 }
2008
2009 int cmd_cherry(int argc, const char **argv, const char *prefix)
2010 {
2011         struct rev_info revs;
2012         struct patch_ids ids;
2013         struct commit *commit;
2014         struct commit_list *list = NULL;
2015         struct branch *current_branch;
2016         const char *upstream;
2017         const char *head = "HEAD";
2018         const char *limit = NULL;
2019         int verbose = 0, abbrev = 0;
2020
2021         struct option options[] = {
2022                 OPT__ABBREV(&abbrev),
2023                 OPT__VERBOSE(&verbose, N_("be verbose")),
2024                 OPT_END()
2025         };
2026
2027         argc = parse_options(argc, argv, prefix, options, cherry_usage, 0);
2028
2029         switch (argc) {
2030         case 3:
2031                 limit = argv[2];
2032                 /* FALLTHROUGH */
2033         case 2:
2034                 head = argv[1];
2035                 /* FALLTHROUGH */
2036         case 1:
2037                 upstream = argv[0];
2038                 break;
2039         default:
2040                 current_branch = branch_get(NULL);
2041                 upstream = branch_get_upstream(current_branch, NULL);
2042                 if (!upstream) {
2043                         fprintf(stderr, _("Could not find a tracked"
2044                                         " remote branch, please"
2045                                         " specify <upstream> manually.\n"));
2046                         usage_with_options(cherry_usage, options);
2047                 }
2048         }
2049
2050         repo_init_revisions(the_repository, &revs, prefix);
2051         revs.max_parents = 1;
2052
2053         if (add_pending_commit(head, &revs, 0))
2054                 die(_("Unknown commit %s"), head);
2055         if (add_pending_commit(upstream, &revs, UNINTERESTING))
2056                 die(_("Unknown commit %s"), upstream);
2057
2058         /* Don't say anything if head and upstream are the same. */
2059         if (revs.pending.nr == 2) {
2060                 struct object_array_entry *o = revs.pending.objects;
2061                 if (oideq(&o[0].item->oid, &o[1].item->oid))
2062                         return 0;
2063         }
2064
2065         get_patch_ids(&revs, &ids);
2066
2067         if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
2068                 die(_("Unknown commit %s"), limit);
2069
2070         /* reverse the list of commits */
2071         if (prepare_revision_walk(&revs))
2072                 die(_("revision walk setup failed"));
2073         while ((commit = get_revision(&revs)) != NULL) {
2074                 commit_list_insert(commit, &list);
2075         }
2076
2077         while (list) {
2078                 char sign = '+';
2079
2080                 commit = list->item;
2081                 if (has_commit_patch_id(commit, &ids))
2082                         sign = '-';
2083                 print_commit(sign, commit, verbose, abbrev, revs.diffopt.file);
2084                 list = list->next;
2085         }
2086
2087         free_patch_ids(&ids);
2088         return 0;
2089 }