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