]> git.ipfire.org Git - thirdparty/git.git/blob - builtin/log.c
builtin/log: honor log.decorate
[thirdparty/git.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 "refs.h"
9 #include "color.h"
10 #include "commit.h"
11 #include "diff.h"
12 #include "revision.h"
13 #include "log-tree.h"
14 #include "builtin.h"
15 #include "tag.h"
16 #include "reflog-walk.h"
17 #include "patch-ids.h"
18 #include "run-command.h"
19 #include "shortlog.h"
20 #include "remote.h"
21 #include "string-list.h"
22 #include "parse-options.h"
23 #include "line-log.h"
24 #include "branch.h"
25 #include "streaming.h"
26 #include "version.h"
27 #include "mailmap.h"
28 #include "gpg-interface.h"
29
30 /* Set a default date-time format for git log ("log.date" config variable) */
31 static const char *default_date_mode = NULL;
32
33 static int default_abbrev_commit;
34 static int default_show_root = 1;
35 static int default_follow;
36 static int default_show_signature;
37 static int decoration_style;
38 static int decoration_given;
39 static int use_mailmap_config;
40 static const char *fmt_patch_subject_prefix = "PATCH";
41 static const char *fmt_pretty;
42
43 static const char * const builtin_log_usage[] = {
44 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
45 N_("git show [<options>] <object>..."),
46 NULL
47 };
48
49 struct line_opt_callback_data {
50 struct rev_info *rev;
51 const char *prefix;
52 struct string_list args;
53 };
54
55 static int auto_decoration_style(void)
56 {
57 return (isatty(1) || pager_in_use()) ? DECORATE_SHORT_REFS : 0;
58 }
59
60 static int parse_decoration_style(const char *var, const char *value)
61 {
62 switch (git_config_maybe_bool(var, value)) {
63 case 1:
64 return DECORATE_SHORT_REFS;
65 case 0:
66 return 0;
67 default:
68 break;
69 }
70 if (!strcmp(value, "full"))
71 return DECORATE_FULL_REFS;
72 else if (!strcmp(value, "short"))
73 return DECORATE_SHORT_REFS;
74 else if (!strcmp(value, "auto"))
75 return auto_decoration_style();
76 return -1;
77 }
78
79 static int decorate_callback(const struct option *opt, const char *arg, int unset)
80 {
81 if (unset)
82 decoration_style = 0;
83 else if (arg)
84 decoration_style = parse_decoration_style("command line", arg);
85 else
86 decoration_style = DECORATE_SHORT_REFS;
87
88 if (decoration_style < 0)
89 die(_("invalid --decorate option: %s"), arg);
90
91 decoration_given = 1;
92
93 return 0;
94 }
95
96 static int log_line_range_callback(const struct option *option, const char *arg, int unset)
97 {
98 struct line_opt_callback_data *data = option->value;
99
100 if (!arg)
101 return -1;
102
103 data->rev->line_level_traverse = 1;
104 string_list_append(&data->args, arg);
105
106 return 0;
107 }
108
109 static void init_log_defaults(void)
110 {
111 init_grep_defaults();
112 init_diff_ui_defaults();
113
114 decoration_style = auto_decoration_style();
115 }
116
117 static void cmd_log_init_defaults(struct rev_info *rev)
118 {
119 if (fmt_pretty)
120 get_commit_format(fmt_pretty, rev);
121 if (default_follow)
122 DIFF_OPT_SET(&rev->diffopt, DEFAULT_FOLLOW_RENAMES);
123 rev->verbose_header = 1;
124 DIFF_OPT_SET(&rev->diffopt, RECURSIVE);
125 rev->diffopt.stat_width = -1; /* use full terminal width */
126 rev->diffopt.stat_graph_width = -1; /* respect statGraphWidth config */
127 rev->abbrev_commit = default_abbrev_commit;
128 rev->show_root_diff = default_show_root;
129 rev->subject_prefix = fmt_patch_subject_prefix;
130 rev->show_signature = default_show_signature;
131 DIFF_OPT_SET(&rev->diffopt, ALLOW_TEXTCONV);
132
133 if (default_date_mode)
134 parse_date_format(default_date_mode, &rev->date_mode);
135 rev->diffopt.touched_flags = 0;
136 }
137
138 static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
139 struct rev_info *rev, struct setup_revision_opt *opt)
140 {
141 struct userformat_want w;
142 int quiet = 0, source = 0, mailmap = 0;
143 static struct line_opt_callback_data line_cb = {NULL, NULL, STRING_LIST_INIT_DUP};
144
145 const struct option builtin_log_options[] = {
146 OPT__QUIET(&quiet, N_("suppress diff output")),
147 OPT_BOOL(0, "source", &source, N_("show source")),
148 OPT_BOOL(0, "use-mailmap", &mailmap, N_("Use mail map file")),
149 { OPTION_CALLBACK, 0, "decorate", NULL, NULL, N_("decorate options"),
150 PARSE_OPT_OPTARG, decorate_callback},
151 OPT_CALLBACK('L', NULL, &line_cb, "n,m:file",
152 N_("Process line range n,m in file, counting from 1"),
153 log_line_range_callback),
154 OPT_END()
155 };
156
157 line_cb.rev = rev;
158 line_cb.prefix = prefix;
159
160 mailmap = use_mailmap_config;
161 argc = parse_options(argc, argv, prefix,
162 builtin_log_options, builtin_log_usage,
163 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
164 PARSE_OPT_KEEP_DASHDASH);
165
166 if (quiet)
167 rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
168 argc = setup_revisions(argc, argv, rev, opt);
169
170 /* Any arguments at this point are not recognized */
171 if (argc > 1)
172 die(_("unrecognized argument: %s"), argv[1]);
173
174 memset(&w, 0, sizeof(w));
175 userformat_find_requirements(NULL, &w);
176
177 if (!rev->show_notes_given && (!rev->pretty_given || w.notes))
178 rev->show_notes = 1;
179 if (rev->show_notes)
180 init_display_notes(&rev->notes_opt);
181
182 if (rev->diffopt.pickaxe || rev->diffopt.filter ||
183 DIFF_OPT_TST(&rev->diffopt, FOLLOW_RENAMES))
184 rev->always_show_header = 0;
185
186 if (source)
187 rev->show_source = 1;
188
189 if (mailmap) {
190 rev->mailmap = xcalloc(1, sizeof(struct string_list));
191 read_mailmap(rev->mailmap, NULL);
192 }
193
194 if (rev->pretty_given && rev->commit_format == CMIT_FMT_RAW) {
195 /*
196 * "log --pretty=raw" is special; ignore UI oriented
197 * configuration variables such as decoration.
198 */
199 if (!decoration_given)
200 decoration_style = 0;
201 if (!rev->abbrev_commit_given)
202 rev->abbrev_commit = 0;
203 }
204
205 if (decoration_style) {
206 rev->show_decorations = 1;
207 load_ref_decorations(decoration_style);
208 }
209
210 if (rev->line_level_traverse)
211 line_log_init(rev, line_cb.prefix, &line_cb.args);
212
213 setup_pager();
214 }
215
216 static void cmd_log_init(int argc, const char **argv, const char *prefix,
217 struct rev_info *rev, struct setup_revision_opt *opt)
218 {
219 cmd_log_init_defaults(rev);
220 cmd_log_init_finish(argc, argv, prefix, rev, opt);
221 }
222
223 /*
224 * This gives a rough estimate for how many commits we
225 * will print out in the list.
226 */
227 static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
228 {
229 int n = 0;
230
231 while (list) {
232 struct commit *commit = list->item;
233 unsigned int flags = commit->object.flags;
234 list = list->next;
235 if (!(flags & (TREESAME | UNINTERESTING)))
236 n++;
237 }
238 return n;
239 }
240
241 static void show_early_header(struct rev_info *rev, const char *stage, int nr)
242 {
243 if (rev->shown_one) {
244 rev->shown_one = 0;
245 if (rev->commit_format != CMIT_FMT_ONELINE)
246 putchar(rev->diffopt.line_termination);
247 }
248 fprintf(rev->diffopt.file, _("Final output: %d %s\n"), nr, stage);
249 }
250
251 static struct itimerval early_output_timer;
252
253 static void log_show_early(struct rev_info *revs, struct commit_list *list)
254 {
255 int i = revs->early_output, close_file = revs->diffopt.close_file;
256 int show_header = 1;
257
258 revs->diffopt.close_file = 0;
259 sort_in_topological_order(&list, revs->sort_order);
260 while (list && i) {
261 struct commit *commit = list->item;
262 switch (simplify_commit(revs, commit)) {
263 case commit_show:
264 if (show_header) {
265 int n = estimate_commit_count(revs, list);
266 show_early_header(revs, "incomplete", n);
267 show_header = 0;
268 }
269 log_tree_commit(revs, commit);
270 i--;
271 break;
272 case commit_ignore:
273 break;
274 case commit_error:
275 if (close_file)
276 fclose(revs->diffopt.file);
277 return;
278 }
279 list = list->next;
280 }
281
282 /* Did we already get enough commits for the early output? */
283 if (!i) {
284 if (close_file)
285 fclose(revs->diffopt.file);
286 return;
287 }
288
289 /*
290 * ..if no, then repeat it twice a second until we
291 * do.
292 *
293 * NOTE! We don't use "it_interval", because if the
294 * reader isn't listening, we want our output to be
295 * throttled by the writing, and not have the timer
296 * trigger every second even if we're blocked on a
297 * reader!
298 */
299 early_output_timer.it_value.tv_sec = 0;
300 early_output_timer.it_value.tv_usec = 500000;
301 setitimer(ITIMER_REAL, &early_output_timer, NULL);
302 }
303
304 static void early_output(int signal)
305 {
306 show_early_output = log_show_early;
307 }
308
309 static void setup_early_output(struct rev_info *rev)
310 {
311 struct sigaction sa;
312
313 /*
314 * Set up the signal handler, minimally intrusively:
315 * we only set a single volatile integer word (not
316 * using sigatomic_t - trying to avoid unnecessary
317 * system dependencies and headers), and using
318 * SA_RESTART.
319 */
320 memset(&sa, 0, sizeof(sa));
321 sa.sa_handler = early_output;
322 sigemptyset(&sa.sa_mask);
323 sa.sa_flags = SA_RESTART;
324 sigaction(SIGALRM, &sa, NULL);
325
326 /*
327 * If we can get the whole output in less than a
328 * tenth of a second, don't even bother doing the
329 * early-output thing..
330 *
331 * This is a one-time-only trigger.
332 */
333 early_output_timer.it_value.tv_sec = 0;
334 early_output_timer.it_value.tv_usec = 100000;
335 setitimer(ITIMER_REAL, &early_output_timer, NULL);
336 }
337
338 static void finish_early_output(struct rev_info *rev)
339 {
340 int n = estimate_commit_count(rev, rev->commits);
341 signal(SIGALRM, SIG_IGN);
342 show_early_header(rev, "done", n);
343 }
344
345 static int cmd_log_walk(struct rev_info *rev)
346 {
347 struct commit *commit;
348 int saved_nrl = 0;
349 int saved_dcctc = 0, close_file = rev->diffopt.close_file;
350
351 if (rev->early_output)
352 setup_early_output(rev);
353
354 if (prepare_revision_walk(rev))
355 die(_("revision walk setup failed"));
356
357 if (rev->early_output)
358 finish_early_output(rev);
359
360 /*
361 * For --check and --exit-code, the exit code is based on CHECK_FAILED
362 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
363 * retain that state information if replacing rev->diffopt in this loop
364 */
365 rev->diffopt.close_file = 0;
366 while ((commit = get_revision(rev)) != NULL) {
367 if (!log_tree_commit(rev, commit) && rev->max_count >= 0)
368 /*
369 * We decremented max_count in get_revision,
370 * but we didn't actually show the commit.
371 */
372 rev->max_count++;
373 if (!rev->reflog_info) {
374 /* we allow cycles in reflog ancestry */
375 free_commit_buffer(commit);
376 }
377 free_commit_list(commit->parents);
378 commit->parents = NULL;
379 if (saved_nrl < rev->diffopt.needed_rename_limit)
380 saved_nrl = rev->diffopt.needed_rename_limit;
381 if (rev->diffopt.degraded_cc_to_c)
382 saved_dcctc = 1;
383 }
384 rev->diffopt.degraded_cc_to_c = saved_dcctc;
385 rev->diffopt.needed_rename_limit = saved_nrl;
386 if (close_file)
387 fclose(rev->diffopt.file);
388
389 if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
390 DIFF_OPT_TST(&rev->diffopt, CHECK_FAILED)) {
391 return 02;
392 }
393 return diff_result_code(&rev->diffopt, 0);
394 }
395
396 static int git_log_config(const char *var, const char *value, void *cb)
397 {
398 const char *slot_name;
399
400 if (!strcmp(var, "format.pretty"))
401 return git_config_string(&fmt_pretty, var, value);
402 if (!strcmp(var, "format.subjectprefix"))
403 return git_config_string(&fmt_patch_subject_prefix, var, value);
404 if (!strcmp(var, "log.abbrevcommit")) {
405 default_abbrev_commit = git_config_bool(var, value);
406 return 0;
407 }
408 if (!strcmp(var, "log.date"))
409 return git_config_string(&default_date_mode, var, value);
410 if (!strcmp(var, "log.decorate")) {
411 decoration_style = parse_decoration_style(var, value);
412 if (decoration_style < 0)
413 decoration_style = 0; /* maybe warn? */
414 return 0;
415 }
416 if (!strcmp(var, "log.showroot")) {
417 default_show_root = git_config_bool(var, value);
418 return 0;
419 }
420 if (!strcmp(var, "log.follow")) {
421 default_follow = git_config_bool(var, value);
422 return 0;
423 }
424 if (skip_prefix(var, "color.decorate.", &slot_name))
425 return parse_decorate_color_config(var, slot_name, value);
426 if (!strcmp(var, "log.mailmap")) {
427 use_mailmap_config = git_config_bool(var, value);
428 return 0;
429 }
430 if (!strcmp(var, "log.showsignature")) {
431 default_show_signature = git_config_bool(var, value);
432 return 0;
433 }
434
435 if (grep_config(var, value, cb) < 0)
436 return -1;
437 if (git_gpg_config(var, value, cb) < 0)
438 return -1;
439 return git_diff_ui_config(var, value, cb);
440 }
441
442 int cmd_whatchanged(int argc, const char **argv, const char *prefix)
443 {
444 struct rev_info rev;
445 struct setup_revision_opt opt;
446
447 init_log_defaults();
448 git_config(git_log_config, NULL);
449
450 init_revisions(&rev, prefix);
451 rev.diff = 1;
452 rev.simplify_history = 0;
453 memset(&opt, 0, sizeof(opt));
454 opt.def = "HEAD";
455 opt.revarg_opt = REVARG_COMMITTISH;
456 cmd_log_init(argc, argv, prefix, &rev, &opt);
457 if (!rev.diffopt.output_format)
458 rev.diffopt.output_format = DIFF_FORMAT_RAW;
459 return cmd_log_walk(&rev);
460 }
461
462 static void show_tagger(char *buf, int len, struct rev_info *rev)
463 {
464 struct strbuf out = STRBUF_INIT;
465 struct pretty_print_context pp = {0};
466
467 pp.fmt = rev->commit_format;
468 pp.date_mode = rev->date_mode;
469 pp_user_info(&pp, "Tagger", &out, buf, get_log_output_encoding());
470 fprintf(rev->diffopt.file, "%s", out.buf);
471 strbuf_release(&out);
472 }
473
474 static int show_blob_object(const struct object_id *oid, struct rev_info *rev, const char *obj_name)
475 {
476 struct object_id oidc;
477 struct object_context obj_context;
478 char *buf;
479 unsigned long size;
480
481 fflush(rev->diffopt.file);
482 if (!DIFF_OPT_TOUCHED(&rev->diffopt, ALLOW_TEXTCONV) ||
483 !DIFF_OPT_TST(&rev->diffopt, ALLOW_TEXTCONV))
484 return stream_blob_to_fd(1, oid, NULL, 0);
485
486 if (get_sha1_with_context(obj_name, 0, oidc.hash, &obj_context))
487 die(_("Not a valid object name %s"), obj_name);
488 if (!obj_context.path[0] ||
489 !textconv_object(obj_context.path, obj_context.mode, &oidc, 1, &buf, &size))
490 return stream_blob_to_fd(1, oid, NULL, 0);
491
492 if (!buf)
493 die(_("git show %s: bad file"), obj_name);
494
495 write_or_die(1, buf, size);
496 return 0;
497 }
498
499 static int show_tag_object(const struct object_id *oid, struct rev_info *rev)
500 {
501 unsigned long size;
502 enum object_type type;
503 char *buf = read_sha1_file(oid->hash, &type, &size);
504 int offset = 0;
505
506 if (!buf)
507 return error(_("Could not read object %s"), oid_to_hex(oid));
508
509 assert(type == OBJ_TAG);
510 while (offset < size && buf[offset] != '\n') {
511 int new_offset = offset + 1;
512 while (new_offset < size && buf[new_offset++] != '\n')
513 ; /* do nothing */
514 if (starts_with(buf + offset, "tagger "))
515 show_tagger(buf + offset + 7,
516 new_offset - offset - 7, rev);
517 offset = new_offset;
518 }
519
520 if (offset < size)
521 fwrite(buf + offset, size - offset, 1, rev->diffopt.file);
522 free(buf);
523 return 0;
524 }
525
526 static int show_tree_object(const unsigned char *sha1,
527 struct strbuf *base,
528 const char *pathname, unsigned mode, int stage, void *context)
529 {
530 FILE *file = context;
531 fprintf(file, "%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
532 return 0;
533 }
534
535 static void show_setup_revisions_tweak(struct rev_info *rev,
536 struct setup_revision_opt *opt)
537 {
538 if (rev->ignore_merges) {
539 /* There was no "-m" on the command line */
540 rev->ignore_merges = 0;
541 if (!rev->first_parent_only && !rev->combine_merges) {
542 /* No "--first-parent", "-c", or "--cc" */
543 rev->combine_merges = 1;
544 rev->dense_combined_merges = 1;
545 }
546 }
547 if (!rev->diffopt.output_format)
548 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
549 }
550
551 int cmd_show(int argc, const char **argv, const char *prefix)
552 {
553 struct rev_info rev;
554 struct object_array_entry *objects;
555 struct setup_revision_opt opt;
556 struct pathspec match_all;
557 int i, count, ret = 0;
558
559 init_log_defaults();
560 git_config(git_log_config, NULL);
561
562 memset(&match_all, 0, sizeof(match_all));
563 init_revisions(&rev, prefix);
564 rev.diff = 1;
565 rev.always_show_header = 1;
566 rev.no_walk = REVISION_WALK_NO_WALK_SORTED;
567 rev.diffopt.stat_width = -1; /* Scale to real terminal size */
568
569 memset(&opt, 0, sizeof(opt));
570 opt.def = "HEAD";
571 opt.tweak = show_setup_revisions_tweak;
572 cmd_log_init(argc, argv, prefix, &rev, &opt);
573
574 if (!rev.no_walk)
575 return cmd_log_walk(&rev);
576
577 count = rev.pending.nr;
578 objects = rev.pending.objects;
579 for (i = 0; i < count && !ret; i++) {
580 struct object *o = objects[i].item;
581 const char *name = objects[i].name;
582 switch (o->type) {
583 case OBJ_BLOB:
584 ret = show_blob_object(&o->oid, &rev, name);
585 break;
586 case OBJ_TAG: {
587 struct tag *t = (struct tag *)o;
588
589 if (rev.shown_one)
590 putchar('\n');
591 fprintf(rev.diffopt.file, "%stag %s%s\n",
592 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
593 t->tag,
594 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
595 ret = show_tag_object(&o->oid, &rev);
596 rev.shown_one = 1;
597 if (ret)
598 break;
599 o = parse_object(t->tagged->oid.hash);
600 if (!o)
601 ret = error(_("Could not read object %s"),
602 oid_to_hex(&t->tagged->oid));
603 objects[i].item = o;
604 i--;
605 break;
606 }
607 case OBJ_TREE:
608 if (rev.shown_one)
609 putchar('\n');
610 fprintf(rev.diffopt.file, "%stree %s%s\n\n",
611 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
612 name,
613 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
614 read_tree_recursive((struct tree *)o, "", 0, 0, &match_all,
615 show_tree_object, rev.diffopt.file);
616 rev.shown_one = 1;
617 break;
618 case OBJ_COMMIT:
619 rev.pending.nr = rev.pending.alloc = 0;
620 rev.pending.objects = NULL;
621 add_object_array(o, name, &rev.pending);
622 ret = cmd_log_walk(&rev);
623 break;
624 default:
625 ret = error(_("Unknown type: %d"), o->type);
626 }
627 }
628 free(objects);
629 return ret;
630 }
631
632 /*
633 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
634 */
635 int cmd_log_reflog(int argc, const char **argv, const char *prefix)
636 {
637 struct rev_info rev;
638 struct setup_revision_opt opt;
639
640 init_log_defaults();
641 git_config(git_log_config, NULL);
642
643 init_revisions(&rev, prefix);
644 init_reflog_walk(&rev.reflog_info);
645 rev.verbose_header = 1;
646 memset(&opt, 0, sizeof(opt));
647 opt.def = "HEAD";
648 cmd_log_init_defaults(&rev);
649 rev.abbrev_commit = 1;
650 rev.commit_format = CMIT_FMT_ONELINE;
651 rev.use_terminator = 1;
652 rev.always_show_header = 1;
653 cmd_log_init_finish(argc, argv, prefix, &rev, &opt);
654
655 return cmd_log_walk(&rev);
656 }
657
658 static void log_setup_revisions_tweak(struct rev_info *rev,
659 struct setup_revision_opt *opt)
660 {
661 if (DIFF_OPT_TST(&rev->diffopt, DEFAULT_FOLLOW_RENAMES) &&
662 rev->prune_data.nr == 1)
663 DIFF_OPT_SET(&rev->diffopt, FOLLOW_RENAMES);
664
665 /* Turn --cc/-c into -p --cc/-c when -p was not given */
666 if (!rev->diffopt.output_format && rev->combine_merges)
667 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
668
669 /* Turn -m on when --cc/-c was given */
670 if (rev->combine_merges)
671 rev->ignore_merges = 0;
672 }
673
674 int cmd_log(int argc, const char **argv, const char *prefix)
675 {
676 struct rev_info rev;
677 struct setup_revision_opt opt;
678
679 init_log_defaults();
680 git_config(git_log_config, NULL);
681
682 init_revisions(&rev, prefix);
683 rev.always_show_header = 1;
684 memset(&opt, 0, sizeof(opt));
685 opt.def = "HEAD";
686 opt.revarg_opt = REVARG_COMMITTISH;
687 opt.tweak = log_setup_revisions_tweak;
688 cmd_log_init(argc, argv, prefix, &rev, &opt);
689 return cmd_log_walk(&rev);
690 }
691
692 /* format-patch */
693
694 static const char *fmt_patch_suffix = ".patch";
695 static int numbered = 0;
696 static int auto_number = 1;
697
698 static char *default_attach = NULL;
699
700 static struct string_list extra_hdr = STRING_LIST_INIT_NODUP;
701 static struct string_list extra_to = STRING_LIST_INIT_NODUP;
702 static struct string_list extra_cc = STRING_LIST_INIT_NODUP;
703
704 static void add_header(const char *value)
705 {
706 struct string_list_item *item;
707 int len = strlen(value);
708 while (len && value[len - 1] == '\n')
709 len--;
710
711 if (!strncasecmp(value, "to: ", 4)) {
712 item = string_list_append(&extra_to, value + 4);
713 len -= 4;
714 } else if (!strncasecmp(value, "cc: ", 4)) {
715 item = string_list_append(&extra_cc, value + 4);
716 len -= 4;
717 } else {
718 item = string_list_append(&extra_hdr, value);
719 }
720
721 item->string[len] = '\0';
722 }
723
724 #define THREAD_SHALLOW 1
725 #define THREAD_DEEP 2
726 static int thread;
727 static int do_signoff;
728 static int base_auto;
729 static char *from;
730 static const char *signature = git_version_string;
731 static const char *signature_file;
732 static int config_cover_letter;
733 static const char *config_output_directory;
734
735 enum {
736 COVER_UNSET,
737 COVER_OFF,
738 COVER_ON,
739 COVER_AUTO
740 };
741
742 static int git_format_config(const char *var, const char *value, void *cb)
743 {
744 if (!strcmp(var, "format.headers")) {
745 if (!value)
746 die(_("format.headers without value"));
747 add_header(value);
748 return 0;
749 }
750 if (!strcmp(var, "format.suffix"))
751 return git_config_string(&fmt_patch_suffix, var, value);
752 if (!strcmp(var, "format.to")) {
753 if (!value)
754 return config_error_nonbool(var);
755 string_list_append(&extra_to, value);
756 return 0;
757 }
758 if (!strcmp(var, "format.cc")) {
759 if (!value)
760 return config_error_nonbool(var);
761 string_list_append(&extra_cc, value);
762 return 0;
763 }
764 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") ||
765 !strcmp(var, "color.ui") || !strcmp(var, "diff.submodule")) {
766 return 0;
767 }
768 if (!strcmp(var, "format.numbered")) {
769 if (value && !strcasecmp(value, "auto")) {
770 auto_number = 1;
771 return 0;
772 }
773 numbered = git_config_bool(var, value);
774 auto_number = auto_number && numbered;
775 return 0;
776 }
777 if (!strcmp(var, "format.attach")) {
778 if (value && *value)
779 default_attach = xstrdup(value);
780 else
781 default_attach = xstrdup(git_version_string);
782 return 0;
783 }
784 if (!strcmp(var, "format.thread")) {
785 if (value && !strcasecmp(value, "deep")) {
786 thread = THREAD_DEEP;
787 return 0;
788 }
789 if (value && !strcasecmp(value, "shallow")) {
790 thread = THREAD_SHALLOW;
791 return 0;
792 }
793 thread = git_config_bool(var, value) && THREAD_SHALLOW;
794 return 0;
795 }
796 if (!strcmp(var, "format.signoff")) {
797 do_signoff = git_config_bool(var, value);
798 return 0;
799 }
800 if (!strcmp(var, "format.signature"))
801 return git_config_string(&signature, var, value);
802 if (!strcmp(var, "format.signaturefile"))
803 return git_config_pathname(&signature_file, var, value);
804 if (!strcmp(var, "format.coverletter")) {
805 if (value && !strcasecmp(value, "auto")) {
806 config_cover_letter = COVER_AUTO;
807 return 0;
808 }
809 config_cover_letter = git_config_bool(var, value) ? COVER_ON : COVER_OFF;
810 return 0;
811 }
812 if (!strcmp(var, "format.outputdirectory"))
813 return git_config_string(&config_output_directory, var, value);
814 if (!strcmp(var, "format.useautobase")) {
815 base_auto = git_config_bool(var, value);
816 return 0;
817 }
818 if (!strcmp(var, "format.from")) {
819 int b = git_config_maybe_bool(var, value);
820 free(from);
821 if (b < 0)
822 from = xstrdup(value);
823 else if (b)
824 from = xstrdup(git_committer_info(IDENT_NO_DATE));
825 else
826 from = NULL;
827 return 0;
828 }
829
830 return git_log_config(var, value, cb);
831 }
832
833 static const char *output_directory = NULL;
834 static int outdir_offset;
835
836 static int open_next_file(struct commit *commit, const char *subject,
837 struct rev_info *rev, int quiet)
838 {
839 struct strbuf filename = STRBUF_INIT;
840 int suffix_len = strlen(rev->patch_suffix) + 1;
841
842 if (output_directory) {
843 strbuf_addstr(&filename, output_directory);
844 if (filename.len >=
845 PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len)
846 return error(_("name of output directory is too long"));
847 strbuf_complete(&filename, '/');
848 }
849
850 if (rev->numbered_files)
851 strbuf_addf(&filename, "%d", rev->nr);
852 else if (commit)
853 fmt_output_commit(&filename, commit, rev);
854 else
855 fmt_output_subject(&filename, subject, rev);
856
857 if (!quiet)
858 printf("%s\n", filename.buf + outdir_offset);
859
860 if ((rev->diffopt.file = fopen(filename.buf, "w")) == NULL)
861 return error(_("Cannot open patch file %s"), filename.buf);
862
863 strbuf_release(&filename);
864 return 0;
865 }
866
867 static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids)
868 {
869 struct rev_info check_rev;
870 struct commit *commit, *c1, *c2;
871 struct object *o1, *o2;
872 unsigned flags1, flags2;
873
874 if (rev->pending.nr != 2)
875 die(_("Need exactly one range."));
876
877 o1 = rev->pending.objects[0].item;
878 o2 = rev->pending.objects[1].item;
879 flags1 = o1->flags;
880 flags2 = o2->flags;
881 c1 = lookup_commit_reference(o1->oid.hash);
882 c2 = lookup_commit_reference(o2->oid.hash);
883
884 if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
885 die(_("Not a range."));
886
887 init_patch_ids(ids);
888
889 /* given a range a..b get all patch ids for b..a */
890 init_revisions(&check_rev, rev->prefix);
891 check_rev.max_parents = 1;
892 o1->flags ^= UNINTERESTING;
893 o2->flags ^= UNINTERESTING;
894 add_pending_object(&check_rev, o1, "o1");
895 add_pending_object(&check_rev, o2, "o2");
896 if (prepare_revision_walk(&check_rev))
897 die(_("revision walk setup failed"));
898
899 while ((commit = get_revision(&check_rev)) != NULL) {
900 add_commit_patch_id(commit, ids);
901 }
902
903 /* reset for next revision walk */
904 clear_commit_marks(c1, SEEN | UNINTERESTING | SHOWN | ADDED);
905 clear_commit_marks(c2, SEEN | UNINTERESTING | SHOWN | ADDED);
906 o1->flags = flags1;
907 o2->flags = flags2;
908 }
909
910 static void gen_message_id(struct rev_info *info, char *base)
911 {
912 struct strbuf buf = STRBUF_INIT;
913 strbuf_addf(&buf, "%s.%lu.git.%s", base,
914 (unsigned long) time(NULL),
915 git_committer_info(IDENT_NO_NAME|IDENT_NO_DATE|IDENT_STRICT));
916 info->message_id = strbuf_detach(&buf, NULL);
917 }
918
919 static void print_signature(FILE *file)
920 {
921 if (!signature || !*signature)
922 return;
923
924 fprintf(file, "-- \n%s", signature);
925 if (signature[strlen(signature)-1] != '\n')
926 putc('\n', file);
927 putc('\n', file);
928 }
929
930 static void add_branch_description(struct strbuf *buf, const char *branch_name)
931 {
932 struct strbuf desc = STRBUF_INIT;
933 if (!branch_name || !*branch_name)
934 return;
935 read_branch_desc(&desc, branch_name);
936 if (desc.len) {
937 strbuf_addch(buf, '\n');
938 strbuf_addbuf(buf, &desc);
939 strbuf_addch(buf, '\n');
940 }
941 strbuf_release(&desc);
942 }
943
944 static char *find_branch_name(struct rev_info *rev)
945 {
946 int i, positive = -1;
947 struct object_id branch_oid;
948 const struct object_id *tip_oid;
949 const char *ref, *v;
950 char *full_ref, *branch = NULL;
951
952 for (i = 0; i < rev->cmdline.nr; i++) {
953 if (rev->cmdline.rev[i].flags & UNINTERESTING)
954 continue;
955 if (positive < 0)
956 positive = i;
957 else
958 return NULL;
959 }
960 if (positive < 0)
961 return NULL;
962 ref = rev->cmdline.rev[positive].name;
963 tip_oid = &rev->cmdline.rev[positive].item->oid;
964 if (dwim_ref(ref, strlen(ref), branch_oid.hash, &full_ref) &&
965 skip_prefix(full_ref, "refs/heads/", &v) &&
966 !oidcmp(tip_oid, &branch_oid))
967 branch = xstrdup(v);
968 free(full_ref);
969 return branch;
970 }
971
972 static void make_cover_letter(struct rev_info *rev, int use_stdout,
973 struct commit *origin,
974 int nr, struct commit **list,
975 const char *branch_name,
976 int quiet)
977 {
978 const char *committer;
979 const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
980 const char *msg;
981 struct shortlog log;
982 struct strbuf sb = STRBUF_INIT;
983 int i;
984 const char *encoding = "UTF-8";
985 struct diff_options opts;
986 int need_8bit_cte = 0;
987 struct pretty_print_context pp = {0};
988 struct commit *head = list[0];
989
990 if (!cmit_fmt_is_mail(rev->commit_format))
991 die(_("Cover letter needs email format"));
992
993 committer = git_committer_info(0);
994
995 if (!use_stdout &&
996 open_next_file(NULL, rev->numbered_files ? NULL : "cover-letter", rev, quiet))
997 return;
998
999 log_write_email_headers(rev, head, &pp.after_subject, &need_8bit_cte);
1000
1001 for (i = 0; !need_8bit_cte && i < nr; i++) {
1002 const char *buf = get_commit_buffer(list[i], NULL);
1003 if (has_non_ascii(buf))
1004 need_8bit_cte = 1;
1005 unuse_commit_buffer(list[i], buf);
1006 }
1007
1008 if (!branch_name)
1009 branch_name = find_branch_name(rev);
1010
1011 msg = body;
1012 pp.fmt = CMIT_FMT_EMAIL;
1013 pp.date_mode.type = DATE_RFC2822;
1014 pp.rev = rev;
1015 pp.print_email_subject = 1;
1016 pp_user_info(&pp, NULL, &sb, committer, encoding);
1017 pp_title_line(&pp, &msg, &sb, encoding, need_8bit_cte);
1018 pp_remainder(&pp, &msg, &sb, 0);
1019 add_branch_description(&sb, branch_name);
1020 fprintf(rev->diffopt.file, "%s\n", sb.buf);
1021
1022 strbuf_release(&sb);
1023
1024 shortlog_init(&log);
1025 log.wrap_lines = 1;
1026 log.wrap = 72;
1027 log.in1 = 2;
1028 log.in2 = 4;
1029 log.file = rev->diffopt.file;
1030 for (i = 0; i < nr; i++)
1031 shortlog_add_commit(&log, list[i]);
1032
1033 shortlog_output(&log);
1034
1035 /*
1036 * We can only do diffstat with a unique reference point
1037 */
1038 if (!origin)
1039 return;
1040
1041 memcpy(&opts, &rev->diffopt, sizeof(opts));
1042 opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
1043
1044 diff_setup_done(&opts);
1045
1046 diff_tree_sha1(origin->tree->object.oid.hash,
1047 head->tree->object.oid.hash,
1048 "", &opts);
1049 diffcore_std(&opts);
1050 diff_flush(&opts);
1051
1052 fprintf(rev->diffopt.file, "\n");
1053 }
1054
1055 static const char *clean_message_id(const char *msg_id)
1056 {
1057 char ch;
1058 const char *a, *z, *m;
1059
1060 m = msg_id;
1061 while ((ch = *m) && (isspace(ch) || (ch == '<')))
1062 m++;
1063 a = m;
1064 z = NULL;
1065 while ((ch = *m)) {
1066 if (!isspace(ch) && (ch != '>'))
1067 z = m;
1068 m++;
1069 }
1070 if (!z)
1071 die(_("insane in-reply-to: %s"), msg_id);
1072 if (++z == m)
1073 return a;
1074 return xmemdupz(a, z - a);
1075 }
1076
1077 static const char *set_outdir(const char *prefix, const char *output_directory)
1078 {
1079 if (output_directory && is_absolute_path(output_directory))
1080 return output_directory;
1081
1082 if (!prefix || !*prefix) {
1083 if (output_directory)
1084 return output_directory;
1085 /* The user did not explicitly ask for "./" */
1086 outdir_offset = 2;
1087 return "./";
1088 }
1089
1090 outdir_offset = strlen(prefix);
1091 if (!output_directory)
1092 return prefix;
1093
1094 return xstrdup(prefix_filename(prefix, outdir_offset,
1095 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 }