2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
17 #include "reflog-walk.h"
18 #include "patch-ids.h"
19 #include "run-command.h"
22 #include "string-list.h"
23 #include "parse-options.h"
26 #include "streaming.h"
29 #include "gpg-interface.h"
31 #include "commit-slab.h"
33 #define MAIL_DEFAULT_WRAP 72
35 /* Set a default date-time format for git log ("log.date" config variable) */
36 static const char *default_date_mode = NULL;
38 static int default_abbrev_commit;
39 static int default_show_root = 1;
40 static int default_follow;
41 static int default_show_signature;
42 static int decoration_style;
43 static int decoration_given;
44 static int use_mailmap_config;
45 static const char *fmt_patch_subject_prefix = "PATCH";
46 static const char *fmt_pretty;
48 static const char * const builtin_log_usage[] = {
49 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
50 N_("git show [<options>] <object>..."),
54 struct line_opt_callback_data {
57 struct string_list args;
60 static int auto_decoration_style(void)
62 return (isatty(1) || pager_in_use()) ? DECORATE_SHORT_REFS : 0;
65 static int parse_decoration_style(const char *value)
67 switch (git_parse_maybe_bool(value)) {
69 return DECORATE_SHORT_REFS;
75 if (!strcmp(value, "full"))
76 return DECORATE_FULL_REFS;
77 else if (!strcmp(value, "short"))
78 return DECORATE_SHORT_REFS;
79 else if (!strcmp(value, "auto"))
80 return auto_decoration_style();
84 static int decorate_callback(const struct option *opt, const char *arg, int unset)
89 decoration_style = parse_decoration_style(arg);
91 decoration_style = DECORATE_SHORT_REFS;
93 if (decoration_style < 0)
94 die(_("invalid --decorate option: %s"), arg);
101 static int log_line_range_callback(const struct option *option, const char *arg, int unset)
103 struct line_opt_callback_data *data = option->value;
108 data->rev->line_level_traverse = 1;
109 string_list_append(&data->args, arg);
114 static void init_log_defaults(void)
116 init_grep_defaults();
117 init_diff_ui_defaults();
119 decoration_style = auto_decoration_style();
122 static void cmd_log_init_defaults(struct rev_info *rev)
125 get_commit_format(fmt_pretty, rev);
127 rev->diffopt.flags.default_follow_renames = 1;
128 rev->verbose_header = 1;
129 rev->diffopt.flags.recursive = 1;
130 rev->diffopt.stat_width = -1; /* use full terminal width */
131 rev->diffopt.stat_graph_width = -1; /* respect statGraphWidth config */
132 rev->abbrev_commit = default_abbrev_commit;
133 rev->show_root_diff = default_show_root;
134 rev->subject_prefix = fmt_patch_subject_prefix;
135 rev->show_signature = default_show_signature;
136 rev->diffopt.flags.allow_textconv = 1;
138 if (default_date_mode)
139 parse_date_format(default_date_mode, &rev->date_mode);
142 static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
143 struct rev_info *rev, struct setup_revision_opt *opt)
145 struct userformat_want w;
146 int quiet = 0, source = 0, mailmap = 0;
147 static struct line_opt_callback_data line_cb = {NULL, NULL, STRING_LIST_INIT_DUP};
148 static struct string_list decorate_refs_exclude = STRING_LIST_INIT_NODUP;
149 static struct string_list decorate_refs_include = STRING_LIST_INIT_NODUP;
150 struct decoration_filter decoration_filter = {&decorate_refs_include,
151 &decorate_refs_exclude};
152 static struct revision_sources revision_sources;
154 const struct option builtin_log_options[] = {
155 OPT__QUIET(&quiet, N_("suppress diff output")),
156 OPT_BOOL(0, "source", &source, N_("show source")),
157 OPT_BOOL(0, "use-mailmap", &mailmap, N_("Use mail map file")),
158 OPT_STRING_LIST(0, "decorate-refs", &decorate_refs_include,
159 N_("pattern"), N_("only decorate refs that match <pattern>")),
160 OPT_STRING_LIST(0, "decorate-refs-exclude", &decorate_refs_exclude,
161 N_("pattern"), N_("do not decorate refs that match <pattern>")),
162 { OPTION_CALLBACK, 0, "decorate", NULL, NULL, N_("decorate options"),
163 PARSE_OPT_OPTARG, decorate_callback},
164 OPT_CALLBACK('L', NULL, &line_cb, "n,m:file",
165 N_("Process line range n,m in file, counting from 1"),
166 log_line_range_callback),
171 line_cb.prefix = prefix;
173 mailmap = use_mailmap_config;
174 argc = parse_options(argc, argv, prefix,
175 builtin_log_options, builtin_log_usage,
176 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
177 PARSE_OPT_KEEP_DASHDASH);
180 rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
181 argc = setup_revisions(argc, argv, rev, opt);
183 /* Any arguments at this point are not recognized */
185 die(_("unrecognized argument: %s"), argv[1]);
187 memset(&w, 0, sizeof(w));
188 userformat_find_requirements(NULL, &w);
190 if (!rev->show_notes_given && (!rev->pretty_given || w.notes))
193 init_display_notes(&rev->notes_opt);
195 if ((rev->diffopt.pickaxe_opts & DIFF_PICKAXE_KINDS_MASK) ||
196 rev->diffopt.filter || rev->diffopt.flags.follow_renames)
197 rev->always_show_header = 0;
200 init_revision_sources(&revision_sources);
201 rev->sources = &revision_sources;
205 rev->mailmap = xcalloc(1, sizeof(struct string_list));
206 read_mailmap(rev->mailmap, NULL);
209 if (rev->pretty_given && rev->commit_format == CMIT_FMT_RAW) {
211 * "log --pretty=raw" is special; ignore UI oriented
212 * configuration variables such as decoration.
214 if (!decoration_given)
215 decoration_style = 0;
216 if (!rev->abbrev_commit_given)
217 rev->abbrev_commit = 0;
220 if (decoration_style) {
221 rev->show_decorations = 1;
222 load_ref_decorations(&decoration_filter, decoration_style);
225 if (rev->line_level_traverse)
226 line_log_init(rev, line_cb.prefix, &line_cb.args);
231 static void cmd_log_init(int argc, const char **argv, const char *prefix,
232 struct rev_info *rev, struct setup_revision_opt *opt)
234 cmd_log_init_defaults(rev);
235 cmd_log_init_finish(argc, argv, prefix, rev, opt);
239 * This gives a rough estimate for how many commits we
240 * will print out in the list.
242 static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
247 struct commit *commit = list->item;
248 unsigned int flags = commit->object.flags;
250 if (!(flags & (TREESAME | UNINTERESTING)))
256 static void show_early_header(struct rev_info *rev, const char *stage, int nr)
258 if (rev->shown_one) {
260 if (rev->commit_format != CMIT_FMT_ONELINE)
261 putchar(rev->diffopt.line_termination);
263 fprintf(rev->diffopt.file, _("Final output: %d %s\n"), nr, stage);
266 static struct itimerval early_output_timer;
268 static void log_show_early(struct rev_info *revs, struct commit_list *list)
270 int i = revs->early_output, close_file = revs->diffopt.close_file;
273 revs->diffopt.close_file = 0;
274 sort_in_topological_order(&list, revs->sort_order);
276 struct commit *commit = list->item;
277 switch (simplify_commit(revs, commit)) {
280 int n = estimate_commit_count(revs, list);
281 show_early_header(revs, "incomplete", n);
284 log_tree_commit(revs, commit);
291 fclose(revs->diffopt.file);
297 /* Did we already get enough commits for the early output? */
300 fclose(revs->diffopt.file);
305 * ..if no, then repeat it twice a second until we
308 * NOTE! We don't use "it_interval", because if the
309 * reader isn't listening, we want our output to be
310 * throttled by the writing, and not have the timer
311 * trigger every second even if we're blocked on a
314 early_output_timer.it_value.tv_sec = 0;
315 early_output_timer.it_value.tv_usec = 500000;
316 setitimer(ITIMER_REAL, &early_output_timer, NULL);
319 static void early_output(int signal)
321 show_early_output = log_show_early;
324 static void setup_early_output(struct rev_info *rev)
329 * Set up the signal handler, minimally intrusively:
330 * we only set a single volatile integer word (not
331 * using sigatomic_t - trying to avoid unnecessary
332 * system dependencies and headers), and using
335 memset(&sa, 0, sizeof(sa));
336 sa.sa_handler = early_output;
337 sigemptyset(&sa.sa_mask);
338 sa.sa_flags = SA_RESTART;
339 sigaction(SIGALRM, &sa, NULL);
342 * If we can get the whole output in less than a
343 * tenth of a second, don't even bother doing the
344 * early-output thing..
346 * This is a one-time-only trigger.
348 early_output_timer.it_value.tv_sec = 0;
349 early_output_timer.it_value.tv_usec = 100000;
350 setitimer(ITIMER_REAL, &early_output_timer, NULL);
353 static void finish_early_output(struct rev_info *rev)
355 int n = estimate_commit_count(rev, rev->commits);
356 signal(SIGALRM, SIG_IGN);
357 show_early_header(rev, "done", n);
360 static int cmd_log_walk(struct rev_info *rev)
362 struct commit *commit;
364 int saved_dcctc = 0, close_file = rev->diffopt.close_file;
366 if (rev->early_output)
367 setup_early_output(rev);
369 if (prepare_revision_walk(rev))
370 die(_("revision walk setup failed"));
372 if (rev->early_output)
373 finish_early_output(rev);
376 * For --check and --exit-code, the exit code is based on CHECK_FAILED
377 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
378 * retain that state information if replacing rev->diffopt in this loop
380 rev->diffopt.close_file = 0;
381 while ((commit = get_revision(rev)) != NULL) {
382 if (!log_tree_commit(rev, commit) && rev->max_count >= 0)
384 * We decremented max_count in get_revision,
385 * but we didn't actually show the commit.
388 if (!rev->reflog_info) {
390 * We may show a given commit multiple times when
391 * walking the reflogs.
393 free_commit_buffer(commit);
394 free_commit_list(commit->parents);
395 commit->parents = NULL;
397 if (saved_nrl < rev->diffopt.needed_rename_limit)
398 saved_nrl = rev->diffopt.needed_rename_limit;
399 if (rev->diffopt.degraded_cc_to_c)
402 rev->diffopt.degraded_cc_to_c = saved_dcctc;
403 rev->diffopt.needed_rename_limit = saved_nrl;
405 fclose(rev->diffopt.file);
407 if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
408 rev->diffopt.flags.check_failed) {
411 return diff_result_code(&rev->diffopt, 0);
414 static int git_log_config(const char *var, const char *value, void *cb)
416 const char *slot_name;
418 if (!strcmp(var, "format.pretty"))
419 return git_config_string(&fmt_pretty, var, value);
420 if (!strcmp(var, "format.subjectprefix"))
421 return git_config_string(&fmt_patch_subject_prefix, var, value);
422 if (!strcmp(var, "log.abbrevcommit")) {
423 default_abbrev_commit = git_config_bool(var, value);
426 if (!strcmp(var, "log.date"))
427 return git_config_string(&default_date_mode, var, value);
428 if (!strcmp(var, "log.decorate")) {
429 decoration_style = parse_decoration_style(value);
430 if (decoration_style < 0)
431 decoration_style = 0; /* maybe warn? */
434 if (!strcmp(var, "log.showroot")) {
435 default_show_root = git_config_bool(var, value);
438 if (!strcmp(var, "log.follow")) {
439 default_follow = git_config_bool(var, value);
442 if (skip_prefix(var, "color.decorate.", &slot_name))
443 return parse_decorate_color_config(var, slot_name, value);
444 if (!strcmp(var, "log.mailmap")) {
445 use_mailmap_config = git_config_bool(var, value);
448 if (!strcmp(var, "log.showsignature")) {
449 default_show_signature = git_config_bool(var, value);
453 if (grep_config(var, value, cb) < 0)
455 if (git_gpg_config(var, value, cb) < 0)
457 return git_diff_ui_config(var, value, cb);
460 int cmd_whatchanged(int argc, const char **argv, const char *prefix)
463 struct setup_revision_opt opt;
466 git_config(git_log_config, NULL);
468 init_revisions(&rev, prefix);
470 rev.simplify_history = 0;
471 memset(&opt, 0, sizeof(opt));
473 opt.revarg_opt = REVARG_COMMITTISH;
474 cmd_log_init(argc, argv, prefix, &rev, &opt);
475 if (!rev.diffopt.output_format)
476 rev.diffopt.output_format = DIFF_FORMAT_RAW;
477 return cmd_log_walk(&rev);
480 static void show_tagger(char *buf, int len, struct rev_info *rev)
482 struct strbuf out = STRBUF_INIT;
483 struct pretty_print_context pp = {0};
485 pp.fmt = rev->commit_format;
486 pp.date_mode = rev->date_mode;
487 pp_user_info(&pp, "Tagger", &out, buf, get_log_output_encoding());
488 fprintf(rev->diffopt.file, "%s", out.buf);
489 strbuf_release(&out);
492 static int show_blob_object(const struct object_id *oid, struct rev_info *rev, const char *obj_name)
494 struct object_id oidc;
495 struct object_context obj_context;
499 fflush(rev->diffopt.file);
500 if (!rev->diffopt.flags.textconv_set_via_cmdline ||
501 !rev->diffopt.flags.allow_textconv)
502 return stream_blob_to_fd(1, oid, NULL, 0);
504 if (get_oid_with_context(obj_name, GET_OID_RECORD_PATH,
505 &oidc, &obj_context))
506 die(_("Not a valid object name %s"), obj_name);
507 if (!obj_context.path ||
508 !textconv_object(obj_context.path, obj_context.mode, &oidc, 1, &buf, &size)) {
509 free(obj_context.path);
510 return stream_blob_to_fd(1, oid, NULL, 0);
514 die(_("git show %s: bad file"), obj_name);
516 write_or_die(1, buf, size);
517 free(obj_context.path);
521 static int show_tag_object(const struct object_id *oid, struct rev_info *rev)
524 enum object_type type;
525 char *buf = read_object_file(oid, &type, &size);
529 return error(_("Could not read object %s"), oid_to_hex(oid));
531 assert(type == OBJ_TAG);
532 while (offset < size && buf[offset] != '\n') {
533 int new_offset = offset + 1;
534 while (new_offset < size && buf[new_offset++] != '\n')
536 if (starts_with(buf + offset, "tagger "))
537 show_tagger(buf + offset + 7,
538 new_offset - offset - 7, rev);
543 fwrite(buf + offset, size - offset, 1, rev->diffopt.file);
548 static int show_tree_object(const struct object_id *oid,
550 const char *pathname, unsigned mode, int stage, void *context)
552 FILE *file = context;
553 fprintf(file, "%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
557 static void show_setup_revisions_tweak(struct rev_info *rev,
558 struct setup_revision_opt *opt)
560 if (rev->ignore_merges) {
561 /* There was no "-m" on the command line */
562 rev->ignore_merges = 0;
563 if (!rev->first_parent_only && !rev->combine_merges) {
564 /* No "--first-parent", "-c", or "--cc" */
565 rev->combine_merges = 1;
566 rev->dense_combined_merges = 1;
569 if (!rev->diffopt.output_format)
570 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
573 int cmd_show(int argc, const char **argv, const char *prefix)
576 struct object_array_entry *objects;
577 struct setup_revision_opt opt;
578 struct pathspec match_all;
579 int i, count, ret = 0;
582 git_config(git_log_config, NULL);
584 memset(&match_all, 0, sizeof(match_all));
585 init_revisions(&rev, prefix);
587 rev.always_show_header = 1;
588 rev.no_walk = REVISION_WALK_NO_WALK_SORTED;
589 rev.diffopt.stat_width = -1; /* Scale to real terminal size */
591 memset(&opt, 0, sizeof(opt));
593 opt.tweak = show_setup_revisions_tweak;
594 cmd_log_init(argc, argv, prefix, &rev, &opt);
597 return cmd_log_walk(&rev);
599 count = rev.pending.nr;
600 objects = rev.pending.objects;
601 for (i = 0; i < count && !ret; i++) {
602 struct object *o = objects[i].item;
603 const char *name = objects[i].name;
606 ret = show_blob_object(&o->oid, &rev, name);
609 struct tag *t = (struct tag *)o;
613 fprintf(rev.diffopt.file, "%stag %s%s\n",
614 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
616 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
617 ret = show_tag_object(&o->oid, &rev);
621 o = parse_object(&t->tagged->oid);
623 ret = error(_("Could not read object %s"),
624 oid_to_hex(&t->tagged->oid));
632 fprintf(rev.diffopt.file, "%stree %s%s\n\n",
633 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
635 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
636 read_tree_recursive((struct tree *)o, "", 0, 0, &match_all,
637 show_tree_object, rev.diffopt.file);
641 rev.pending.nr = rev.pending.alloc = 0;
642 rev.pending.objects = NULL;
643 add_object_array(o, name, &rev.pending);
644 ret = cmd_log_walk(&rev);
647 ret = error(_("Unknown type: %d"), o->type);
655 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
657 int cmd_log_reflog(int argc, const char **argv, const char *prefix)
660 struct setup_revision_opt opt;
663 git_config(git_log_config, NULL);
665 init_revisions(&rev, prefix);
666 init_reflog_walk(&rev.reflog_info);
667 rev.verbose_header = 1;
668 memset(&opt, 0, sizeof(opt));
670 cmd_log_init_defaults(&rev);
671 rev.abbrev_commit = 1;
672 rev.commit_format = CMIT_FMT_ONELINE;
673 rev.use_terminator = 1;
674 rev.always_show_header = 1;
675 cmd_log_init_finish(argc, argv, prefix, &rev, &opt);
677 return cmd_log_walk(&rev);
680 static void log_setup_revisions_tweak(struct rev_info *rev,
681 struct setup_revision_opt *opt)
683 if (rev->diffopt.flags.default_follow_renames &&
684 rev->prune_data.nr == 1)
685 rev->diffopt.flags.follow_renames = 1;
687 /* Turn --cc/-c into -p --cc/-c when -p was not given */
688 if (!rev->diffopt.output_format && rev->combine_merges)
689 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
691 /* Turn -m on when --cc/-c was given */
692 if (rev->combine_merges)
693 rev->ignore_merges = 0;
696 int cmd_log(int argc, const char **argv, const char *prefix)
699 struct setup_revision_opt opt;
702 git_config(git_log_config, NULL);
704 init_revisions(&rev, prefix);
705 rev.always_show_header = 1;
706 memset(&opt, 0, sizeof(opt));
708 opt.revarg_opt = REVARG_COMMITTISH;
709 opt.tweak = log_setup_revisions_tweak;
710 cmd_log_init(argc, argv, prefix, &rev, &opt);
711 return cmd_log_walk(&rev);
716 static const char *fmt_patch_suffix = ".patch";
717 static int numbered = 0;
718 static int auto_number = 1;
720 static char *default_attach = NULL;
722 static struct string_list extra_hdr = STRING_LIST_INIT_NODUP;
723 static struct string_list extra_to = STRING_LIST_INIT_NODUP;
724 static struct string_list extra_cc = STRING_LIST_INIT_NODUP;
726 static void add_header(const char *value)
728 struct string_list_item *item;
729 int len = strlen(value);
730 while (len && value[len - 1] == '\n')
733 if (!strncasecmp(value, "to: ", 4)) {
734 item = string_list_append(&extra_to, value + 4);
736 } else if (!strncasecmp(value, "cc: ", 4)) {
737 item = string_list_append(&extra_cc, value + 4);
740 item = string_list_append(&extra_hdr, value);
743 item->string[len] = '\0';
746 #define THREAD_SHALLOW 1
747 #define THREAD_DEEP 2
749 static int do_signoff;
750 static int base_auto;
752 static const char *signature = git_version_string;
753 static const char *signature_file;
754 static int config_cover_letter;
755 static const char *config_output_directory;
764 static int git_format_config(const char *var, const char *value, void *cb)
766 if (!strcmp(var, "format.headers")) {
768 die(_("format.headers without value"));
772 if (!strcmp(var, "format.suffix"))
773 return git_config_string(&fmt_patch_suffix, var, value);
774 if (!strcmp(var, "format.to")) {
776 return config_error_nonbool(var);
777 string_list_append(&extra_to, value);
780 if (!strcmp(var, "format.cc")) {
782 return config_error_nonbool(var);
783 string_list_append(&extra_cc, value);
786 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") ||
787 !strcmp(var, "color.ui") || !strcmp(var, "diff.submodule")) {
790 if (!strcmp(var, "format.numbered")) {
791 if (value && !strcasecmp(value, "auto")) {
795 numbered = git_config_bool(var, value);
796 auto_number = auto_number && numbered;
799 if (!strcmp(var, "format.attach")) {
801 default_attach = xstrdup(value);
803 default_attach = xstrdup(git_version_string);
806 if (!strcmp(var, "format.thread")) {
807 if (value && !strcasecmp(value, "deep")) {
808 thread = THREAD_DEEP;
811 if (value && !strcasecmp(value, "shallow")) {
812 thread = THREAD_SHALLOW;
815 thread = git_config_bool(var, value) && THREAD_SHALLOW;
818 if (!strcmp(var, "format.signoff")) {
819 do_signoff = git_config_bool(var, value);
822 if (!strcmp(var, "format.signature"))
823 return git_config_string(&signature, var, value);
824 if (!strcmp(var, "format.signaturefile"))
825 return git_config_pathname(&signature_file, var, value);
826 if (!strcmp(var, "format.coverletter")) {
827 if (value && !strcasecmp(value, "auto")) {
828 config_cover_letter = COVER_AUTO;
831 config_cover_letter = git_config_bool(var, value) ? COVER_ON : COVER_OFF;
834 if (!strcmp(var, "format.outputdirectory"))
835 return git_config_string(&config_output_directory, var, value);
836 if (!strcmp(var, "format.useautobase")) {
837 base_auto = git_config_bool(var, value);
840 if (!strcmp(var, "format.from")) {
841 int b = git_parse_maybe_bool(value);
844 from = xstrdup(value);
846 from = xstrdup(git_committer_info(IDENT_NO_DATE));
852 return git_log_config(var, value, cb);
855 static const char *output_directory = NULL;
856 static int outdir_offset;
858 static int open_next_file(struct commit *commit, const char *subject,
859 struct rev_info *rev, int quiet)
861 struct strbuf filename = STRBUF_INIT;
862 int suffix_len = strlen(rev->patch_suffix) + 1;
864 if (output_directory) {
865 strbuf_addstr(&filename, output_directory);
867 PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len) {
868 strbuf_release(&filename);
869 return error(_("name of output directory is too long"));
871 strbuf_complete(&filename, '/');
874 if (rev->numbered_files)
875 strbuf_addf(&filename, "%d", rev->nr);
877 fmt_output_commit(&filename, commit, rev);
879 fmt_output_subject(&filename, subject, rev);
882 printf("%s\n", filename.buf + outdir_offset);
884 if ((rev->diffopt.file = fopen(filename.buf, "w")) == NULL) {
885 error_errno(_("Cannot open patch file %s"), filename.buf);
886 strbuf_release(&filename);
890 strbuf_release(&filename);
894 static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids)
896 struct rev_info check_rev;
897 struct commit *commit, *c1, *c2;
898 struct object *o1, *o2;
899 unsigned flags1, flags2;
901 if (rev->pending.nr != 2)
902 die(_("Need exactly one range."));
904 o1 = rev->pending.objects[0].item;
905 o2 = rev->pending.objects[1].item;
908 c1 = lookup_commit_reference(&o1->oid);
909 c2 = lookup_commit_reference(&o2->oid);
911 if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
912 die(_("Not a range."));
916 /* given a range a..b get all patch ids for b..a */
917 init_revisions(&check_rev, rev->prefix);
918 check_rev.max_parents = 1;
919 o1->flags ^= UNINTERESTING;
920 o2->flags ^= UNINTERESTING;
921 add_pending_object(&check_rev, o1, "o1");
922 add_pending_object(&check_rev, o2, "o2");
923 if (prepare_revision_walk(&check_rev))
924 die(_("revision walk setup failed"));
926 while ((commit = get_revision(&check_rev)) != NULL) {
927 add_commit_patch_id(commit, ids);
930 /* reset for next revision walk */
931 clear_commit_marks(c1, SEEN | UNINTERESTING | SHOWN | ADDED);
932 clear_commit_marks(c2, SEEN | UNINTERESTING | SHOWN | ADDED);
937 static void gen_message_id(struct rev_info *info, char *base)
939 struct strbuf buf = STRBUF_INIT;
940 strbuf_addf(&buf, "%s.%"PRItime".git.%s", base,
941 (timestamp_t) time(NULL),
942 git_committer_info(IDENT_NO_NAME|IDENT_NO_DATE|IDENT_STRICT));
943 info->message_id = strbuf_detach(&buf, NULL);
946 static void print_signature(FILE *file)
948 if (!signature || !*signature)
951 fprintf(file, "-- \n%s", signature);
952 if (signature[strlen(signature)-1] != '\n')
957 static void add_branch_description(struct strbuf *buf, const char *branch_name)
959 struct strbuf desc = STRBUF_INIT;
960 if (!branch_name || !*branch_name)
962 read_branch_desc(&desc, branch_name);
964 strbuf_addch(buf, '\n');
965 strbuf_addbuf(buf, &desc);
966 strbuf_addch(buf, '\n');
968 strbuf_release(&desc);
971 static char *find_branch_name(struct rev_info *rev)
973 int i, positive = -1;
974 struct object_id branch_oid;
975 const struct object_id *tip_oid;
977 char *full_ref, *branch = NULL;
979 for (i = 0; i < rev->cmdline.nr; i++) {
980 if (rev->cmdline.rev[i].flags & UNINTERESTING)
989 ref = rev->cmdline.rev[positive].name;
990 tip_oid = &rev->cmdline.rev[positive].item->oid;
991 if (dwim_ref(ref, strlen(ref), &branch_oid, &full_ref) &&
992 skip_prefix(full_ref, "refs/heads/", &v) &&
993 !oidcmp(tip_oid, &branch_oid))
999 static void make_cover_letter(struct rev_info *rev, int use_stdout,
1000 struct commit *origin,
1001 int nr, struct commit **list,
1002 const char *branch_name,
1005 const char *committer;
1006 const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
1008 struct shortlog log;
1009 struct strbuf sb = STRBUF_INIT;
1011 const char *encoding = "UTF-8";
1012 struct diff_options opts;
1013 int need_8bit_cte = 0;
1014 struct pretty_print_context pp = {0};
1015 struct commit *head = list[0];
1017 if (!cmit_fmt_is_mail(rev->commit_format))
1018 die(_("Cover letter needs email format"));
1020 committer = git_committer_info(0);
1023 open_next_file(NULL, rev->numbered_files ? NULL : "cover-letter", rev, quiet))
1026 log_write_email_headers(rev, head, &pp.after_subject, &need_8bit_cte, 0);
1028 for (i = 0; !need_8bit_cte && i < nr; i++) {
1029 const char *buf = get_commit_buffer(list[i], NULL);
1030 if (has_non_ascii(buf))
1032 unuse_commit_buffer(list[i], buf);
1036 branch_name = find_branch_name(rev);
1039 pp.fmt = CMIT_FMT_EMAIL;
1040 pp.date_mode.type = DATE_RFC2822;
1042 pp.print_email_subject = 1;
1043 pp_user_info(&pp, NULL, &sb, committer, encoding);
1044 pp_title_line(&pp, &msg, &sb, encoding, need_8bit_cte);
1045 pp_remainder(&pp, &msg, &sb, 0);
1046 add_branch_description(&sb, branch_name);
1047 fprintf(rev->diffopt.file, "%s\n", sb.buf);
1049 strbuf_release(&sb);
1051 shortlog_init(&log);
1053 log.wrap = MAIL_DEFAULT_WRAP;
1056 log.file = rev->diffopt.file;
1057 for (i = 0; i < nr; i++)
1058 shortlog_add_commit(&log, list[i]);
1060 shortlog_output(&log);
1063 * We can only do diffstat with a unique reference point
1068 memcpy(&opts, &rev->diffopt, sizeof(opts));
1069 opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
1070 opts.stat_width = MAIL_DEFAULT_WRAP;
1072 diff_setup_done(&opts);
1074 diff_tree_oid(get_commit_tree_oid(origin),
1075 get_commit_tree_oid(head),
1077 diffcore_std(&opts);
1080 fprintf(rev->diffopt.file, "\n");
1083 static const char *clean_message_id(const char *msg_id)
1086 const char *a, *z, *m;
1089 while ((ch = *m) && (isspace(ch) || (ch == '<')))
1094 if (!isspace(ch) && (ch != '>'))
1099 die(_("insane in-reply-to: %s"), msg_id);
1102 return xmemdupz(a, z - a);
1105 static const char *set_outdir(const char *prefix, const char *output_directory)
1107 if (output_directory && is_absolute_path(output_directory))
1108 return output_directory;
1110 if (!prefix || !*prefix) {
1111 if (output_directory)
1112 return output_directory;
1113 /* The user did not explicitly ask for "./" */
1118 outdir_offset = strlen(prefix);
1119 if (!output_directory)
1122 return prefix_filename(prefix, output_directory);
1125 static const char * const builtin_format_patch_usage[] = {
1126 N_("git format-patch [<options>] [<since> | <revision-range>]"),
1130 static int keep_subject = 0;
1132 static int keep_callback(const struct option *opt, const char *arg, int unset)
1134 ((struct rev_info *)opt->value)->total = -1;
1139 static int subject_prefix = 0;
1141 static int subject_prefix_callback(const struct option *opt, const char *arg,
1145 ((struct rev_info *)opt->value)->subject_prefix = arg;
1149 static int rfc_callback(const struct option *opt, const char *arg, int unset)
1151 return subject_prefix_callback(opt, "RFC PATCH", unset);
1154 static int numbered_cmdline_opt = 0;
1156 static int numbered_callback(const struct option *opt, const char *arg,
1159 *(int *)opt->value = numbered_cmdline_opt = unset ? 0 : 1;
1165 static int no_numbered_callback(const struct option *opt, const char *arg,
1168 return numbered_callback(opt, arg, 1);
1171 static int output_directory_callback(const struct option *opt, const char *arg,
1174 const char **dir = (const char **)opt->value;
1176 die(_("Two output directories?"));
1181 static int thread_callback(const struct option *opt, const char *arg, int unset)
1183 int *thread = (int *)opt->value;
1186 else if (!arg || !strcmp(arg, "shallow"))
1187 *thread = THREAD_SHALLOW;
1188 else if (!strcmp(arg, "deep"))
1189 *thread = THREAD_DEEP;
1195 static int attach_callback(const struct option *opt, const char *arg, int unset)
1197 struct rev_info *rev = (struct rev_info *)opt->value;
1199 rev->mime_boundary = NULL;
1201 rev->mime_boundary = arg;
1203 rev->mime_boundary = git_version_string;
1204 rev->no_inline = unset ? 0 : 1;
1208 static int inline_callback(const struct option *opt, const char *arg, int unset)
1210 struct rev_info *rev = (struct rev_info *)opt->value;
1212 rev->mime_boundary = NULL;
1214 rev->mime_boundary = arg;
1216 rev->mime_boundary = git_version_string;
1221 static int header_callback(const struct option *opt, const char *arg, int unset)
1224 string_list_clear(&extra_hdr, 0);
1225 string_list_clear(&extra_to, 0);
1226 string_list_clear(&extra_cc, 0);
1233 static int to_callback(const struct option *opt, const char *arg, int unset)
1236 string_list_clear(&extra_to, 0);
1238 string_list_append(&extra_to, arg);
1242 static int cc_callback(const struct option *opt, const char *arg, int unset)
1245 string_list_clear(&extra_cc, 0);
1247 string_list_append(&extra_cc, arg);
1251 static int from_callback(const struct option *opt, const char *arg, int unset)
1253 char **from = opt->value;
1260 *from = xstrdup(arg);
1262 *from = xstrdup(git_committer_info(IDENT_NO_DATE));
1266 struct base_tree_info {
1267 struct object_id base_commit;
1268 int nr_patch_id, alloc_patch_id;
1269 struct object_id *patch_id;
1272 static struct commit *get_base_commit(const char *base_commit,
1273 struct commit **list,
1276 struct commit *base = NULL;
1277 struct commit **rev;
1278 int i = 0, rev_nr = 0;
1280 if (base_commit && strcmp(base_commit, "auto")) {
1281 base = lookup_commit_reference_by_name(base_commit);
1283 die(_("Unknown commit %s"), base_commit);
1284 } else if ((base_commit && !strcmp(base_commit, "auto")) || base_auto) {
1285 struct branch *curr_branch = branch_get(NULL);
1286 const char *upstream = branch_get_upstream(curr_branch, NULL);
1288 struct commit_list *base_list;
1289 struct commit *commit;
1290 struct object_id oid;
1292 if (get_oid(upstream, &oid))
1293 die(_("Failed to resolve '%s' as a valid ref."), upstream);
1294 commit = lookup_commit_or_die(&oid, "upstream base");
1295 base_list = get_merge_bases_many(commit, total, list);
1296 /* There should be one and only one merge base. */
1297 if (!base_list || base_list->next)
1298 die(_("Could not find exact merge base."));
1299 base = base_list->item;
1300 free_commit_list(base_list);
1302 die(_("Failed to get upstream, if you want to record base commit automatically,\n"
1303 "please use git branch --set-upstream-to to track a remote branch.\n"
1304 "Or you could specify base commit by --base=<base-commit-id> manually."));
1308 ALLOC_ARRAY(rev, total);
1309 for (i = 0; i < total; i++)
1314 * Get merge base through pair-wise computations
1315 * and store it in rev[0].
1317 while (rev_nr > 1) {
1318 for (i = 0; i < rev_nr / 2; i++) {
1319 struct commit_list *merge_base;
1320 merge_base = get_merge_bases(rev[2 * i], rev[2 * i + 1]);
1321 if (!merge_base || merge_base->next)
1322 die(_("Failed to find exact merge base"));
1324 rev[i] = merge_base->item;
1328 rev[i] = rev[2 * i];
1329 rev_nr = DIV_ROUND_UP(rev_nr, 2);
1332 if (!in_merge_bases(base, rev[0]))
1333 die(_("base commit should be the ancestor of revision list"));
1335 for (i = 0; i < total; i++) {
1336 if (base == list[i])
1337 die(_("base commit shouldn't be in revision list"));
1344 define_commit_slab(commit_base, int);
1346 static void prepare_bases(struct base_tree_info *bases,
1347 struct commit *base,
1348 struct commit **list,
1351 struct commit *commit;
1352 struct rev_info revs;
1353 struct diff_options diffopt;
1354 struct commit_base commit_base;
1360 init_commit_base(&commit_base);
1361 diff_setup(&diffopt);
1362 diffopt.flags.recursive = 1;
1363 diff_setup_done(&diffopt);
1365 oidcpy(&bases->base_commit, &base->object.oid);
1367 init_revisions(&revs, NULL);
1368 revs.max_parents = 1;
1369 revs.topo_order = 1;
1370 for (i = 0; i < total; i++) {
1371 list[i]->object.flags &= ~UNINTERESTING;
1372 add_pending_object(&revs, &list[i]->object, "rev_list");
1373 *commit_base_at(&commit_base, list[i]) = 1;
1375 base->object.flags |= UNINTERESTING;
1376 add_pending_object(&revs, &base->object, "base");
1378 if (prepare_revision_walk(&revs))
1379 die(_("revision walk setup failed"));
1381 * Traverse the commits list, get prerequisite patch ids
1382 * and stuff them in bases structure.
1384 while ((commit = get_revision(&revs)) != NULL) {
1385 struct object_id oid;
1386 struct object_id *patch_id;
1387 if (*commit_base_at(&commit_base, commit))
1389 if (commit_patch_id(commit, &diffopt, &oid, 0))
1390 die(_("cannot get patch id"));
1391 ALLOC_GROW(bases->patch_id, bases->nr_patch_id + 1, bases->alloc_patch_id);
1392 patch_id = bases->patch_id + bases->nr_patch_id;
1393 oidcpy(patch_id, &oid);
1394 bases->nr_patch_id++;
1396 clear_commit_base(&commit_base);
1399 static void print_bases(struct base_tree_info *bases, FILE *file)
1403 /* Only do this once, either for the cover or for the first one */
1404 if (is_null_oid(&bases->base_commit))
1407 /* Show the base commit */
1408 fprintf(file, "\nbase-commit: %s\n", oid_to_hex(&bases->base_commit));
1410 /* Show the prerequisite patches */
1411 for (i = bases->nr_patch_id - 1; i >= 0; i--)
1412 fprintf(file, "prerequisite-patch-id: %s\n", oid_to_hex(&bases->patch_id[i]));
1414 free(bases->patch_id);
1415 bases->nr_patch_id = 0;
1416 bases->alloc_patch_id = 0;
1417 oidclr(&bases->base_commit);
1420 int cmd_format_patch(int argc, const char **argv, const char *prefix)
1422 struct commit *commit;
1423 struct commit **list = NULL;
1424 struct rev_info rev;
1425 struct setup_revision_opt s_r_opt;
1426 int nr = 0, total, i;
1428 int start_number = -1;
1429 int just_numbers = 0;
1430 int ignore_if_in_upstream = 0;
1431 int cover_letter = -1;
1432 int boundary_count = 0;
1433 int no_binary_diff = 0;
1434 int zero_commit = 0;
1435 struct commit *origin = NULL;
1436 const char *in_reply_to = NULL;
1437 struct patch_ids ids;
1438 struct strbuf buf = STRBUF_INIT;
1439 int use_patch_format = 0;
1441 int reroll_count = -1;
1442 char *branch_name = NULL;
1443 char *base_commit = NULL;
1444 struct base_tree_info bases;
1445 int show_progress = 0;
1446 struct progress *progress = NULL;
1448 const struct option builtin_format_patch_options[] = {
1449 { OPTION_CALLBACK, 'n', "numbered", &numbered, NULL,
1450 N_("use [PATCH n/m] even with a single patch"),
1451 PARSE_OPT_NOARG, numbered_callback },
1452 { OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL,
1453 N_("use [PATCH] even with multiple patches"),
1454 PARSE_OPT_NOARG, no_numbered_callback },
1455 OPT_BOOL('s', "signoff", &do_signoff, N_("add Signed-off-by:")),
1456 OPT_BOOL(0, "stdout", &use_stdout,
1457 N_("print patches to standard out")),
1458 OPT_BOOL(0, "cover-letter", &cover_letter,
1459 N_("generate a cover letter")),
1460 OPT_BOOL(0, "numbered-files", &just_numbers,
1461 N_("use simple number sequence for output file names")),
1462 OPT_STRING(0, "suffix", &fmt_patch_suffix, N_("sfx"),
1463 N_("use <sfx> instead of '.patch'")),
1464 OPT_INTEGER(0, "start-number", &start_number,
1465 N_("start numbering patches at <n> instead of 1")),
1466 OPT_INTEGER('v', "reroll-count", &reroll_count,
1467 N_("mark the series as Nth re-roll")),
1468 { OPTION_CALLBACK, 0, "rfc", &rev, NULL,
1469 N_("Use [RFC PATCH] instead of [PATCH]"),
1470 PARSE_OPT_NOARG | PARSE_OPT_NONEG, rfc_callback },
1471 { OPTION_CALLBACK, 0, "subject-prefix", &rev, N_("prefix"),
1472 N_("Use [<prefix>] instead of [PATCH]"),
1473 PARSE_OPT_NONEG, subject_prefix_callback },
1474 { OPTION_CALLBACK, 'o', "output-directory", &output_directory,
1475 N_("dir"), N_("store resulting files in <dir>"),
1476 PARSE_OPT_NONEG, output_directory_callback },
1477 { OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL,
1478 N_("don't strip/add [PATCH]"),
1479 PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback },
1480 OPT_BOOL(0, "no-binary", &no_binary_diff,
1481 N_("don't output binary diffs")),
1482 OPT_BOOL(0, "zero-commit", &zero_commit,
1483 N_("output all-zero hash in From header")),
1484 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream,
1485 N_("don't include a patch matching a commit upstream")),
1486 OPT_SET_INT_F('p', "no-stat", &use_patch_format,
1487 N_("show patch format instead of default (patch + stat)"),
1488 1, PARSE_OPT_NONEG),
1489 OPT_GROUP(N_("Messaging")),
1490 { OPTION_CALLBACK, 0, "add-header", NULL, N_("header"),
1491 N_("add email header"), 0, header_callback },
1492 { OPTION_CALLBACK, 0, "to", NULL, N_("email"), N_("add To: header"),
1494 { OPTION_CALLBACK, 0, "cc", NULL, N_("email"), N_("add Cc: header"),
1496 { OPTION_CALLBACK, 0, "from", &from, N_("ident"),
1497 N_("set From address to <ident> (or committer ident if absent)"),
1498 PARSE_OPT_OPTARG, from_callback },
1499 OPT_STRING(0, "in-reply-to", &in_reply_to, N_("message-id"),
1500 N_("make first mail a reply to <message-id>")),
1501 { OPTION_CALLBACK, 0, "attach", &rev, N_("boundary"),
1502 N_("attach the patch"), PARSE_OPT_OPTARG,
1504 { OPTION_CALLBACK, 0, "inline", &rev, N_("boundary"),
1505 N_("inline the patch"),
1506 PARSE_OPT_OPTARG | PARSE_OPT_NONEG,
1508 { OPTION_CALLBACK, 0, "thread", &thread, N_("style"),
1509 N_("enable message threading, styles: shallow, deep"),
1510 PARSE_OPT_OPTARG, thread_callback },
1511 OPT_STRING(0, "signature", &signature, N_("signature"),
1512 N_("add a signature")),
1513 OPT_STRING(0, "base", &base_commit, N_("base-commit"),
1514 N_("add prerequisite tree info to the patch series")),
1515 OPT_FILENAME(0, "signature-file", &signature_file,
1516 N_("add a signature from a file")),
1517 OPT__QUIET(&quiet, N_("don't print the patch filenames")),
1518 OPT_BOOL(0, "progress", &show_progress,
1519 N_("show progress while generating patches")),
1523 extra_hdr.strdup_strings = 1;
1524 extra_to.strdup_strings = 1;
1525 extra_cc.strdup_strings = 1;
1526 init_log_defaults();
1527 git_config(git_format_config, NULL);
1528 init_revisions(&rev, prefix);
1529 rev.commit_format = CMIT_FMT_EMAIL;
1530 rev.expand_tabs_in_log_default = 0;
1531 rev.verbose_header = 1;
1533 rev.max_parents = 1;
1534 rev.diffopt.flags.recursive = 1;
1535 rev.subject_prefix = fmt_patch_subject_prefix;
1536 memset(&s_r_opt, 0, sizeof(s_r_opt));
1537 s_r_opt.def = "HEAD";
1538 s_r_opt.revarg_opt = REVARG_COMMITTISH;
1540 if (default_attach) {
1541 rev.mime_boundary = default_attach;
1546 * Parse the arguments before setup_revisions(), or something
1547 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1548 * possibly a valid SHA1.
1550 argc = parse_options(argc, argv, prefix, builtin_format_patch_options,
1551 builtin_format_patch_usage,
1552 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
1553 PARSE_OPT_KEEP_DASHDASH);
1555 if (0 < reroll_count) {
1556 struct strbuf sprefix = STRBUF_INIT;
1557 strbuf_addf(&sprefix, "%s v%d",
1558 rev.subject_prefix, reroll_count);
1559 rev.reroll_count = reroll_count;
1560 rev.subject_prefix = strbuf_detach(&sprefix, NULL);
1563 for (i = 0; i < extra_hdr.nr; i++) {
1564 strbuf_addstr(&buf, extra_hdr.items[i].string);
1565 strbuf_addch(&buf, '\n');
1569 strbuf_addstr(&buf, "To: ");
1570 for (i = 0; i < extra_to.nr; i++) {
1572 strbuf_addstr(&buf, " ");
1573 strbuf_addstr(&buf, extra_to.items[i].string);
1574 if (i + 1 < extra_to.nr)
1575 strbuf_addch(&buf, ',');
1576 strbuf_addch(&buf, '\n');
1580 strbuf_addstr(&buf, "Cc: ");
1581 for (i = 0; i < extra_cc.nr; i++) {
1583 strbuf_addstr(&buf, " ");
1584 strbuf_addstr(&buf, extra_cc.items[i].string);
1585 if (i + 1 < extra_cc.nr)
1586 strbuf_addch(&buf, ',');
1587 strbuf_addch(&buf, '\n');
1590 rev.extra_headers = strbuf_detach(&buf, NULL);
1593 if (split_ident_line(&rev.from_ident, from, strlen(from)))
1594 die(_("invalid ident line: %s"), from);
1597 if (start_number < 0)
1601 * If numbered is set solely due to format.numbered in config,
1602 * and it would conflict with --keep-subject (-k) from the
1603 * command line, reset "numbered".
1605 if (numbered && keep_subject && !numbered_cmdline_opt)
1608 if (numbered && keep_subject)
1609 die (_("-n and -k are mutually exclusive."));
1610 if (keep_subject && subject_prefix)
1611 die (_("--subject-prefix/--rfc and -k are mutually exclusive."));
1612 rev.preserve_subject = keep_subject;
1614 argc = setup_revisions(argc, argv, &rev, &s_r_opt);
1616 die (_("unrecognized argument: %s"), argv[1]);
1618 if (rev.diffopt.output_format & DIFF_FORMAT_NAME)
1619 die(_("--name-only does not make sense"));
1620 if (rev.diffopt.output_format & DIFF_FORMAT_NAME_STATUS)
1621 die(_("--name-status does not make sense"));
1622 if (rev.diffopt.output_format & DIFF_FORMAT_CHECKDIFF)
1623 die(_("--check does not make sense"));
1625 if (!use_patch_format &&
1626 (!rev.diffopt.output_format ||
1627 rev.diffopt.output_format == DIFF_FORMAT_PATCH))
1628 rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY;
1629 if (!rev.diffopt.stat_width)
1630 rev.diffopt.stat_width = MAIL_DEFAULT_WRAP;
1632 /* Always generate a patch */
1633 rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
1635 rev.zero_commit = zero_commit;
1637 if (!rev.diffopt.flags.text && !no_binary_diff)
1638 rev.diffopt.flags.binary = 1;
1641 init_display_notes(&rev.notes_opt);
1643 if (!output_directory && !use_stdout)
1644 output_directory = config_output_directory;
1647 output_directory = set_outdir(prefix, output_directory);
1651 if (output_directory) {
1652 if (rev.diffopt.use_color != GIT_COLOR_ALWAYS)
1653 rev.diffopt.use_color = GIT_COLOR_NEVER;
1655 die(_("standard output, or directory, which one?"));
1656 if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
1657 die_errno(_("Could not create directory '%s'"),
1661 if (rev.pending.nr == 1) {
1664 if (rev.max_count < 0 && !rev.show_root_diff) {
1666 * This is traditional behaviour of "git format-patch
1667 * origin" that prepares what the origin side still
1670 rev.pending.objects[0].item->flags |= UNINTERESTING;
1671 add_head_to_pending(&rev);
1675 * Otherwise, it is "format-patch -22 HEAD", and/or
1676 * "format-patch --root HEAD". The user wants
1677 * get_revision() to do the usual traversal.
1680 if (!strcmp(rev.pending.objects[0].name, "HEAD"))
1684 const char *ref, *v;
1685 ref = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
1687 if (ref && skip_prefix(ref, "refs/heads/", &v))
1688 branch_name = xstrdup(v);
1690 branch_name = xstrdup(""); /* no branch */
1695 * We cannot move this anywhere earlier because we do want to
1696 * know if --root was given explicitly from the command line.
1698 rev.show_root_diff = 1;
1700 if (ignore_if_in_upstream) {
1701 /* Don't say anything if head and upstream are the same. */
1702 if (rev.pending.nr == 2) {
1703 struct object_array_entry *o = rev.pending.objects;
1704 if (oidcmp(&o[0].item->oid, &o[1].item->oid) == 0)
1707 get_patch_ids(&rev, &ids);
1710 if (prepare_revision_walk(&rev))
1711 die(_("revision walk setup failed"));
1713 while ((commit = get_revision(&rev)) != NULL) {
1714 if (commit->object.flags & BOUNDARY) {
1716 origin = (boundary_count == 1) ? commit : NULL;
1720 if (ignore_if_in_upstream && has_commit_patch_id(commit, &ids))
1724 REALLOC_ARRAY(list, nr);
1725 list[nr - 1] = commit;
1731 if (cover_letter == -1) {
1732 if (config_cover_letter == COVER_AUTO)
1733 cover_letter = (total > 1);
1735 cover_letter = (config_cover_letter == COVER_ON);
1737 if (!keep_subject && auto_number && (total > 1 || cover_letter))
1740 rev.total = total + start_number - 1;
1743 ; /* --no-signature inhibits all signatures */
1744 } else if (signature && signature != git_version_string) {
1745 ; /* non-default signature already set */
1746 } else if (signature_file) {
1747 struct strbuf buf = STRBUF_INIT;
1749 if (strbuf_read_file(&buf, signature_file, 128) < 0)
1750 die_errno(_("unable to read signature file '%s'"), signature_file);
1751 signature = strbuf_detach(&buf, NULL);
1754 memset(&bases, 0, sizeof(bases));
1755 if (base_commit || base_auto) {
1756 struct commit *base = get_base_commit(base_commit, list, nr);
1757 reset_revision_walk();
1758 prepare_bases(&bases, base, list, nr);
1761 if (in_reply_to || thread || cover_letter)
1762 rev.ref_message_ids = xcalloc(1, sizeof(struct string_list));
1764 const char *msgid = clean_message_id(in_reply_to);
1765 string_list_append(rev.ref_message_ids, msgid);
1767 rev.numbered_files = just_numbers;
1768 rev.patch_suffix = fmt_patch_suffix;
1771 gen_message_id(&rev, "cover");
1772 make_cover_letter(&rev, use_stdout,
1773 origin, nr, list, branch_name, quiet);
1774 print_bases(&bases, rev.diffopt.file);
1775 print_signature(rev.diffopt.file);
1779 rev.add_signoff = do_signoff;
1782 progress = start_delayed_progress(_("Generating patches"), total);
1785 display_progress(progress, total - nr);
1787 rev.nr = total - nr + (start_number - 1);
1788 /* Make the second and subsequent mails replies to the first */
1790 /* Have we already had a message ID? */
1791 if (rev.message_id) {
1793 * For deep threading: make every mail
1794 * a reply to the previous one, no
1795 * matter what other options are set.
1797 * For shallow threading:
1799 * Without --cover-letter and
1800 * --in-reply-to, make every mail a
1801 * reply to the one before.
1803 * With --in-reply-to but no
1804 * --cover-letter, make every mail a
1805 * reply to the <reply-to>.
1807 * With --cover-letter, make every
1808 * mail but the cover letter a reply
1809 * to the cover letter. The cover
1810 * letter is a reply to the
1811 * --in-reply-to, if specified.
1813 if (thread == THREAD_SHALLOW
1814 && rev.ref_message_ids->nr > 0
1815 && (!cover_letter || rev.nr > 1))
1816 free(rev.message_id);
1818 string_list_append(rev.ref_message_ids,
1821 gen_message_id(&rev, oid_to_hex(&commit->object.oid));
1825 open_next_file(rev.numbered_files ? NULL : commit, NULL, &rev, quiet))
1826 die(_("Failed to create output files"));
1827 shown = log_tree_commit(&rev, commit);
1828 free_commit_buffer(commit);
1830 /* We put one extra blank line between formatted
1831 * patches and this flag is used by log-tree code
1832 * to see if it needs to emit a LF before showing
1833 * the log; when using one file per patch, we do
1834 * not want the extra blank line.
1839 print_bases(&bases, rev.diffopt.file);
1840 if (rev.mime_boundary)
1841 fprintf(rev.diffopt.file, "\n--%s%s--\n\n\n",
1842 mime_boundary_leader,
1845 print_signature(rev.diffopt.file);
1848 fclose(rev.diffopt.file);
1850 stop_progress(&progress);
1853 string_list_clear(&extra_to, 0);
1854 string_list_clear(&extra_cc, 0);
1855 string_list_clear(&extra_hdr, 0);
1856 if (ignore_if_in_upstream)
1857 free_patch_ids(&ids);
1861 static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
1863 struct object_id oid;
1864 if (get_oid(arg, &oid) == 0) {
1865 struct commit *commit = lookup_commit_reference(&oid);
1867 commit->object.flags |= flags;
1868 add_pending_object(revs, &commit->object, arg);
1875 static const char * const cherry_usage[] = {
1876 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
1880 static void print_commit(char sign, struct commit *commit, int verbose,
1881 int abbrev, FILE *file)
1884 fprintf(file, "%c %s\n", sign,
1885 find_unique_abbrev(&commit->object.oid, abbrev));
1887 struct strbuf buf = STRBUF_INIT;
1888 pp_commit_easy(CMIT_FMT_ONELINE, commit, &buf);
1889 fprintf(file, "%c %s %s\n", sign,
1890 find_unique_abbrev(&commit->object.oid, abbrev),
1892 strbuf_release(&buf);
1896 int cmd_cherry(int argc, const char **argv, const char *prefix)
1898 struct rev_info revs;
1899 struct patch_ids ids;
1900 struct commit *commit;
1901 struct commit_list *list = NULL;
1902 struct branch *current_branch;
1903 const char *upstream;
1904 const char *head = "HEAD";
1905 const char *limit = NULL;
1906 int verbose = 0, abbrev = 0;
1908 struct option options[] = {
1909 OPT__ABBREV(&abbrev),
1910 OPT__VERBOSE(&verbose, N_("be verbose")),
1914 argc = parse_options(argc, argv, prefix, options, cherry_usage, 0);
1927 current_branch = branch_get(NULL);
1928 upstream = branch_get_upstream(current_branch, NULL);
1930 fprintf(stderr, _("Could not find a tracked"
1931 " remote branch, please"
1932 " specify <upstream> manually.\n"));
1933 usage_with_options(cherry_usage, options);
1937 init_revisions(&revs, prefix);
1938 revs.max_parents = 1;
1940 if (add_pending_commit(head, &revs, 0))
1941 die(_("Unknown commit %s"), head);
1942 if (add_pending_commit(upstream, &revs, UNINTERESTING))
1943 die(_("Unknown commit %s"), upstream);
1945 /* Don't say anything if head and upstream are the same. */
1946 if (revs.pending.nr == 2) {
1947 struct object_array_entry *o = revs.pending.objects;
1948 if (oidcmp(&o[0].item->oid, &o[1].item->oid) == 0)
1952 get_patch_ids(&revs, &ids);
1954 if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
1955 die(_("Unknown commit %s"), limit);
1957 /* reverse the list of commits */
1958 if (prepare_revision_walk(&revs))
1959 die(_("revision walk setup failed"));
1960 while ((commit = get_revision(&revs)) != NULL) {
1961 commit_list_insert(commit, &list);
1967 commit = list->item;
1968 if (has_commit_patch_id(commit, &ids))
1970 print_commit(sign, commit, verbose, abbrev, revs.diffopt.file);
1974 free_patch_ids(&ids);