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