2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
16 #include "reflog-walk.h"
17 #include "patch-ids.h"
18 #include "run-command.h"
21 #include "string-list.h"
22 #include "parse-options.h"
25 #include "streaming.h"
28 #include "gpg-interface.h"
30 /* Set a default date-time format for git log ("log.date" config variable) */
31 static const char *default_date_mode = NULL;
33 static int default_abbrev_commit;
34 static int default_show_root = 1;
35 static int default_follow;
36 static int decoration_style;
37 static int decoration_given;
38 static int use_mailmap_config;
39 static const char *fmt_patch_subject_prefix = "PATCH";
40 static const char *fmt_pretty;
42 static const char * const builtin_log_usage[] = {
43 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
44 N_("git show [<options>] <object>..."),
48 struct line_opt_callback_data {
51 struct string_list args;
54 static int parse_decoration_style(const char *var, const char *value)
56 switch (git_config_maybe_bool(var, value)) {
58 return DECORATE_SHORT_REFS;
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;
73 static int decorate_callback(const struct option *opt, const char *arg, int unset)
78 decoration_style = parse_decoration_style("command line", arg);
80 decoration_style = DECORATE_SHORT_REFS;
82 if (decoration_style < 0)
83 die(_("invalid --decorate option: %s"), arg);
90 static int log_line_range_callback(const struct option *option, const char *arg, int unset)
92 struct line_opt_callback_data *data = option->value;
97 data->rev->line_level_traverse = 1;
98 string_list_append(&data->args, arg);
103 static void init_log_defaults(void)
105 init_grep_defaults();
106 init_diff_ui_defaults();
109 static void cmd_log_init_defaults(struct rev_info *rev)
112 get_commit_format(fmt_pretty, rev);
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);
124 if (default_date_mode)
125 parse_date_format(default_date_mode, &rev->date_mode);
126 rev->diffopt.touched_flags = 0;
129 static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
130 struct rev_info *rev, struct setup_revision_opt *opt)
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};
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),
149 line_cb.prefix = prefix;
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);
158 rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
159 argc = setup_revisions(argc, argv, rev, opt);
161 /* Any arguments at this point are not recognized */
163 die(_("unrecognized argument: %s"), argv[1]);
165 memset(&w, 0, sizeof(w));
166 userformat_find_requirements(NULL, &w);
168 if (!rev->show_notes_given && (!rev->pretty_given || w.notes))
171 init_display_notes(&rev->notes_opt);
173 if (rev->diffopt.pickaxe || rev->diffopt.filter ||
174 DIFF_OPT_TST(&rev->diffopt, FOLLOW_RENAMES))
175 rev->always_show_header = 0;
178 rev->show_source = 1;
181 rev->mailmap = xcalloc(1, sizeof(struct string_list));
182 read_mailmap(rev->mailmap, NULL);
185 if (rev->pretty_given && rev->commit_format == CMIT_FMT_RAW) {
187 * "log --pretty=raw" is special; ignore UI oriented
188 * configuration variables such as decoration.
190 if (!decoration_given)
191 decoration_style = 0;
192 if (!rev->abbrev_commit_given)
193 rev->abbrev_commit = 0;
196 if (decoration_style) {
197 rev->show_decorations = 1;
198 load_ref_decorations(decoration_style);
201 if (rev->line_level_traverse)
202 line_log_init(rev, line_cb.prefix, &line_cb.args);
207 static void cmd_log_init(int argc, const char **argv, const char *prefix,
208 struct rev_info *rev, struct setup_revision_opt *opt)
210 cmd_log_init_defaults(rev);
211 cmd_log_init_finish(argc, argv, prefix, rev, opt);
215 * This gives a rough estimate for how many commits we
216 * will print out in the list.
218 static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
223 struct commit *commit = list->item;
224 unsigned int flags = commit->object.flags;
226 if (!(flags & (TREESAME | UNINTERESTING)))
232 static void show_early_header(struct rev_info *rev, const char *stage, int nr)
234 if (rev->shown_one) {
236 if (rev->commit_format != CMIT_FMT_ONELINE)
237 putchar(rev->diffopt.line_termination);
239 printf(_("Final output: %d %s\n"), nr, stage);
242 static struct itimerval early_output_timer;
244 static void log_show_early(struct rev_info *revs, struct commit_list *list)
246 int i = revs->early_output;
249 sort_in_topological_order(&list, revs->sort_order);
251 struct commit *commit = list->item;
252 switch (simplify_commit(revs, commit)) {
255 int n = estimate_commit_count(revs, list);
256 show_early_header(revs, "incomplete", n);
259 log_tree_commit(revs, commit);
270 /* Did we already get enough commits for the early output? */
275 * ..if no, then repeat it twice a second until we
278 * NOTE! We don't use "it_interval", because if the
279 * reader isn't listening, we want our output to be
280 * throttled by the writing, and not have the timer
281 * trigger every second even if we're blocked on a
284 early_output_timer.it_value.tv_sec = 0;
285 early_output_timer.it_value.tv_usec = 500000;
286 setitimer(ITIMER_REAL, &early_output_timer, NULL);
289 static void early_output(int signal)
291 show_early_output = log_show_early;
294 static void setup_early_output(struct rev_info *rev)
299 * Set up the signal handler, minimally intrusively:
300 * we only set a single volatile integer word (not
301 * using sigatomic_t - trying to avoid unnecessary
302 * system dependencies and headers), and using
305 memset(&sa, 0, sizeof(sa));
306 sa.sa_handler = early_output;
307 sigemptyset(&sa.sa_mask);
308 sa.sa_flags = SA_RESTART;
309 sigaction(SIGALRM, &sa, NULL);
312 * If we can get the whole output in less than a
313 * tenth of a second, don't even bother doing the
314 * early-output thing..
316 * This is a one-time-only trigger.
318 early_output_timer.it_value.tv_sec = 0;
319 early_output_timer.it_value.tv_usec = 100000;
320 setitimer(ITIMER_REAL, &early_output_timer, NULL);
323 static void finish_early_output(struct rev_info *rev)
325 int n = estimate_commit_count(rev, rev->commits);
326 signal(SIGALRM, SIG_IGN);
327 show_early_header(rev, "done", n);
330 static int cmd_log_walk(struct rev_info *rev)
332 struct commit *commit;
336 if (rev->early_output)
337 setup_early_output(rev);
339 if (prepare_revision_walk(rev))
340 die(_("revision walk setup failed"));
342 if (rev->early_output)
343 finish_early_output(rev);
346 * For --check and --exit-code, the exit code is based on CHECK_FAILED
347 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
348 * retain that state information if replacing rev->diffopt in this loop
350 while ((commit = get_revision(rev)) != NULL) {
351 if (!log_tree_commit(rev, commit) && rev->max_count >= 0)
353 * We decremented max_count in get_revision,
354 * but we didn't actually show the commit.
357 if (!rev->reflog_info) {
358 /* we allow cycles in reflog ancestry */
359 free_commit_buffer(commit);
361 free_commit_list(commit->parents);
362 commit->parents = NULL;
363 if (saved_nrl < rev->diffopt.needed_rename_limit)
364 saved_nrl = rev->diffopt.needed_rename_limit;
365 if (rev->diffopt.degraded_cc_to_c)
368 rev->diffopt.degraded_cc_to_c = saved_dcctc;
369 rev->diffopt.needed_rename_limit = saved_nrl;
371 if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
372 DIFF_OPT_TST(&rev->diffopt, CHECK_FAILED)) {
375 return diff_result_code(&rev->diffopt, 0);
378 static int git_log_config(const char *var, const char *value, void *cb)
380 const char *slot_name;
382 if (!strcmp(var, "format.pretty"))
383 return git_config_string(&fmt_pretty, var, value);
384 if (!strcmp(var, "format.subjectprefix"))
385 return git_config_string(&fmt_patch_subject_prefix, var, value);
386 if (!strcmp(var, "log.abbrevcommit")) {
387 default_abbrev_commit = git_config_bool(var, value);
390 if (!strcmp(var, "log.date"))
391 return git_config_string(&default_date_mode, var, value);
392 if (!strcmp(var, "log.decorate")) {
393 decoration_style = parse_decoration_style(var, value);
394 if (decoration_style < 0)
395 decoration_style = 0; /* maybe warn? */
398 if (!strcmp(var, "log.showroot")) {
399 default_show_root = git_config_bool(var, value);
402 if (!strcmp(var, "log.follow")) {
403 default_follow = git_config_bool(var, value);
406 if (skip_prefix(var, "color.decorate.", &slot_name))
407 return parse_decorate_color_config(var, slot_name, value);
408 if (!strcmp(var, "log.mailmap")) {
409 use_mailmap_config = git_config_bool(var, value);
413 if (grep_config(var, value, cb) < 0)
415 if (git_gpg_config(var, value, cb) < 0)
417 return git_diff_ui_config(var, value, cb);
420 int cmd_whatchanged(int argc, const char **argv, const char *prefix)
423 struct setup_revision_opt opt;
426 git_config(git_log_config, NULL);
428 init_revisions(&rev, prefix);
430 rev.simplify_history = 0;
431 memset(&opt, 0, sizeof(opt));
433 opt.revarg_opt = REVARG_COMMITTISH;
434 cmd_log_init(argc, argv, prefix, &rev, &opt);
435 if (!rev.diffopt.output_format)
436 rev.diffopt.output_format = DIFF_FORMAT_RAW;
437 return cmd_log_walk(&rev);
440 static void show_tagger(char *buf, int len, struct rev_info *rev)
442 struct strbuf out = STRBUF_INIT;
443 struct pretty_print_context pp = {0};
445 pp.fmt = rev->commit_format;
446 pp.date_mode = rev->date_mode;
447 pp_user_info(&pp, "Tagger", &out, buf, get_log_output_encoding());
448 printf("%s", out.buf);
449 strbuf_release(&out);
452 static int show_blob_object(const unsigned char *sha1, struct rev_info *rev, const char *obj_name)
454 unsigned char sha1c[20];
455 struct object_context obj_context;
460 if (!DIFF_OPT_TOUCHED(&rev->diffopt, ALLOW_TEXTCONV) ||
461 !DIFF_OPT_TST(&rev->diffopt, ALLOW_TEXTCONV))
462 return stream_blob_to_fd(1, sha1, NULL, 0);
464 if (get_sha1_with_context(obj_name, 0, sha1c, &obj_context))
465 die(_("Not a valid object name %s"), obj_name);
466 if (!obj_context.path[0] ||
467 !textconv_object(obj_context.path, obj_context.mode, sha1c, 1, &buf, &size))
468 return stream_blob_to_fd(1, sha1, NULL, 0);
471 die(_("git show %s: bad file"), obj_name);
473 write_or_die(1, buf, size);
477 static int show_tag_object(const unsigned char *sha1, struct rev_info *rev)
480 enum object_type type;
481 char *buf = read_sha1_file(sha1, &type, &size);
485 return error(_("Could not read object %s"), sha1_to_hex(sha1));
487 assert(type == OBJ_TAG);
488 while (offset < size && buf[offset] != '\n') {
489 int new_offset = offset + 1;
490 while (new_offset < size && buf[new_offset++] != '\n')
492 if (starts_with(buf + offset, "tagger "))
493 show_tagger(buf + offset + 7,
494 new_offset - offset - 7, rev);
499 fwrite(buf + offset, size - offset, 1, stdout);
504 static int show_tree_object(const unsigned char *sha1,
506 const char *pathname, unsigned mode, int stage, void *context)
508 printf("%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
512 static void show_setup_revisions_tweak(struct rev_info *rev,
513 struct setup_revision_opt *opt)
515 if (rev->ignore_merges) {
516 /* There was no "-m" on the command line */
517 rev->ignore_merges = 0;
518 if (!rev->first_parent_only && !rev->combine_merges) {
519 /* No "--first-parent", "-c", or "--cc" */
520 rev->combine_merges = 1;
521 rev->dense_combined_merges = 1;
524 if (!rev->diffopt.output_format)
525 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
528 int cmd_show(int argc, const char **argv, const char *prefix)
531 struct object_array_entry *objects;
532 struct setup_revision_opt opt;
533 struct pathspec match_all;
534 int i, count, ret = 0;
537 git_config(git_log_config, NULL);
539 memset(&match_all, 0, sizeof(match_all));
540 init_revisions(&rev, prefix);
542 rev.always_show_header = 1;
543 rev.no_walk = REVISION_WALK_NO_WALK_SORTED;
544 rev.diffopt.stat_width = -1; /* Scale to real terminal size */
546 memset(&opt, 0, sizeof(opt));
548 opt.tweak = show_setup_revisions_tweak;
549 cmd_log_init(argc, argv, prefix, &rev, &opt);
552 return cmd_log_walk(&rev);
554 count = rev.pending.nr;
555 objects = rev.pending.objects;
556 for (i = 0; i < count && !ret; i++) {
557 struct object *o = objects[i].item;
558 const char *name = objects[i].name;
561 ret = show_blob_object(o->oid.hash, &rev, name);
564 struct tag *t = (struct tag *)o;
568 printf("%stag %s%s\n",
569 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
571 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
572 ret = show_tag_object(o->oid.hash, &rev);
576 o = parse_object(t->tagged->oid.hash);
578 ret = error(_("Could not read object %s"),
579 oid_to_hex(&t->tagged->oid));
587 printf("%stree %s%s\n\n",
588 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
590 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
591 read_tree_recursive((struct tree *)o, "", 0, 0, &match_all,
592 show_tree_object, NULL);
596 rev.pending.nr = rev.pending.alloc = 0;
597 rev.pending.objects = NULL;
598 add_object_array(o, name, &rev.pending);
599 ret = cmd_log_walk(&rev);
602 ret = error(_("Unknown type: %d"), o->type);
610 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
612 int cmd_log_reflog(int argc, const char **argv, const char *prefix)
615 struct setup_revision_opt opt;
618 git_config(git_log_config, NULL);
620 init_revisions(&rev, prefix);
621 init_reflog_walk(&rev.reflog_info);
622 rev.verbose_header = 1;
623 memset(&opt, 0, sizeof(opt));
625 cmd_log_init_defaults(&rev);
626 rev.abbrev_commit = 1;
627 rev.commit_format = CMIT_FMT_ONELINE;
628 rev.use_terminator = 1;
629 rev.always_show_header = 1;
630 cmd_log_init_finish(argc, argv, prefix, &rev, &opt);
632 return cmd_log_walk(&rev);
635 static void log_setup_revisions_tweak(struct rev_info *rev,
636 struct setup_revision_opt *opt)
638 if (DIFF_OPT_TST(&rev->diffopt, DEFAULT_FOLLOW_RENAMES) &&
639 rev->prune_data.nr == 1)
640 DIFF_OPT_SET(&rev->diffopt, FOLLOW_RENAMES);
642 /* Turn --cc/-c into -p --cc/-c when -p was not given */
643 if (!rev->diffopt.output_format && rev->combine_merges)
644 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
646 /* Turn -m on when --cc/-c was given */
647 if (rev->combine_merges)
648 rev->ignore_merges = 0;
651 int cmd_log(int argc, const char **argv, const char *prefix)
654 struct setup_revision_opt opt;
657 git_config(git_log_config, NULL);
659 init_revisions(&rev, prefix);
660 rev.always_show_header = 1;
661 memset(&opt, 0, sizeof(opt));
663 opt.revarg_opt = REVARG_COMMITTISH;
664 opt.tweak = log_setup_revisions_tweak;
665 cmd_log_init(argc, argv, prefix, &rev, &opt);
666 return cmd_log_walk(&rev);
671 static const char *fmt_patch_suffix = ".patch";
672 static int numbered = 0;
673 static int auto_number = 1;
675 static char *default_attach = NULL;
677 static struct string_list extra_hdr;
678 static struct string_list extra_to;
679 static struct string_list extra_cc;
681 static void add_header(const char *value)
683 struct string_list_item *item;
684 int len = strlen(value);
685 while (len && value[len - 1] == '\n')
688 if (!strncasecmp(value, "to: ", 4)) {
689 item = string_list_append(&extra_to, value + 4);
691 } else if (!strncasecmp(value, "cc: ", 4)) {
692 item = string_list_append(&extra_cc, value + 4);
695 item = string_list_append(&extra_hdr, value);
698 item->string[len] = '\0';
701 #define THREAD_SHALLOW 1
702 #define THREAD_DEEP 2
704 static int do_signoff;
705 static const char *signature = git_version_string;
706 static const char *signature_file;
707 static int config_cover_letter;
708 static const char *config_output_directory;
717 static int git_format_config(const char *var, const char *value, void *cb)
719 if (!strcmp(var, "format.headers")) {
721 die(_("format.headers without value"));
725 if (!strcmp(var, "format.suffix"))
726 return git_config_string(&fmt_patch_suffix, var, value);
727 if (!strcmp(var, "format.to")) {
729 return config_error_nonbool(var);
730 string_list_append(&extra_to, value);
733 if (!strcmp(var, "format.cc")) {
735 return config_error_nonbool(var);
736 string_list_append(&extra_cc, value);
739 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") ||
740 !strcmp(var, "color.ui") || !strcmp(var, "diff.submodule")) {
743 if (!strcmp(var, "format.numbered")) {
744 if (value && !strcasecmp(value, "auto")) {
748 numbered = git_config_bool(var, value);
749 auto_number = auto_number && numbered;
752 if (!strcmp(var, "format.attach")) {
754 default_attach = xstrdup(value);
756 default_attach = xstrdup(git_version_string);
759 if (!strcmp(var, "format.thread")) {
760 if (value && !strcasecmp(value, "deep")) {
761 thread = THREAD_DEEP;
764 if (value && !strcasecmp(value, "shallow")) {
765 thread = THREAD_SHALLOW;
768 thread = git_config_bool(var, value) && THREAD_SHALLOW;
771 if (!strcmp(var, "format.signoff")) {
772 do_signoff = git_config_bool(var, value);
775 if (!strcmp(var, "format.signature"))
776 return git_config_string(&signature, var, value);
777 if (!strcmp(var, "format.signaturefile"))
778 return git_config_pathname(&signature_file, var, value);
779 if (!strcmp(var, "format.coverletter")) {
780 if (value && !strcasecmp(value, "auto")) {
781 config_cover_letter = COVER_AUTO;
784 config_cover_letter = git_config_bool(var, value) ? COVER_ON : COVER_OFF;
787 if (!strcmp(var, "format.outputdirectory"))
788 return git_config_string(&config_output_directory, var, value);
790 return git_log_config(var, value, cb);
793 static FILE *realstdout = NULL;
794 static const char *output_directory = NULL;
795 static int outdir_offset;
797 static int reopen_stdout(struct commit *commit, const char *subject,
798 struct rev_info *rev, int quiet)
800 struct strbuf filename = STRBUF_INIT;
801 int suffix_len = strlen(rev->patch_suffix) + 1;
803 if (output_directory) {
804 strbuf_addstr(&filename, output_directory);
806 PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len)
807 return error(_("name of output directory is too long"));
808 strbuf_complete(&filename, '/');
811 if (rev->numbered_files)
812 strbuf_addf(&filename, "%d", rev->nr);
814 fmt_output_commit(&filename, commit, rev);
816 fmt_output_subject(&filename, subject, rev);
819 fprintf(realstdout, "%s\n", filename.buf + outdir_offset);
821 if (freopen(filename.buf, "w", stdout) == NULL)
822 return error(_("Cannot open patch file %s"), filename.buf);
824 strbuf_release(&filename);
828 static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids)
830 struct rev_info check_rev;
831 struct commit *commit, *c1, *c2;
832 struct object *o1, *o2;
833 unsigned flags1, flags2;
835 if (rev->pending.nr != 2)
836 die(_("Need exactly one range."));
838 o1 = rev->pending.objects[0].item;
839 o2 = rev->pending.objects[1].item;
842 c1 = lookup_commit_reference(o1->oid.hash);
843 c2 = lookup_commit_reference(o2->oid.hash);
845 if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
846 die(_("Not a range."));
850 /* given a range a..b get all patch ids for b..a */
851 init_revisions(&check_rev, rev->prefix);
852 check_rev.max_parents = 1;
853 o1->flags ^= UNINTERESTING;
854 o2->flags ^= UNINTERESTING;
855 add_pending_object(&check_rev, o1, "o1");
856 add_pending_object(&check_rev, o2, "o2");
857 if (prepare_revision_walk(&check_rev))
858 die(_("revision walk setup failed"));
860 while ((commit = get_revision(&check_rev)) != NULL) {
861 add_commit_patch_id(commit, ids);
864 /* reset for next revision walk */
865 clear_commit_marks(c1, SEEN | UNINTERESTING | SHOWN | ADDED);
866 clear_commit_marks(c2, SEEN | UNINTERESTING | SHOWN | ADDED);
871 static void gen_message_id(struct rev_info *info, char *base)
873 struct strbuf buf = STRBUF_INIT;
874 strbuf_addf(&buf, "%s.%lu.git.%s", base,
875 (unsigned long) time(NULL),
876 git_committer_info(IDENT_NO_NAME|IDENT_NO_DATE|IDENT_STRICT));
877 info->message_id = strbuf_detach(&buf, NULL);
880 static void print_signature(void)
882 if (!signature || !*signature)
885 printf("-- \n%s", signature);
886 if (signature[strlen(signature)-1] != '\n')
891 static void add_branch_description(struct strbuf *buf, const char *branch_name)
893 struct strbuf desc = STRBUF_INIT;
894 if (!branch_name || !*branch_name)
896 read_branch_desc(&desc, branch_name);
898 strbuf_addch(buf, '\n');
899 strbuf_addbuf(buf, &desc);
900 strbuf_addch(buf, '\n');
902 strbuf_release(&desc);
905 static char *find_branch_name(struct rev_info *rev)
907 int i, positive = -1;
908 struct object_id branch_oid;
909 const struct object_id *tip_oid;
911 char *full_ref, *branch = NULL;
913 for (i = 0; i < rev->cmdline.nr; i++) {
914 if (rev->cmdline.rev[i].flags & UNINTERESTING)
923 ref = rev->cmdline.rev[positive].name;
924 tip_oid = &rev->cmdline.rev[positive].item->oid;
925 if (dwim_ref(ref, strlen(ref), branch_oid.hash, &full_ref) &&
926 skip_prefix(full_ref, "refs/heads/", &v) &&
927 !oidcmp(tip_oid, &branch_oid))
933 static void make_cover_letter(struct rev_info *rev, int use_stdout,
934 struct commit *origin,
935 int nr, struct commit **list,
936 const char *branch_name,
939 const char *committer;
940 const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
943 struct strbuf sb = STRBUF_INIT;
945 const char *encoding = "UTF-8";
946 struct diff_options opts;
947 int need_8bit_cte = 0;
948 struct pretty_print_context pp = {0};
949 struct commit *head = list[0];
951 if (rev->commit_format != CMIT_FMT_EMAIL)
952 die(_("Cover letter needs email format"));
954 committer = git_committer_info(0);
957 reopen_stdout(NULL, rev->numbered_files ? NULL : "cover-letter", rev, quiet))
960 log_write_email_headers(rev, head, &pp.subject, &pp.after_subject,
963 for (i = 0; !need_8bit_cte && i < nr; i++) {
964 const char *buf = get_commit_buffer(list[i], NULL);
965 if (has_non_ascii(buf))
967 unuse_commit_buffer(list[i], buf);
971 branch_name = find_branch_name(rev);
974 pp.fmt = CMIT_FMT_EMAIL;
975 pp.date_mode.type = DATE_RFC2822;
976 pp_user_info(&pp, NULL, &sb, committer, encoding);
977 pp_title_line(&pp, &msg, &sb, encoding, need_8bit_cte);
978 pp_remainder(&pp, &msg, &sb, 0);
979 add_branch_description(&sb, branch_name);
980 printf("%s\n", sb.buf);
989 for (i = 0; i < nr; i++)
990 shortlog_add_commit(&log, list[i]);
992 shortlog_output(&log);
995 * We can only do diffstat with a unique reference point
1000 memcpy(&opts, &rev->diffopt, sizeof(opts));
1001 opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
1003 diff_setup_done(&opts);
1005 diff_tree_sha1(origin->tree->object.oid.hash,
1006 head->tree->object.oid.hash,
1008 diffcore_std(&opts);
1015 static const char *clean_message_id(const char *msg_id)
1018 const char *a, *z, *m;
1021 while ((ch = *m) && (isspace(ch) || (ch == '<')))
1026 if (!isspace(ch) && (ch != '>'))
1031 die(_("insane in-reply-to: %s"), msg_id);
1034 return xmemdupz(a, z - a);
1037 static const char *set_outdir(const char *prefix, const char *output_directory)
1039 if (output_directory && is_absolute_path(output_directory))
1040 return output_directory;
1042 if (!prefix || !*prefix) {
1043 if (output_directory)
1044 return output_directory;
1045 /* The user did not explicitly ask for "./" */
1050 outdir_offset = strlen(prefix);
1051 if (!output_directory)
1054 return xstrdup(prefix_filename(prefix, outdir_offset,
1058 static const char * const builtin_format_patch_usage[] = {
1059 N_("git format-patch [<options>] [<since> | <revision-range>]"),
1063 static int keep_subject = 0;
1065 static int keep_callback(const struct option *opt, const char *arg, int unset)
1067 ((struct rev_info *)opt->value)->total = -1;
1072 static int subject_prefix = 0;
1074 static int subject_prefix_callback(const struct option *opt, const char *arg,
1078 ((struct rev_info *)opt->value)->subject_prefix = arg;
1082 static int numbered_cmdline_opt = 0;
1084 static int numbered_callback(const struct option *opt, const char *arg,
1087 *(int *)opt->value = numbered_cmdline_opt = unset ? 0 : 1;
1093 static int no_numbered_callback(const struct option *opt, const char *arg,
1096 return numbered_callback(opt, arg, 1);
1099 static int output_directory_callback(const struct option *opt, const char *arg,
1102 const char **dir = (const char **)opt->value;
1104 die(_("Two output directories?"));
1109 static int thread_callback(const struct option *opt, const char *arg, int unset)
1111 int *thread = (int *)opt->value;
1114 else if (!arg || !strcmp(arg, "shallow"))
1115 *thread = THREAD_SHALLOW;
1116 else if (!strcmp(arg, "deep"))
1117 *thread = THREAD_DEEP;
1123 static int attach_callback(const struct option *opt, const char *arg, int unset)
1125 struct rev_info *rev = (struct rev_info *)opt->value;
1127 rev->mime_boundary = NULL;
1129 rev->mime_boundary = arg;
1131 rev->mime_boundary = git_version_string;
1132 rev->no_inline = unset ? 0 : 1;
1136 static int inline_callback(const struct option *opt, const char *arg, int unset)
1138 struct rev_info *rev = (struct rev_info *)opt->value;
1140 rev->mime_boundary = NULL;
1142 rev->mime_boundary = arg;
1144 rev->mime_boundary = git_version_string;
1149 static int header_callback(const struct option *opt, const char *arg, int unset)
1152 string_list_clear(&extra_hdr, 0);
1153 string_list_clear(&extra_to, 0);
1154 string_list_clear(&extra_cc, 0);
1161 static int to_callback(const struct option *opt, const char *arg, int unset)
1164 string_list_clear(&extra_to, 0);
1166 string_list_append(&extra_to, arg);
1170 static int cc_callback(const struct option *opt, const char *arg, int unset)
1173 string_list_clear(&extra_cc, 0);
1175 string_list_append(&extra_cc, arg);
1179 static int from_callback(const struct option *opt, const char *arg, int unset)
1181 char **from = opt->value;
1188 *from = xstrdup(arg);
1190 *from = xstrdup(git_committer_info(IDENT_NO_DATE));
1194 int cmd_format_patch(int argc, const char **argv, const char *prefix)
1196 struct commit *commit;
1197 struct commit **list = NULL;
1198 struct rev_info rev;
1199 struct setup_revision_opt s_r_opt;
1200 int nr = 0, total, i;
1202 int start_number = -1;
1203 int just_numbers = 0;
1204 int ignore_if_in_upstream = 0;
1205 int cover_letter = -1;
1206 int boundary_count = 0;
1207 int no_binary_diff = 0;
1208 int zero_commit = 0;
1209 struct commit *origin = NULL;
1210 const char *in_reply_to = NULL;
1211 struct patch_ids ids;
1212 struct strbuf buf = STRBUF_INIT;
1213 int use_patch_format = 0;
1215 int reroll_count = -1;
1216 char *branch_name = NULL;
1218 const struct option builtin_format_patch_options[] = {
1219 { OPTION_CALLBACK, 'n', "numbered", &numbered, NULL,
1220 N_("use [PATCH n/m] even with a single patch"),
1221 PARSE_OPT_NOARG, numbered_callback },
1222 { OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL,
1223 N_("use [PATCH] even with multiple patches"),
1224 PARSE_OPT_NOARG, no_numbered_callback },
1225 OPT_BOOL('s', "signoff", &do_signoff, N_("add Signed-off-by:")),
1226 OPT_BOOL(0, "stdout", &use_stdout,
1227 N_("print patches to standard out")),
1228 OPT_BOOL(0, "cover-letter", &cover_letter,
1229 N_("generate a cover letter")),
1230 OPT_BOOL(0, "numbered-files", &just_numbers,
1231 N_("use simple number sequence for output file names")),
1232 OPT_STRING(0, "suffix", &fmt_patch_suffix, N_("sfx"),
1233 N_("use <sfx> instead of '.patch'")),
1234 OPT_INTEGER(0, "start-number", &start_number,
1235 N_("start numbering patches at <n> instead of 1")),
1236 OPT_INTEGER('v', "reroll-count", &reroll_count,
1237 N_("mark the series as Nth re-roll")),
1238 { OPTION_CALLBACK, 0, "subject-prefix", &rev, N_("prefix"),
1239 N_("Use [<prefix>] instead of [PATCH]"),
1240 PARSE_OPT_NONEG, subject_prefix_callback },
1241 { OPTION_CALLBACK, 'o', "output-directory", &output_directory,
1242 N_("dir"), N_("store resulting files in <dir>"),
1243 PARSE_OPT_NONEG, output_directory_callback },
1244 { OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL,
1245 N_("don't strip/add [PATCH]"),
1246 PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback },
1247 OPT_BOOL(0, "no-binary", &no_binary_diff,
1248 N_("don't output binary diffs")),
1249 OPT_BOOL(0, "zero-commit", &zero_commit,
1250 N_("output all-zero hash in From header")),
1251 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream,
1252 N_("don't include a patch matching a commit upstream")),
1253 { OPTION_SET_INT, 'p', "no-stat", &use_patch_format, NULL,
1254 N_("show patch format instead of default (patch + stat)"),
1255 PARSE_OPT_NONEG | PARSE_OPT_NOARG, NULL, 1},
1256 OPT_GROUP(N_("Messaging")),
1257 { OPTION_CALLBACK, 0, "add-header", NULL, N_("header"),
1258 N_("add email header"), 0, header_callback },
1259 { OPTION_CALLBACK, 0, "to", NULL, N_("email"), N_("add To: header"),
1261 { OPTION_CALLBACK, 0, "cc", NULL, N_("email"), N_("add Cc: header"),
1263 { OPTION_CALLBACK, 0, "from", &from, N_("ident"),
1264 N_("set From address to <ident> (or committer ident if absent)"),
1265 PARSE_OPT_OPTARG, from_callback },
1266 OPT_STRING(0, "in-reply-to", &in_reply_to, N_("message-id"),
1267 N_("make first mail a reply to <message-id>")),
1268 { OPTION_CALLBACK, 0, "attach", &rev, N_("boundary"),
1269 N_("attach the patch"), PARSE_OPT_OPTARG,
1271 { OPTION_CALLBACK, 0, "inline", &rev, N_("boundary"),
1272 N_("inline the patch"),
1273 PARSE_OPT_OPTARG | PARSE_OPT_NONEG,
1275 { OPTION_CALLBACK, 0, "thread", &thread, N_("style"),
1276 N_("enable message threading, styles: shallow, deep"),
1277 PARSE_OPT_OPTARG, thread_callback },
1278 OPT_STRING(0, "signature", &signature, N_("signature"),
1279 N_("add a signature")),
1280 OPT_FILENAME(0, "signature-file", &signature_file,
1281 N_("add a signature from a file")),
1282 OPT__QUIET(&quiet, N_("don't print the patch filenames")),
1286 extra_hdr.strdup_strings = 1;
1287 extra_to.strdup_strings = 1;
1288 extra_cc.strdup_strings = 1;
1289 init_log_defaults();
1290 git_config(git_format_config, NULL);
1291 init_revisions(&rev, prefix);
1292 rev.commit_format = CMIT_FMT_EMAIL;
1293 rev.expand_tabs_in_log_default = 0;
1294 rev.verbose_header = 1;
1296 rev.max_parents = 1;
1297 DIFF_OPT_SET(&rev.diffopt, RECURSIVE);
1298 rev.subject_prefix = fmt_patch_subject_prefix;
1299 memset(&s_r_opt, 0, sizeof(s_r_opt));
1300 s_r_opt.def = "HEAD";
1301 s_r_opt.revarg_opt = REVARG_COMMITTISH;
1303 if (default_attach) {
1304 rev.mime_boundary = default_attach;
1309 * Parse the arguments before setup_revisions(), or something
1310 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1311 * possibly a valid SHA1.
1313 argc = parse_options(argc, argv, prefix, builtin_format_patch_options,
1314 builtin_format_patch_usage,
1315 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
1316 PARSE_OPT_KEEP_DASHDASH);
1318 if (0 < reroll_count) {
1319 struct strbuf sprefix = STRBUF_INIT;
1320 strbuf_addf(&sprefix, "%s v%d",
1321 rev.subject_prefix, reroll_count);
1322 rev.reroll_count = reroll_count;
1323 rev.subject_prefix = strbuf_detach(&sprefix, NULL);
1326 for (i = 0; i < extra_hdr.nr; i++) {
1327 strbuf_addstr(&buf, extra_hdr.items[i].string);
1328 strbuf_addch(&buf, '\n');
1332 strbuf_addstr(&buf, "To: ");
1333 for (i = 0; i < extra_to.nr; i++) {
1335 strbuf_addstr(&buf, " ");
1336 strbuf_addstr(&buf, extra_to.items[i].string);
1337 if (i + 1 < extra_to.nr)
1338 strbuf_addch(&buf, ',');
1339 strbuf_addch(&buf, '\n');
1343 strbuf_addstr(&buf, "Cc: ");
1344 for (i = 0; i < extra_cc.nr; i++) {
1346 strbuf_addstr(&buf, " ");
1347 strbuf_addstr(&buf, extra_cc.items[i].string);
1348 if (i + 1 < extra_cc.nr)
1349 strbuf_addch(&buf, ',');
1350 strbuf_addch(&buf, '\n');
1353 rev.extra_headers = strbuf_detach(&buf, NULL);
1356 if (split_ident_line(&rev.from_ident, from, strlen(from)))
1357 die(_("invalid ident line: %s"), from);
1360 if (start_number < 0)
1364 * If numbered is set solely due to format.numbered in config,
1365 * and it would conflict with --keep-subject (-k) from the
1366 * command line, reset "numbered".
1368 if (numbered && keep_subject && !numbered_cmdline_opt)
1371 if (numbered && keep_subject)
1372 die (_("-n and -k are mutually exclusive."));
1373 if (keep_subject && subject_prefix)
1374 die (_("--subject-prefix and -k are mutually exclusive."));
1375 rev.preserve_subject = keep_subject;
1377 argc = setup_revisions(argc, argv, &rev, &s_r_opt);
1379 die (_("unrecognized argument: %s"), argv[1]);
1381 if (rev.diffopt.output_format & DIFF_FORMAT_NAME)
1382 die(_("--name-only does not make sense"));
1383 if (rev.diffopt.output_format & DIFF_FORMAT_NAME_STATUS)
1384 die(_("--name-status does not make sense"));
1385 if (rev.diffopt.output_format & DIFF_FORMAT_CHECKDIFF)
1386 die(_("--check does not make sense"));
1388 if (!use_patch_format &&
1389 (!rev.diffopt.output_format ||
1390 rev.diffopt.output_format == DIFF_FORMAT_PATCH))
1391 rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY;
1393 /* Always generate a patch */
1394 rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
1396 rev.zero_commit = zero_commit;
1398 if (!DIFF_OPT_TST(&rev.diffopt, TEXT) && !no_binary_diff)
1399 DIFF_OPT_SET(&rev.diffopt, BINARY);
1402 init_display_notes(&rev.notes_opt);
1404 if (!output_directory && !use_stdout)
1405 output_directory = config_output_directory;
1408 output_directory = set_outdir(prefix, output_directory);
1412 if (output_directory) {
1414 die(_("standard output, or directory, which one?"));
1415 if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
1416 die_errno(_("Could not create directory '%s'"),
1420 if (rev.pending.nr == 1) {
1423 if (rev.max_count < 0 && !rev.show_root_diff) {
1425 * This is traditional behaviour of "git format-patch
1426 * origin" that prepares what the origin side still
1429 rev.pending.objects[0].item->flags |= UNINTERESTING;
1430 add_head_to_pending(&rev);
1434 * Otherwise, it is "format-patch -22 HEAD", and/or
1435 * "format-patch --root HEAD". The user wants
1436 * get_revision() to do the usual traversal.
1439 if (!strcmp(rev.pending.objects[0].name, "HEAD"))
1443 unsigned char sha1[20];
1444 const char *ref, *v;
1445 ref = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
1447 if (ref && skip_prefix(ref, "refs/heads/", &v))
1448 branch_name = xstrdup(v);
1450 branch_name = xstrdup(""); /* no branch */
1455 * We cannot move this anywhere earlier because we do want to
1456 * know if --root was given explicitly from the command line.
1458 rev.show_root_diff = 1;
1460 if (ignore_if_in_upstream) {
1461 /* Don't say anything if head and upstream are the same. */
1462 if (rev.pending.nr == 2) {
1463 struct object_array_entry *o = rev.pending.objects;
1464 if (oidcmp(&o[0].item->oid, &o[1].item->oid) == 0)
1467 get_patch_ids(&rev, &ids);
1471 realstdout = xfdopen(xdup(1), "w");
1473 if (prepare_revision_walk(&rev))
1474 die(_("revision walk setup failed"));
1476 while ((commit = get_revision(&rev)) != NULL) {
1477 if (commit->object.flags & BOUNDARY) {
1479 origin = (boundary_count == 1) ? commit : NULL;
1483 if (ignore_if_in_upstream && has_commit_patch_id(commit, &ids))
1487 REALLOC_ARRAY(list, nr);
1488 list[nr - 1] = commit;
1494 if (!keep_subject && auto_number && total > 1)
1497 rev.total = total + start_number - 1;
1498 if (cover_letter == -1) {
1499 if (config_cover_letter == COVER_AUTO)
1500 cover_letter = (total > 1);
1502 cover_letter = (config_cover_letter == COVER_ON);
1506 ; /* --no-signature inhibits all signatures */
1507 } else if (signature && signature != git_version_string) {
1508 ; /* non-default signature already set */
1509 } else if (signature_file) {
1510 struct strbuf buf = STRBUF_INIT;
1512 if (strbuf_read_file(&buf, signature_file, 128) < 0)
1513 die_errno(_("unable to read signature file '%s'"), signature_file);
1514 signature = strbuf_detach(&buf, NULL);
1517 if (in_reply_to || thread || cover_letter)
1518 rev.ref_message_ids = xcalloc(1, sizeof(struct string_list));
1520 const char *msgid = clean_message_id(in_reply_to);
1521 string_list_append(rev.ref_message_ids, msgid);
1523 rev.numbered_files = just_numbers;
1524 rev.patch_suffix = fmt_patch_suffix;
1527 gen_message_id(&rev, "cover");
1528 make_cover_letter(&rev, use_stdout,
1529 origin, nr, list, branch_name, quiet);
1533 rev.add_signoff = do_signoff;
1537 rev.nr = total - nr + (start_number - 1);
1538 /* Make the second and subsequent mails replies to the first */
1540 /* Have we already had a message ID? */
1541 if (rev.message_id) {
1543 * For deep threading: make every mail
1544 * a reply to the previous one, no
1545 * matter what other options are set.
1547 * For shallow threading:
1549 * Without --cover-letter and
1550 * --in-reply-to, make every mail a
1551 * reply to the one before.
1553 * With --in-reply-to but no
1554 * --cover-letter, make every mail a
1555 * reply to the <reply-to>.
1557 * With --cover-letter, make every
1558 * mail but the cover letter a reply
1559 * to the cover letter. The cover
1560 * letter is a reply to the
1561 * --in-reply-to, if specified.
1563 if (thread == THREAD_SHALLOW
1564 && rev.ref_message_ids->nr > 0
1565 && (!cover_letter || rev.nr > 1))
1566 free(rev.message_id);
1568 string_list_append(rev.ref_message_ids,
1571 gen_message_id(&rev, oid_to_hex(&commit->object.oid));
1575 reopen_stdout(rev.numbered_files ? NULL : commit, NULL, &rev, quiet))
1576 die(_("Failed to create output files"));
1577 shown = log_tree_commit(&rev, commit);
1578 free_commit_buffer(commit);
1580 /* We put one extra blank line between formatted
1581 * patches and this flag is used by log-tree code
1582 * to see if it needs to emit a LF before showing
1583 * the log; when using one file per patch, we do
1584 * not want the extra blank line.
1589 if (rev.mime_boundary)
1590 printf("\n--%s%s--\n\n\n",
1591 mime_boundary_leader,
1601 string_list_clear(&extra_to, 0);
1602 string_list_clear(&extra_cc, 0);
1603 string_list_clear(&extra_hdr, 0);
1604 if (ignore_if_in_upstream)
1605 free_patch_ids(&ids);
1609 static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
1611 unsigned char sha1[20];
1612 if (get_sha1(arg, sha1) == 0) {
1613 struct commit *commit = lookup_commit_reference(sha1);
1615 commit->object.flags |= flags;
1616 add_pending_object(revs, &commit->object, arg);
1623 static const char * const cherry_usage[] = {
1624 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
1628 static void print_commit(char sign, struct commit *commit, int verbose,
1632 printf("%c %s\n", sign,
1633 find_unique_abbrev(commit->object.oid.hash, abbrev));
1635 struct strbuf buf = STRBUF_INIT;
1636 pp_commit_easy(CMIT_FMT_ONELINE, commit, &buf);
1637 printf("%c %s %s\n", sign,
1638 find_unique_abbrev(commit->object.oid.hash, abbrev),
1640 strbuf_release(&buf);
1644 int cmd_cherry(int argc, const char **argv, const char *prefix)
1646 struct rev_info revs;
1647 struct patch_ids ids;
1648 struct commit *commit;
1649 struct commit_list *list = NULL;
1650 struct branch *current_branch;
1651 const char *upstream;
1652 const char *head = "HEAD";
1653 const char *limit = NULL;
1654 int verbose = 0, abbrev = 0;
1656 struct option options[] = {
1657 OPT__ABBREV(&abbrev),
1658 OPT__VERBOSE(&verbose, N_("be verbose")),
1662 argc = parse_options(argc, argv, prefix, options, cherry_usage, 0);
1675 current_branch = branch_get(NULL);
1676 upstream = branch_get_upstream(current_branch, NULL);
1678 fprintf(stderr, _("Could not find a tracked"
1679 " remote branch, please"
1680 " specify <upstream> manually.\n"));
1681 usage_with_options(cherry_usage, options);
1685 init_revisions(&revs, prefix);
1686 revs.max_parents = 1;
1688 if (add_pending_commit(head, &revs, 0))
1689 die(_("Unknown commit %s"), head);
1690 if (add_pending_commit(upstream, &revs, UNINTERESTING))
1691 die(_("Unknown commit %s"), upstream);
1693 /* Don't say anything if head and upstream are the same. */
1694 if (revs.pending.nr == 2) {
1695 struct object_array_entry *o = revs.pending.objects;
1696 if (oidcmp(&o[0].item->oid, &o[1].item->oid) == 0)
1700 get_patch_ids(&revs, &ids);
1702 if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
1703 die(_("Unknown commit %s"), limit);
1705 /* reverse the list of commits */
1706 if (prepare_revision_walk(&revs))
1707 die(_("revision walk setup failed"));
1708 while ((commit = get_revision(&revs)) != NULL) {
1709 commit_list_insert(commit, &list);
1715 commit = list->item;
1716 if (has_commit_patch_id(commit, &ids))
1718 print_commit(sign, commit, verbose, abbrev);
1722 free_patch_ids(&ids);