2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
15 #include "reflog-walk.h"
16 #include "patch-ids.h"
17 #include "run-command.h"
20 #include "string-list.h"
21 #include "parse-options.h"
23 /* Set a default date-time format for git log ("log.date" config variable) */
24 static const char *default_date_mode = NULL;
26 static int default_show_root = 1;
27 static int decoration_style;
28 static const char *fmt_patch_subject_prefix = "PATCH";
29 static const char *fmt_pretty;
31 static const char * const builtin_log_usage =
32 "git log [<options>] [<since>..<until>] [[--] <path>...]\n"
33 " or: git show [options] <object>...";
35 static int parse_decoration_style(const char *var, const char *value)
37 switch (git_config_maybe_bool(var, value)) {
39 return DECORATE_SHORT_REFS;
45 if (!strcmp(value, "full"))
46 return DECORATE_FULL_REFS;
47 else if (!strcmp(value, "short"))
48 return DECORATE_SHORT_REFS;
52 static void cmd_log_init_defaults(struct rev_info *rev)
54 rev->abbrev = DEFAULT_ABBREV;
55 rev->commit_format = CMIT_FMT_DEFAULT;
57 get_commit_format(fmt_pretty, rev);
58 rev->verbose_header = 1;
59 DIFF_OPT_SET(&rev->diffopt, RECURSIVE);
60 rev->show_root_diff = default_show_root;
61 rev->subject_prefix = fmt_patch_subject_prefix;
62 DIFF_OPT_SET(&rev->diffopt, ALLOW_TEXTCONV);
64 if (default_date_mode)
65 rev->date_mode = parse_date_format(default_date_mode);
68 static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
69 struct rev_info *rev, struct setup_revision_opt *opt)
72 int decoration_given = 0;
73 struct userformat_want w;
75 * Check for -h before setup_revisions(), or "git log -h" will
76 * fail when run without a git directory.
78 if (argc == 2 && !strcmp(argv[1], "-h"))
79 usage(builtin_log_usage);
80 argc = setup_revisions(argc, argv, rev, opt);
82 memset(&w, 0, sizeof(w));
83 userformat_find_requirements(NULL, &w);
85 if (!rev->show_notes_given && (!rev->pretty_given || w.notes))
88 init_display_notes(&rev->notes_opt);
90 if (rev->diffopt.pickaxe || rev->diffopt.filter)
91 rev->always_show_header = 0;
92 if (DIFF_OPT_TST(&rev->diffopt, FOLLOW_RENAMES)) {
93 rev->always_show_header = 0;
94 if (rev->diffopt.nr_paths != 1)
95 usage("git logs can only follow renames on one pathname at a time");
97 for (i = 1; i < argc; i++) {
98 const char *arg = argv[i];
99 if (!strcmp(arg, "--decorate")) {
100 decoration_style = DECORATE_SHORT_REFS;
101 decoration_given = 1;
102 } else if (!prefixcmp(arg, "--decorate=")) {
103 const char *v = skip_prefix(arg, "--decorate=");
104 decoration_style = parse_decoration_style(arg, v);
105 if (decoration_style < 0)
106 die("invalid --decorate option: %s", arg);
107 decoration_given = 1;
108 } else if (!strcmp(arg, "--no-decorate")) {
109 decoration_style = 0;
110 } else if (!strcmp(arg, "--source")) {
111 rev->show_source = 1;
112 } else if (!strcmp(arg, "-h")) {
113 usage(builtin_log_usage);
115 die("unrecognized argument: %s", arg);
119 * defeat log.decorate configuration interacting with --pretty=raw
120 * from the command line.
122 if (!decoration_given && rev->pretty_given
123 && rev->commit_format == CMIT_FMT_RAW)
124 decoration_style = 0;
126 if (decoration_style) {
127 rev->show_decorations = 1;
128 load_ref_decorations(decoration_style);
133 static void cmd_log_init(int argc, const char **argv, const char *prefix,
134 struct rev_info *rev, struct setup_revision_opt *opt)
136 cmd_log_init_defaults(rev);
137 cmd_log_init_finish(argc, argv, prefix, rev, opt);
141 * This gives a rough estimate for how many commits we
142 * will print out in the list.
144 static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
149 struct commit *commit = list->item;
150 unsigned int flags = commit->object.flags;
152 if (!(flags & (TREESAME | UNINTERESTING)))
158 static void show_early_header(struct rev_info *rev, const char *stage, int nr)
160 if (rev->shown_one) {
162 if (rev->commit_format != CMIT_FMT_ONELINE)
163 putchar(rev->diffopt.line_termination);
165 printf("Final output: %d %s\n", nr, stage);
168 static struct itimerval early_output_timer;
170 static void log_show_early(struct rev_info *revs, struct commit_list *list)
172 int i = revs->early_output;
175 sort_in_topological_order(&list, revs->lifo);
177 struct commit *commit = list->item;
178 switch (simplify_commit(revs, commit)) {
181 int n = estimate_commit_count(revs, list);
182 show_early_header(revs, "incomplete", n);
185 log_tree_commit(revs, commit);
196 /* Did we already get enough commits for the early output? */
201 * ..if no, then repeat it twice a second until we
204 * NOTE! We don't use "it_interval", because if the
205 * reader isn't listening, we want our output to be
206 * throttled by the writing, and not have the timer
207 * trigger every second even if we're blocked on a
210 early_output_timer.it_value.tv_sec = 0;
211 early_output_timer.it_value.tv_usec = 500000;
212 setitimer(ITIMER_REAL, &early_output_timer, NULL);
215 static void early_output(int signal)
217 show_early_output = log_show_early;
220 static void setup_early_output(struct rev_info *rev)
225 * Set up the signal handler, minimally intrusively:
226 * we only set a single volatile integer word (not
227 * using sigatomic_t - trying to avoid unnecessary
228 * system dependencies and headers), and using
231 memset(&sa, 0, sizeof(sa));
232 sa.sa_handler = early_output;
233 sigemptyset(&sa.sa_mask);
234 sa.sa_flags = SA_RESTART;
235 sigaction(SIGALRM, &sa, NULL);
238 * If we can get the whole output in less than a
239 * tenth of a second, don't even bother doing the
240 * early-output thing..
242 * This is a one-time-only trigger.
244 early_output_timer.it_value.tv_sec = 0;
245 early_output_timer.it_value.tv_usec = 100000;
246 setitimer(ITIMER_REAL, &early_output_timer, NULL);
249 static void finish_early_output(struct rev_info *rev)
251 int n = estimate_commit_count(rev, rev->commits);
252 signal(SIGALRM, SIG_IGN);
253 show_early_header(rev, "done", n);
256 static int cmd_log_walk(struct rev_info *rev)
258 struct commit *commit;
260 if (rev->early_output)
261 setup_early_output(rev);
263 if (prepare_revision_walk(rev))
264 die("revision walk setup failed");
266 if (rev->early_output)
267 finish_early_output(rev);
270 * For --check and --exit-code, the exit code is based on CHECK_FAILED
271 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
272 * retain that state information if replacing rev->diffopt in this loop
274 while ((commit = get_revision(rev)) != NULL) {
275 log_tree_commit(rev, commit);
276 if (!rev->reflog_info) {
277 /* we allow cycles in reflog ancestry */
278 free(commit->buffer);
279 commit->buffer = NULL;
281 free_commit_list(commit->parents);
282 commit->parents = NULL;
284 if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
285 DIFF_OPT_TST(&rev->diffopt, CHECK_FAILED)) {
288 return diff_result_code(&rev->diffopt, 0);
291 static int git_log_config(const char *var, const char *value, void *cb)
293 if (!strcmp(var, "format.pretty"))
294 return git_config_string(&fmt_pretty, var, value);
295 if (!strcmp(var, "format.subjectprefix"))
296 return git_config_string(&fmt_patch_subject_prefix, var, value);
297 if (!strcmp(var, "log.date"))
298 return git_config_string(&default_date_mode, var, value);
299 if (!strcmp(var, "log.decorate")) {
300 decoration_style = parse_decoration_style(var, value);
301 if (decoration_style < 0)
302 decoration_style = 0; /* maybe warn? */
305 if (!strcmp(var, "log.showroot")) {
306 default_show_root = git_config_bool(var, value);
309 if (!prefixcmp(var, "color.decorate."))
310 return parse_decorate_color_config(var, 15, value);
312 return git_diff_ui_config(var, value, cb);
315 int cmd_whatchanged(int argc, const char **argv, const char *prefix)
318 struct setup_revision_opt opt;
320 git_config(git_log_config, NULL);
322 if (diff_use_color_default == -1)
323 diff_use_color_default = git_use_color_default;
325 init_revisions(&rev, prefix);
327 rev.simplify_history = 0;
328 memset(&opt, 0, sizeof(opt));
330 cmd_log_init(argc, argv, prefix, &rev, &opt);
331 if (!rev.diffopt.output_format)
332 rev.diffopt.output_format = DIFF_FORMAT_RAW;
333 return cmd_log_walk(&rev);
336 static void show_tagger(char *buf, int len, struct rev_info *rev)
338 struct strbuf out = STRBUF_INIT;
340 pp_user_info("Tagger", rev->commit_format, &out, buf, rev->date_mode,
341 get_log_output_encoding());
342 printf("%s", out.buf);
343 strbuf_release(&out);
346 static int show_object(const unsigned char *sha1, int show_tag_object,
347 struct rev_info *rev)
350 enum object_type type;
351 char *buf = read_sha1_file(sha1, &type, &size);
355 return error("Could not read object %s", sha1_to_hex(sha1));
358 while (offset < size && buf[offset] != '\n') {
359 int new_offset = offset + 1;
360 while (new_offset < size && buf[new_offset++] != '\n')
362 if (!prefixcmp(buf + offset, "tagger "))
363 show_tagger(buf + offset + 7,
364 new_offset - offset - 7, rev);
369 fwrite(buf + offset, size - offset, 1, stdout);
374 static int show_tree_object(const unsigned char *sha1,
375 const char *base, int baselen,
376 const char *pathname, unsigned mode, int stage, void *context)
378 printf("%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
382 static void show_rev_tweak_rev(struct rev_info *rev, struct setup_revision_opt *opt)
384 if (rev->ignore_merges) {
385 /* There was no "-m" on the command line */
386 rev->ignore_merges = 0;
387 if (!rev->first_parent_only && !rev->combine_merges) {
388 /* No "--first-parent", "-c", nor "--cc" */
389 rev->combine_merges = 1;
390 rev->dense_combined_merges = 1;
393 if (!rev->diffopt.output_format)
394 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
397 int cmd_show(int argc, const char **argv, const char *prefix)
400 struct object_array_entry *objects;
401 struct setup_revision_opt opt;
402 int i, count, ret = 0;
404 git_config(git_log_config, NULL);
406 if (diff_use_color_default == -1)
407 diff_use_color_default = git_use_color_default;
409 init_revisions(&rev, prefix);
411 rev.always_show_header = 1;
413 memset(&opt, 0, sizeof(opt));
415 opt.tweak = show_rev_tweak_rev;
416 cmd_log_init(argc, argv, prefix, &rev, &opt);
418 count = rev.pending.nr;
419 objects = rev.pending.objects;
420 for (i = 0; i < count && !ret; i++) {
421 struct object *o = objects[i].item;
422 const char *name = objects[i].name;
425 ret = show_object(o->sha1, 0, NULL);
428 struct tag *t = (struct tag *)o;
432 printf("%stag %s%s\n",
433 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
435 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
436 ret = show_object(o->sha1, 1, &rev);
440 o = parse_object(t->tagged->sha1);
442 ret = error("Could not read object %s",
443 sha1_to_hex(t->tagged->sha1));
451 printf("%stree %s%s\n\n",
452 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
454 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
455 read_tree_recursive((struct tree *)o, "", 0, 0, NULL,
456 show_tree_object, NULL);
460 rev.pending.nr = rev.pending.alloc = 0;
461 rev.pending.objects = NULL;
462 add_object_array(o, name, &rev.pending);
463 ret = cmd_log_walk(&rev);
466 ret = error("Unknown type: %d", o->type);
474 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
476 int cmd_log_reflog(int argc, const char **argv, const char *prefix)
479 struct setup_revision_opt opt;
481 git_config(git_log_config, NULL);
483 if (diff_use_color_default == -1)
484 diff_use_color_default = git_use_color_default;
486 init_revisions(&rev, prefix);
487 init_reflog_walk(&rev.reflog_info);
488 rev.abbrev_commit = 1;
489 rev.verbose_header = 1;
490 memset(&opt, 0, sizeof(opt));
492 cmd_log_init_defaults(&rev);
493 rev.commit_format = CMIT_FMT_ONELINE;
494 rev.use_terminator = 1;
495 rev.always_show_header = 1;
496 cmd_log_init_finish(argc, argv, prefix, &rev, &opt);
498 return cmd_log_walk(&rev);
501 int cmd_log(int argc, const char **argv, const char *prefix)
504 struct setup_revision_opt opt;
506 git_config(git_log_config, NULL);
508 if (diff_use_color_default == -1)
509 diff_use_color_default = git_use_color_default;
511 init_revisions(&rev, prefix);
512 rev.always_show_header = 1;
513 memset(&opt, 0, sizeof(opt));
515 cmd_log_init(argc, argv, prefix, &rev, &opt);
516 return cmd_log_walk(&rev);
521 static const char *fmt_patch_suffix = ".patch";
522 static int numbered = 0;
523 static int auto_number = 1;
525 static char *default_attach = NULL;
527 static struct string_list extra_hdr;
528 static struct string_list extra_to;
529 static struct string_list extra_cc;
531 static void add_header(const char *value)
533 struct string_list_item *item;
534 int len = strlen(value);
535 while (len && value[len - 1] == '\n')
538 if (!strncasecmp(value, "to: ", 4)) {
539 item = string_list_append(&extra_to, value + 4);
541 } else if (!strncasecmp(value, "cc: ", 4)) {
542 item = string_list_append(&extra_cc, value + 4);
545 item = string_list_append(&extra_hdr, value);
548 item->string[len] = '\0';
551 #define THREAD_SHALLOW 1
552 #define THREAD_DEEP 2
554 static int do_signoff;
555 static const char *signature = git_version_string;
557 static int git_format_config(const char *var, const char *value, void *cb)
559 if (!strcmp(var, "format.headers")) {
561 die("format.headers without value");
565 if (!strcmp(var, "format.suffix"))
566 return git_config_string(&fmt_patch_suffix, var, value);
567 if (!strcmp(var, "format.to")) {
569 return config_error_nonbool(var);
570 string_list_append(&extra_to, value);
573 if (!strcmp(var, "format.cc")) {
575 return config_error_nonbool(var);
576 string_list_append(&extra_cc, value);
579 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
582 if (!strcmp(var, "format.numbered")) {
583 if (value && !strcasecmp(value, "auto")) {
587 numbered = git_config_bool(var, value);
588 auto_number = auto_number && numbered;
591 if (!strcmp(var, "format.attach")) {
593 default_attach = xstrdup(value);
595 default_attach = xstrdup(git_version_string);
598 if (!strcmp(var, "format.thread")) {
599 if (value && !strcasecmp(value, "deep")) {
600 thread = THREAD_DEEP;
603 if (value && !strcasecmp(value, "shallow")) {
604 thread = THREAD_SHALLOW;
607 thread = git_config_bool(var, value) && THREAD_SHALLOW;
610 if (!strcmp(var, "format.signoff")) {
611 do_signoff = git_config_bool(var, value);
614 if (!strcmp(var, "format.signature"))
615 return git_config_string(&signature, var, value);
617 return git_log_config(var, value, cb);
620 static FILE *realstdout = NULL;
621 static const char *output_directory = NULL;
622 static int outdir_offset;
624 static int reopen_stdout(struct commit *commit, struct rev_info *rev)
626 struct strbuf filename = STRBUF_INIT;
627 int suffix_len = strlen(fmt_patch_suffix) + 1;
629 if (output_directory) {
630 strbuf_addstr(&filename, output_directory);
632 PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len)
633 return error("name of output directory is too long");
634 if (filename.buf[filename.len - 1] != '/')
635 strbuf_addch(&filename, '/');
638 get_patch_filename(commit, rev->nr, fmt_patch_suffix, &filename);
640 if (!DIFF_OPT_TST(&rev->diffopt, QUICK))
641 fprintf(realstdout, "%s\n", filename.buf + outdir_offset);
643 if (freopen(filename.buf, "w", stdout) == NULL)
644 return error("Cannot open patch file %s", filename.buf);
646 strbuf_release(&filename);
650 static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids, const char *prefix)
652 struct rev_info check_rev;
653 struct commit *commit;
654 struct object *o1, *o2;
655 unsigned flags1, flags2;
657 if (rev->pending.nr != 2)
658 die("Need exactly one range.");
660 o1 = rev->pending.objects[0].item;
662 o2 = rev->pending.objects[1].item;
665 if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
670 /* given a range a..b get all patch ids for b..a */
671 init_revisions(&check_rev, prefix);
672 o1->flags ^= UNINTERESTING;
673 o2->flags ^= UNINTERESTING;
674 add_pending_object(&check_rev, o1, "o1");
675 add_pending_object(&check_rev, o2, "o2");
676 if (prepare_revision_walk(&check_rev))
677 die("revision walk setup failed");
679 while ((commit = get_revision(&check_rev)) != NULL) {
681 if (commit->parents && commit->parents->next)
684 add_commit_patch_id(commit, ids);
687 /* reset for next revision walk */
688 clear_commit_marks((struct commit *)o1,
689 SEEN | UNINTERESTING | SHOWN | ADDED);
690 clear_commit_marks((struct commit *)o2,
691 SEEN | UNINTERESTING | SHOWN | ADDED);
696 static void gen_message_id(struct rev_info *info, char *base)
698 const char *committer = git_committer_info(IDENT_WARN_ON_NO_NAME);
699 const char *email_start = strrchr(committer, '<');
700 const char *email_end = strrchr(committer, '>');
701 struct strbuf buf = STRBUF_INIT;
702 if (!email_start || !email_end || email_start > email_end - 1)
703 die("Could not extract email from committer identity.");
704 strbuf_addf(&buf, "%s.%lu.git.%.*s", base,
705 (unsigned long) time(NULL),
706 (int)(email_end - email_start - 1), email_start + 1);
707 info->message_id = strbuf_detach(&buf, NULL);
710 static void print_signature(void)
712 if (signature && *signature)
713 printf("-- \n%s\n\n", signature);
716 static void make_cover_letter(struct rev_info *rev, int use_stdout,
717 int numbered, int numbered_files,
718 struct commit *origin,
719 int nr, struct commit **list, struct commit *head)
721 const char *committer;
722 const char *subject_start = NULL;
723 const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
725 const char *extra_headers = rev->extra_headers;
727 struct strbuf sb = STRBUF_INIT;
729 const char *encoding = "UTF-8";
730 struct diff_options opts;
731 int need_8bit_cte = 0;
732 struct commit *commit = NULL;
734 if (rev->commit_format != CMIT_FMT_EMAIL)
735 die("Cover letter needs email format");
737 committer = git_committer_info(0);
739 if (!numbered_files) {
741 * We fake a commit for the cover letter so we get the filename
744 commit = xcalloc(1, sizeof(*commit));
745 commit->buffer = xmalloc(400);
746 snprintf(commit->buffer, 400,
747 "tree 0000000000000000000000000000000000000000\n"
752 sha1_to_hex(head->object.sha1), committer, committer);
755 if (!use_stdout && reopen_stdout(commit, rev))
760 free(commit->buffer);
764 log_write_email_headers(rev, head, &subject_start, &extra_headers,
767 for (i = 0; !need_8bit_cte && i < nr; i++)
768 if (has_non_ascii(list[i]->buffer))
772 pp_user_info(NULL, CMIT_FMT_EMAIL, &sb, committer, DATE_RFC2822,
774 pp_title_line(CMIT_FMT_EMAIL, &msg, &sb, subject_start, extra_headers,
775 encoding, need_8bit_cte);
776 pp_remainder(CMIT_FMT_EMAIL, &msg, &sb, 0);
777 printf("%s\n", sb.buf);
786 for (i = 0; i < nr; i++)
787 shortlog_add_commit(&log, list[i]);
789 shortlog_output(&log);
792 * We can only do diffstat with a unique reference point
797 memcpy(&opts, &rev->diffopt, sizeof(opts));
798 opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
800 diff_setup_done(&opts);
802 diff_tree_sha1(origin->tree->object.sha1,
803 head->tree->object.sha1,
812 static const char *clean_message_id(const char *msg_id)
815 const char *a, *z, *m;
818 while ((ch = *m) && (isspace(ch) || (ch == '<')))
823 if (!isspace(ch) && (ch != '>'))
828 die("insane in-reply-to: %s", msg_id);
831 return xmemdupz(a, z - a);
834 static const char *set_outdir(const char *prefix, const char *output_directory)
836 if (output_directory && is_absolute_path(output_directory))
837 return output_directory;
839 if (!prefix || !*prefix) {
840 if (output_directory)
841 return output_directory;
842 /* The user did not explicitly ask for "./" */
847 outdir_offset = strlen(prefix);
848 if (!output_directory)
851 return xstrdup(prefix_filename(prefix, outdir_offset,
855 static const char * const builtin_format_patch_usage[] = {
856 "git format-patch [options] [<since> | <revision range>]",
860 static int keep_subject = 0;
862 static int keep_callback(const struct option *opt, const char *arg, int unset)
864 ((struct rev_info *)opt->value)->total = -1;
869 static int subject_prefix = 0;
871 static int subject_prefix_callback(const struct option *opt, const char *arg,
875 ((struct rev_info *)opt->value)->subject_prefix = arg;
879 static int numbered_cmdline_opt = 0;
881 static int numbered_callback(const struct option *opt, const char *arg,
884 *(int *)opt->value = numbered_cmdline_opt = unset ? 0 : 1;
890 static int no_numbered_callback(const struct option *opt, const char *arg,
893 return numbered_callback(opt, arg, 1);
896 static int output_directory_callback(const struct option *opt, const char *arg,
899 const char **dir = (const char **)opt->value;
901 die("Two output directories?");
906 static int thread_callback(const struct option *opt, const char *arg, int unset)
908 int *thread = (int *)opt->value;
911 else if (!arg || !strcmp(arg, "shallow"))
912 *thread = THREAD_SHALLOW;
913 else if (!strcmp(arg, "deep"))
914 *thread = THREAD_DEEP;
920 static int attach_callback(const struct option *opt, const char *arg, int unset)
922 struct rev_info *rev = (struct rev_info *)opt->value;
924 rev->mime_boundary = NULL;
926 rev->mime_boundary = arg;
928 rev->mime_boundary = git_version_string;
929 rev->no_inline = unset ? 0 : 1;
933 static int inline_callback(const struct option *opt, const char *arg, int unset)
935 struct rev_info *rev = (struct rev_info *)opt->value;
937 rev->mime_boundary = NULL;
939 rev->mime_boundary = arg;
941 rev->mime_boundary = git_version_string;
946 static int header_callback(const struct option *opt, const char *arg, int unset)
949 string_list_clear(&extra_hdr, 0);
950 string_list_clear(&extra_to, 0);
951 string_list_clear(&extra_cc, 0);
958 static int to_callback(const struct option *opt, const char *arg, int unset)
961 string_list_clear(&extra_to, 0);
963 string_list_append(&extra_to, arg);
967 static int cc_callback(const struct option *opt, const char *arg, int unset)
970 string_list_clear(&extra_cc, 0);
972 string_list_append(&extra_cc, arg);
976 int cmd_format_patch(int argc, const char **argv, const char *prefix)
978 struct commit *commit;
979 struct commit **list = NULL;
981 struct setup_revision_opt s_r_opt;
982 int nr = 0, total, i;
984 int start_number = -1;
985 int numbered_files = 0; /* _just_ numbers */
986 int ignore_if_in_upstream = 0;
987 int cover_letter = 0;
988 int boundary_count = 0;
989 int no_binary_diff = 0;
990 struct commit *origin = NULL, *head = NULL;
991 const char *in_reply_to = NULL;
992 struct patch_ids ids;
993 char *add_signoff = NULL;
994 struct strbuf buf = STRBUF_INIT;
995 int use_patch_format = 0;
996 const struct option builtin_format_patch_options[] = {
997 { OPTION_CALLBACK, 'n', "numbered", &numbered, NULL,
998 "use [PATCH n/m] even with a single patch",
999 PARSE_OPT_NOARG, numbered_callback },
1000 { OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL,
1001 "use [PATCH] even with multiple patches",
1002 PARSE_OPT_NOARG, no_numbered_callback },
1003 OPT_BOOLEAN('s', "signoff", &do_signoff, "add Signed-off-by:"),
1004 OPT_BOOLEAN(0, "stdout", &use_stdout,
1005 "print patches to standard out"),
1006 OPT_BOOLEAN(0, "cover-letter", &cover_letter,
1007 "generate a cover letter"),
1008 OPT_BOOLEAN(0, "numbered-files", &numbered_files,
1009 "use simple number sequence for output file names"),
1010 OPT_STRING(0, "suffix", &fmt_patch_suffix, "sfx",
1011 "use <sfx> instead of '.patch'"),
1012 OPT_INTEGER(0, "start-number", &start_number,
1013 "start numbering patches at <n> instead of 1"),
1014 { OPTION_CALLBACK, 0, "subject-prefix", &rev, "prefix",
1015 "Use [<prefix>] instead of [PATCH]",
1016 PARSE_OPT_NONEG, subject_prefix_callback },
1017 { OPTION_CALLBACK, 'o', "output-directory", &output_directory,
1018 "dir", "store resulting files in <dir>",
1019 PARSE_OPT_NONEG, output_directory_callback },
1020 { OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL,
1021 "don't strip/add [PATCH]",
1022 PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback },
1023 OPT_BOOLEAN(0, "no-binary", &no_binary_diff,
1024 "don't output binary diffs"),
1025 OPT_BOOLEAN(0, "ignore-if-in-upstream", &ignore_if_in_upstream,
1026 "don't include a patch matching a commit upstream"),
1027 { OPTION_BOOLEAN, 'p', "no-stat", &use_patch_format, NULL,
1028 "show patch format instead of default (patch + stat)",
1029 PARSE_OPT_NONEG | PARSE_OPT_NOARG },
1030 OPT_GROUP("Messaging"),
1031 { OPTION_CALLBACK, 0, "add-header", NULL, "header",
1032 "add email header", 0, header_callback },
1033 { OPTION_CALLBACK, 0, "to", NULL, "email", "add To: header",
1035 { OPTION_CALLBACK, 0, "cc", NULL, "email", "add Cc: header",
1037 OPT_STRING(0, "in-reply-to", &in_reply_to, "message-id",
1038 "make first mail a reply to <message-id>"),
1039 { OPTION_CALLBACK, 0, "attach", &rev, "boundary",
1040 "attach the patch", PARSE_OPT_OPTARG,
1042 { OPTION_CALLBACK, 0, "inline", &rev, "boundary",
1044 PARSE_OPT_OPTARG | PARSE_OPT_NONEG,
1046 { OPTION_CALLBACK, 0, "thread", &thread, "style",
1047 "enable message threading, styles: shallow, deep",
1048 PARSE_OPT_OPTARG, thread_callback },
1049 OPT_STRING(0, "signature", &signature, "signature",
1054 extra_hdr.strdup_strings = 1;
1055 extra_to.strdup_strings = 1;
1056 extra_cc.strdup_strings = 1;
1057 git_config(git_format_config, NULL);
1058 init_revisions(&rev, prefix);
1059 rev.commit_format = CMIT_FMT_EMAIL;
1060 rev.verbose_header = 1;
1063 DIFF_OPT_SET(&rev.diffopt, RECURSIVE);
1064 rev.subject_prefix = fmt_patch_subject_prefix;
1065 memset(&s_r_opt, 0, sizeof(s_r_opt));
1066 s_r_opt.def = "HEAD";
1068 if (default_attach) {
1069 rev.mime_boundary = default_attach;
1074 * Parse the arguments before setup_revisions(), or something
1075 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1076 * possibly a valid SHA1.
1078 argc = parse_options(argc, argv, prefix, builtin_format_patch_options,
1079 builtin_format_patch_usage,
1080 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
1081 PARSE_OPT_KEEP_DASHDASH);
1084 const char *committer;
1086 committer = git_committer_info(IDENT_ERROR_ON_NO_NAME);
1087 endpos = strchr(committer, '>');
1089 die("bogus committer info %s", committer);
1090 add_signoff = xmemdupz(committer, endpos - committer + 1);
1093 for (i = 0; i < extra_hdr.nr; i++) {
1094 strbuf_addstr(&buf, extra_hdr.items[i].string);
1095 strbuf_addch(&buf, '\n');
1099 strbuf_addstr(&buf, "To: ");
1100 for (i = 0; i < extra_to.nr; i++) {
1102 strbuf_addstr(&buf, " ");
1103 strbuf_addstr(&buf, extra_to.items[i].string);
1104 if (i + 1 < extra_to.nr)
1105 strbuf_addch(&buf, ',');
1106 strbuf_addch(&buf, '\n');
1110 strbuf_addstr(&buf, "Cc: ");
1111 for (i = 0; i < extra_cc.nr; i++) {
1113 strbuf_addstr(&buf, " ");
1114 strbuf_addstr(&buf, extra_cc.items[i].string);
1115 if (i + 1 < extra_cc.nr)
1116 strbuf_addch(&buf, ',');
1117 strbuf_addch(&buf, '\n');
1120 rev.extra_headers = strbuf_detach(&buf, NULL);
1122 if (start_number < 0)
1126 * If numbered is set solely due to format.numbered in config,
1127 * and it would conflict with --keep-subject (-k) from the
1128 * command line, reset "numbered".
1130 if (numbered && keep_subject && !numbered_cmdline_opt)
1133 if (numbered && keep_subject)
1134 die ("-n and -k are mutually exclusive.");
1135 if (keep_subject && subject_prefix)
1136 die ("--subject-prefix and -k are mutually exclusive.");
1138 argc = setup_revisions(argc, argv, &rev, &s_r_opt);
1140 die ("unrecognized argument: %s", argv[1]);
1142 if (rev.diffopt.output_format & DIFF_FORMAT_NAME)
1143 die("--name-only does not make sense");
1144 if (rev.diffopt.output_format & DIFF_FORMAT_NAME_STATUS)
1145 die("--name-status does not make sense");
1146 if (rev.diffopt.output_format & DIFF_FORMAT_CHECKDIFF)
1147 die("--check does not make sense");
1149 if (!use_patch_format &&
1150 (!rev.diffopt.output_format ||
1151 rev.diffopt.output_format == DIFF_FORMAT_PATCH))
1152 rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY;
1154 /* Always generate a patch */
1155 rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
1157 if (!DIFF_OPT_TST(&rev.diffopt, TEXT) && !no_binary_diff)
1158 DIFF_OPT_SET(&rev.diffopt, BINARY);
1161 init_display_notes(&rev.notes_opt);
1164 output_directory = set_outdir(prefix, output_directory);
1168 if (output_directory) {
1170 die("standard output, or directory, which one?");
1171 if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
1172 die_errno("Could not create directory '%s'",
1176 if (rev.pending.nr == 1) {
1177 if (rev.max_count < 0 && !rev.show_root_diff) {
1179 * This is traditional behaviour of "git format-patch
1180 * origin" that prepares what the origin side still
1183 rev.pending.objects[0].item->flags |= UNINTERESTING;
1184 add_head_to_pending(&rev);
1187 * Otherwise, it is "format-patch -22 HEAD", and/or
1188 * "format-patch --root HEAD". The user wants
1189 * get_revision() to do the usual traversal.
1194 * We cannot move this anywhere earlier because we do want to
1195 * know if --root was given explicitly from the command line.
1197 rev.show_root_diff = 1;
1200 /* remember the range */
1202 for (i = 0; i < rev.pending.nr; i++) {
1203 struct object *o = rev.pending.objects[i].item;
1204 if (!(o->flags & UNINTERESTING))
1205 head = (struct commit *)o;
1207 /* We can't generate a cover letter without any patches */
1212 if (ignore_if_in_upstream) {
1213 /* Don't say anything if head and upstream are the same. */
1214 if (rev.pending.nr == 2) {
1215 struct object_array_entry *o = rev.pending.objects;
1216 if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
1219 get_patch_ids(&rev, &ids, prefix);
1223 realstdout = xfdopen(xdup(1), "w");
1225 if (prepare_revision_walk(&rev))
1226 die("revision walk setup failed");
1228 while ((commit = get_revision(&rev)) != NULL) {
1229 if (commit->object.flags & BOUNDARY) {
1231 origin = (boundary_count == 1) ? commit : NULL;
1235 if (ignore_if_in_upstream &&
1236 has_commit_patch_id(commit, &ids))
1240 list = xrealloc(list, nr * sizeof(list[0]));
1241 list[nr - 1] = commit;
1244 if (!keep_subject && auto_number && total > 1)
1247 rev.total = total + start_number - 1;
1248 if (in_reply_to || thread || cover_letter)
1249 rev.ref_message_ids = xcalloc(1, sizeof(struct string_list));
1251 const char *msgid = clean_message_id(in_reply_to);
1252 string_list_append(rev.ref_message_ids, msgid);
1254 rev.numbered_files = numbered_files;
1255 rev.patch_suffix = fmt_patch_suffix;
1258 gen_message_id(&rev, "cover");
1259 make_cover_letter(&rev, use_stdout, numbered, numbered_files,
1260 origin, nr, list, head);
1264 rev.add_signoff = add_signoff;
1268 rev.nr = total - nr + (start_number - 1);
1269 /* Make the second and subsequent mails replies to the first */
1271 /* Have we already had a message ID? */
1272 if (rev.message_id) {
1274 * For deep threading: make every mail
1275 * a reply to the previous one, no
1276 * matter what other options are set.
1278 * For shallow threading:
1280 * Without --cover-letter and
1281 * --in-reply-to, make every mail a
1282 * reply to the one before.
1284 * With --in-reply-to but no
1285 * --cover-letter, make every mail a
1286 * reply to the <reply-to>.
1288 * With --cover-letter, make every
1289 * mail but the cover letter a reply
1290 * to the cover letter. The cover
1291 * letter is a reply to the
1292 * --in-reply-to, if specified.
1294 if (thread == THREAD_SHALLOW
1295 && rev.ref_message_ids->nr > 0
1296 && (!cover_letter || rev.nr > 1))
1297 free(rev.message_id);
1299 string_list_append(rev.ref_message_ids,
1302 gen_message_id(&rev, sha1_to_hex(commit->object.sha1));
1305 if (!use_stdout && reopen_stdout(numbered_files ? NULL : commit,
1307 die("Failed to create output files");
1308 shown = log_tree_commit(&rev, commit);
1309 free(commit->buffer);
1310 commit->buffer = NULL;
1312 /* We put one extra blank line between formatted
1313 * patches and this flag is used by log-tree code
1314 * to see if it needs to emit a LF before showing
1315 * the log; when using one file per patch, we do
1316 * not want the extra blank line.
1321 if (rev.mime_boundary)
1322 printf("\n--%s%s--\n\n\n",
1323 mime_boundary_leader,
1332 string_list_clear(&extra_to, 0);
1333 string_list_clear(&extra_cc, 0);
1334 string_list_clear(&extra_hdr, 0);
1335 if (ignore_if_in_upstream)
1336 free_patch_ids(&ids);
1340 static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
1342 unsigned char sha1[20];
1343 if (get_sha1(arg, sha1) == 0) {
1344 struct commit *commit = lookup_commit_reference(sha1);
1346 commit->object.flags |= flags;
1347 add_pending_object(revs, &commit->object, arg);
1354 static const char * const cherry_usage[] = {
1355 "git cherry [-v] [<upstream> [<head> [<limit>]]]",
1359 static void print_commit(char sign, struct commit *commit, int verbose,
1363 printf("%c %s\n", sign,
1364 find_unique_abbrev(commit->object.sha1, abbrev));
1366 struct strbuf buf = STRBUF_INIT;
1367 struct pretty_print_context ctx = {0};
1368 pretty_print_commit(CMIT_FMT_ONELINE, commit, &buf, &ctx);
1369 printf("%c %s %s\n", sign,
1370 find_unique_abbrev(commit->object.sha1, abbrev),
1372 strbuf_release(&buf);
1376 int cmd_cherry(int argc, const char **argv, const char *prefix)
1378 struct rev_info revs;
1379 struct patch_ids ids;
1380 struct commit *commit;
1381 struct commit_list *list = NULL;
1382 struct branch *current_branch;
1383 const char *upstream;
1384 const char *head = "HEAD";
1385 const char *limit = NULL;
1386 int verbose = 0, abbrev = 0;
1388 struct option options[] = {
1389 OPT__ABBREV(&abbrev),
1390 OPT__VERBOSE(&verbose, "be verbose"),
1394 argc = parse_options(argc, argv, prefix, options, cherry_usage, 0);
1407 current_branch = branch_get(NULL);
1408 if (!current_branch || !current_branch->merge
1409 || !current_branch->merge[0]
1410 || !current_branch->merge[0]->dst) {
1411 fprintf(stderr, "Could not find a tracked"
1412 " remote branch, please"
1413 " specify <upstream> manually.\n");
1414 usage_with_options(cherry_usage, options);
1417 upstream = current_branch->merge[0]->dst;
1420 init_revisions(&revs, prefix);
1422 revs.combine_merges = 0;
1423 revs.ignore_merges = 1;
1424 DIFF_OPT_SET(&revs.diffopt, RECURSIVE);
1426 if (add_pending_commit(head, &revs, 0))
1427 die("Unknown commit %s", head);
1428 if (add_pending_commit(upstream, &revs, UNINTERESTING))
1429 die("Unknown commit %s", upstream);
1431 /* Don't say anything if head and upstream are the same. */
1432 if (revs.pending.nr == 2) {
1433 struct object_array_entry *o = revs.pending.objects;
1434 if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
1438 get_patch_ids(&revs, &ids, prefix);
1440 if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
1441 die("Unknown commit %s", limit);
1443 /* reverse the list of commits */
1444 if (prepare_revision_walk(&revs))
1445 die("revision walk setup failed");
1446 while ((commit = get_revision(&revs)) != NULL) {
1448 if (commit->parents && commit->parents->next)
1451 commit_list_insert(commit, &list);
1457 commit = list->item;
1458 if (has_commit_patch_id(commit, &ids))
1460 print_commit(sign, commit, verbose, abbrev);
1464 free_patch_ids(&ids);