2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
7 #include "git-compat-util.h"
10 #include "environment.h"
14 #include "object-file.h"
15 #include "object-name.h"
16 #include "object-store-ll.h"
21 #include "diff-merges.h"
25 #include "oid-array.h"
27 #include "reflog-walk.h"
28 #include "patch-ids.h"
31 #include "string-list.h"
32 #include "parse-options.h"
35 #include "streaming.h"
39 #include "commit-slab.h"
40 #include "repository.h"
41 #include "commit-reach.h"
42 #include "range-diff.h"
43 #include "tmp-objdir.h"
45 #include "write-or-die.h"
47 #define MAIL_DEFAULT_WRAP 72
48 #define COVER_FROM_AUTO_MAX_SUBJECT_LEN 100
49 #define FORMAT_PATCH_NAME_MAX_DEFAULT 64
51 /* Set a default date-time format for git log ("log.date" config variable) */
52 static const char *default_date_mode
= NULL
;
54 static int default_abbrev_commit
;
55 static int default_show_root
= 1;
56 static int default_follow
;
57 static int default_show_signature
;
58 static int default_encode_email_headers
= 1;
59 static int decoration_style
;
60 static int decoration_given
;
61 static int use_mailmap_config
= 1;
62 static unsigned int force_in_body_from
;
63 static int stdout_mboxrd
;
64 static const char *fmt_patch_subject_prefix
= "PATCH";
65 static int fmt_patch_name_max
= FORMAT_PATCH_NAME_MAX_DEFAULT
;
66 static const char *fmt_pretty
;
67 static int format_no_prefix
;
69 static const char * const builtin_log_usage
[] = {
70 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
71 N_("git show [<options>] <object>..."),
75 struct line_opt_callback_data
{
78 struct string_list args
;
81 static int session_is_interactive(void)
83 return isatty(1) || pager_in_use();
86 static int auto_decoration_style(void)
88 return session_is_interactive() ? DECORATE_SHORT_REFS
: 0;
91 static int parse_decoration_style(const char *value
)
93 switch (git_parse_maybe_bool(value
)) {
95 return DECORATE_SHORT_REFS
;
101 if (!strcmp(value
, "full"))
102 return DECORATE_FULL_REFS
;
103 else if (!strcmp(value
, "short"))
104 return DECORATE_SHORT_REFS
;
105 else if (!strcmp(value
, "auto"))
106 return auto_decoration_style();
108 * Please update _git_log() in git-completion.bash when you
109 * add new decoration styles.
114 static int use_default_decoration_filter
= 1;
115 static struct string_list decorate_refs_exclude
= STRING_LIST_INIT_NODUP
;
116 static struct string_list decorate_refs_exclude_config
= STRING_LIST_INIT_NODUP
;
117 static struct string_list decorate_refs_include
= STRING_LIST_INIT_NODUP
;
119 static int clear_decorations_callback(const struct option
*opt UNUSED
,
120 const char *arg
, int unset
)
122 BUG_ON_OPT_NEG(unset
);
124 string_list_clear(&decorate_refs_include
, 0);
125 string_list_clear(&decorate_refs_exclude
, 0);
126 use_default_decoration_filter
= 0;
130 static int decorate_callback(const struct option
*opt UNUSED
, const char *arg
,
134 decoration_style
= 0;
136 decoration_style
= parse_decoration_style(arg
);
138 decoration_style
= DECORATE_SHORT_REFS
;
140 if (decoration_style
< 0)
141 die(_("invalid --decorate option: %s"), arg
);
143 decoration_given
= 1;
148 static int log_line_range_callback(const struct option
*option
, const char *arg
, int unset
)
150 struct line_opt_callback_data
*data
= option
->value
;
152 BUG_ON_OPT_NEG(unset
);
157 data
->rev
->line_level_traverse
= 1;
158 string_list_append(&data
->args
, arg
);
163 static void init_log_defaults(void)
165 init_diff_ui_defaults();
167 decoration_style
= auto_decoration_style();
170 static void cmd_log_init_defaults(struct rev_info
*rev
)
173 get_commit_format(fmt_pretty
, rev
);
175 rev
->diffopt
.flags
.default_follow_renames
= 1;
176 rev
->verbose_header
= 1;
177 init_diffstat_widths(&rev
->diffopt
);
178 rev
->diffopt
.flags
.recursive
= 1;
179 rev
->diffopt
.flags
.allow_textconv
= 1;
180 rev
->abbrev_commit
= default_abbrev_commit
;
181 rev
->show_root_diff
= default_show_root
;
182 rev
->subject_prefix
= fmt_patch_subject_prefix
;
183 rev
->patch_name_max
= fmt_patch_name_max
;
184 rev
->show_signature
= default_show_signature
;
185 rev
->encode_email_headers
= default_encode_email_headers
;
187 if (default_date_mode
)
188 parse_date_format(default_date_mode
, &rev
->date_mode
);
191 static void set_default_decoration_filter(struct decoration_filter
*decoration_filter
)
195 struct string_list
*include
= decoration_filter
->include_ref_pattern
;
196 const struct string_list
*config_exclude
;
198 if (!git_config_get_string_multi("log.excludeDecoration",
200 struct string_list_item
*item
;
201 for_each_string_list_item(item
, config_exclude
)
202 string_list_append(decoration_filter
->exclude_ref_config_pattern
,
207 * By default, decorate_all is disabled. Enable it if
208 * log.initialDecorationSet=all. Don't ever disable it by config,
209 * since the command-line takes precedent.
211 if (use_default_decoration_filter
&&
212 !git_config_get_string("log.initialdecorationset", &value
) &&
213 !strcmp("all", value
))
214 use_default_decoration_filter
= 0;
217 if (!use_default_decoration_filter
||
218 decoration_filter
->exclude_ref_pattern
->nr
||
219 decoration_filter
->include_ref_pattern
->nr
||
220 decoration_filter
->exclude_ref_config_pattern
->nr
)
224 * No command-line or config options were given, so
225 * populate with sensible defaults.
227 for (i
= 0; i
< ARRAY_SIZE(ref_namespace
); i
++) {
228 if (!ref_namespace
[i
].decoration
)
231 string_list_append(include
, ref_namespace
[i
].ref
);
235 static void cmd_log_init_finish(int argc
, const char **argv
, const char *prefix
,
236 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
238 struct userformat_want w
;
239 int quiet
= 0, source
= 0, mailmap
;
240 static struct line_opt_callback_data line_cb
= {NULL
, NULL
, STRING_LIST_INIT_DUP
};
241 struct decoration_filter decoration_filter
= {
242 .exclude_ref_pattern
= &decorate_refs_exclude
,
243 .include_ref_pattern
= &decorate_refs_include
,
244 .exclude_ref_config_pattern
= &decorate_refs_exclude_config
,
246 static struct revision_sources revision_sources
;
248 const struct option builtin_log_options
[] = {
249 OPT__QUIET(&quiet
, N_("suppress diff output")),
250 OPT_BOOL(0, "source", &source
, N_("show source")),
251 OPT_BOOL(0, "use-mailmap", &mailmap
, N_("use mail map file")),
252 OPT_ALIAS(0, "mailmap", "use-mailmap"),
253 OPT_CALLBACK_F(0, "clear-decorations", NULL
, NULL
,
254 N_("clear all previously-defined decoration filters"),
255 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
,
256 clear_decorations_callback
),
257 OPT_STRING_LIST(0, "decorate-refs", &decorate_refs_include
,
258 N_("pattern"), N_("only decorate refs that match <pattern>")),
259 OPT_STRING_LIST(0, "decorate-refs-exclude", &decorate_refs_exclude
,
260 N_("pattern"), N_("do not decorate refs that match <pattern>")),
261 OPT_CALLBACK_F(0, "decorate", NULL
, NULL
, N_("decorate options"),
262 PARSE_OPT_OPTARG
, decorate_callback
),
263 OPT_CALLBACK('L', NULL
, &line_cb
, "range:file",
264 N_("trace the evolution of line range <start>,<end> or function :<funcname> in <file>"),
265 log_line_range_callback
),
270 line_cb
.prefix
= prefix
;
272 mailmap
= use_mailmap_config
;
273 argc
= parse_options(argc
, argv
, prefix
,
274 builtin_log_options
, builtin_log_usage
,
275 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN_OPT
|
276 PARSE_OPT_KEEP_DASHDASH
);
279 rev
->diffopt
.output_format
|= DIFF_FORMAT_NO_OUTPUT
;
280 argc
= setup_revisions(argc
, argv
, rev
, opt
);
282 /* Any arguments at this point are not recognized */
284 die(_("unrecognized argument: %s"), argv
[1]);
286 if (rev
->line_level_traverse
&& rev
->prune_data
.nr
)
287 die(_("-L<range>:<file> cannot be used with pathspec"));
289 memset(&w
, 0, sizeof(w
));
290 userformat_find_requirements(NULL
, &w
);
292 if (!rev
->show_notes_given
&& (!rev
->pretty_given
|| w
.notes
))
295 load_display_notes(&rev
->notes_opt
);
297 if ((rev
->diffopt
.pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
) ||
298 rev
->diffopt
.filter
|| rev
->diffopt
.flags
.follow_renames
)
299 rev
->always_show_header
= 0;
301 if (source
|| w
.source
) {
302 init_revision_sources(&revision_sources
);
303 rev
->sources
= &revision_sources
;
307 rev
->mailmap
= xmalloc(sizeof(struct string_list
));
308 string_list_init_nodup(rev
->mailmap
);
309 read_mailmap(rev
->mailmap
);
312 if (rev
->pretty_given
&& rev
->commit_format
== CMIT_FMT_RAW
) {
314 * "log --pretty=raw" is special; ignore UI oriented
315 * configuration variables such as decoration.
317 if (!decoration_given
)
318 decoration_style
= 0;
319 if (!rev
->abbrev_commit_given
)
320 rev
->abbrev_commit
= 0;
323 if (rev
->commit_format
== CMIT_FMT_USERFORMAT
) {
326 * Disable decoration loading if the format will not
329 decoration_style
= 0;
330 } else if (!decoration_style
) {
332 * If we are going to show them, make sure we do load
333 * them here, but taking care not to override a
334 * specific style set by config or --decorate.
336 decoration_style
= DECORATE_SHORT_REFS
;
340 if (decoration_style
|| rev
->simplify_by_decoration
) {
341 set_default_decoration_filter(&decoration_filter
);
343 if (decoration_style
)
344 rev
->show_decorations
= 1;
346 load_ref_decorations(&decoration_filter
, decoration_style
);
349 if (rev
->line_level_traverse
)
350 line_log_init(rev
, line_cb
.prefix
, &line_cb
.args
);
355 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
356 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
358 cmd_log_init_defaults(rev
);
359 cmd_log_init_finish(argc
, argv
, prefix
, rev
, opt
);
362 static int cmd_log_deinit(int ret
, struct rev_info
*rev
)
364 release_revisions(rev
);
369 * This gives a rough estimate for how many commits we
370 * will print out in the list.
372 static int estimate_commit_count(struct commit_list
*list
)
377 struct commit
*commit
= list
->item
;
378 unsigned int flags
= commit
->object
.flags
;
380 if (!(flags
& (TREESAME
| UNINTERESTING
)))
386 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
388 if (rev
->shown_one
) {
390 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
391 putchar(rev
->diffopt
.line_termination
);
393 fprintf(rev
->diffopt
.file
, _("Final output: %d %s\n"), nr
, stage
);
396 static struct itimerval early_output_timer
;
398 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
400 int i
= revs
->early_output
;
402 int no_free
= revs
->diffopt
.no_free
;
404 revs
->diffopt
.no_free
= 0;
405 sort_in_topological_order(&list
, revs
->sort_order
);
407 struct commit
*commit
= list
->item
;
408 switch (simplify_commit(revs
, commit
)) {
411 int n
= estimate_commit_count(list
);
412 show_early_header(revs
, "incomplete", n
);
415 log_tree_commit(revs
, commit
);
421 revs
->diffopt
.no_free
= no_free
;
422 diff_free(&revs
->diffopt
);
428 /* Did we already get enough commits for the early output? */
430 revs
->diffopt
.no_free
= 0;
431 diff_free(&revs
->diffopt
);
436 * ..if no, then repeat it twice a second until we
439 * NOTE! We don't use "it_interval", because if the
440 * reader isn't listening, we want our output to be
441 * throttled by the writing, and not have the timer
442 * trigger every second even if we're blocked on a
445 early_output_timer
.it_value
.tv_sec
= 0;
446 early_output_timer
.it_value
.tv_usec
= 500000;
447 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
450 static void early_output(int signal UNUSED
)
452 show_early_output
= log_show_early
;
455 static void setup_early_output(void)
460 * Set up the signal handler, minimally intrusively:
461 * we only set a single volatile integer word (not
462 * using sigatomic_t - trying to avoid unnecessary
463 * system dependencies and headers), and using
466 memset(&sa
, 0, sizeof(sa
));
467 sa
.sa_handler
= early_output
;
468 sigemptyset(&sa
.sa_mask
);
469 sa
.sa_flags
= SA_RESTART
;
470 sigaction(SIGALRM
, &sa
, NULL
);
473 * If we can get the whole output in less than a
474 * tenth of a second, don't even bother doing the
475 * early-output thing..
477 * This is a one-time-only trigger.
479 early_output_timer
.it_value
.tv_sec
= 0;
480 early_output_timer
.it_value
.tv_usec
= 100000;
481 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
484 static void finish_early_output(struct rev_info
*rev
)
486 int n
= estimate_commit_count(rev
->commits
);
487 signal(SIGALRM
, SIG_IGN
);
488 show_early_header(rev
, "done", n
);
491 static int cmd_log_walk_no_free(struct rev_info
*rev
)
493 struct commit
*commit
;
497 if (rev
->remerge_diff
) {
498 rev
->remerge_objdir
= tmp_objdir_create("remerge-diff");
499 if (!rev
->remerge_objdir
)
500 die(_("unable to create temporary object directory"));
501 tmp_objdir_replace_primary_odb(rev
->remerge_objdir
, 1);
504 if (rev
->early_output
)
505 setup_early_output();
507 if (prepare_revision_walk(rev
))
508 die(_("revision walk setup failed"));
510 if (rev
->early_output
)
511 finish_early_output(rev
);
514 * For --check and --exit-code, the exit code is based on CHECK_FAILED
515 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
516 * retain that state information if replacing rev->diffopt in this loop
518 while ((commit
= get_revision(rev
)) != NULL
) {
519 if (!log_tree_commit(rev
, commit
) && rev
->max_count
>= 0)
521 * We decremented max_count in get_revision,
522 * but we didn't actually show the commit.
525 if (!rev
->reflog_info
) {
527 * We may show a given commit multiple times when
528 * walking the reflogs.
530 free_commit_buffer(the_repository
->parsed_objects
,
532 free_commit_list(commit
->parents
);
533 commit
->parents
= NULL
;
535 if (saved_nrl
< rev
->diffopt
.needed_rename_limit
)
536 saved_nrl
= rev
->diffopt
.needed_rename_limit
;
537 if (rev
->diffopt
.degraded_cc_to_c
)
540 rev
->diffopt
.degraded_cc_to_c
= saved_dcctc
;
541 rev
->diffopt
.needed_rename_limit
= saved_nrl
;
543 if (rev
->remerge_diff
) {
544 tmp_objdir_destroy(rev
->remerge_objdir
);
545 rev
->remerge_objdir
= NULL
;
548 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
549 rev
->diffopt
.flags
.check_failed
) {
552 return diff_result_code(&rev
->diffopt
);
555 static int cmd_log_walk(struct rev_info
*rev
)
559 rev
->diffopt
.no_free
= 1;
560 retval
= cmd_log_walk_no_free(rev
);
561 rev
->diffopt
.no_free
= 0;
562 diff_free(&rev
->diffopt
);
566 static int git_log_config(const char *var
, const char *value
,
567 const struct config_context
*ctx
, void *cb
)
569 const char *slot_name
;
571 if (!strcmp(var
, "format.pretty"))
572 return git_config_string(&fmt_pretty
, var
, value
);
573 if (!strcmp(var
, "format.subjectprefix"))
574 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
575 if (!strcmp(var
, "format.filenamemaxlength")) {
576 fmt_patch_name_max
= git_config_int(var
, value
, ctx
->kvi
);
579 if (!strcmp(var
, "format.encodeemailheaders")) {
580 default_encode_email_headers
= git_config_bool(var
, value
);
583 if (!strcmp(var
, "log.abbrevcommit")) {
584 default_abbrev_commit
= git_config_bool(var
, value
);
587 if (!strcmp(var
, "log.date"))
588 return git_config_string(&default_date_mode
, var
, value
);
589 if (!strcmp(var
, "log.decorate")) {
590 decoration_style
= parse_decoration_style(value
);
591 if (decoration_style
< 0)
592 decoration_style
= 0; /* maybe warn? */
595 if (!strcmp(var
, "log.diffmerges"))
596 return diff_merges_config(value
);
597 if (!strcmp(var
, "log.showroot")) {
598 default_show_root
= git_config_bool(var
, value
);
601 if (!strcmp(var
, "log.follow")) {
602 default_follow
= git_config_bool(var
, value
);
605 if (skip_prefix(var
, "color.decorate.", &slot_name
))
606 return parse_decorate_color_config(var
, slot_name
, value
);
607 if (!strcmp(var
, "log.mailmap")) {
608 use_mailmap_config
= git_config_bool(var
, value
);
611 if (!strcmp(var
, "log.showsignature")) {
612 default_show_signature
= git_config_bool(var
, value
);
616 return git_diff_ui_config(var
, value
, ctx
, cb
);
619 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
622 struct setup_revision_opt opt
;
625 git_config(git_log_config
, NULL
);
627 repo_init_revisions(the_repository
, &rev
, prefix
);
628 git_config(grep_config
, &rev
.grep_filter
);
631 rev
.simplify_history
= 0;
632 memset(&opt
, 0, sizeof(opt
));
634 opt
.revarg_opt
= REVARG_COMMITTISH
;
635 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
636 if (!rev
.diffopt
.output_format
)
637 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
638 return cmd_log_deinit(cmd_log_walk(&rev
), &rev
);
641 static void show_tagger(const char *buf
, struct rev_info
*rev
)
643 struct strbuf out
= STRBUF_INIT
;
644 struct pretty_print_context pp
= {0};
646 pp
.fmt
= rev
->commit_format
;
647 pp
.date_mode
= rev
->date_mode
;
648 pp_user_info(&pp
, "Tagger", &out
, buf
, get_log_output_encoding());
649 fprintf(rev
->diffopt
.file
, "%s", out
.buf
);
650 strbuf_release(&out
);
653 static int show_blob_object(const struct object_id
*oid
, struct rev_info
*rev
, const char *obj_name
)
655 struct object_id oidc
;
656 struct object_context obj_context
;
660 fflush(rev
->diffopt
.file
);
661 if (!rev
->diffopt
.flags
.textconv_set_via_cmdline
||
662 !rev
->diffopt
.flags
.allow_textconv
)
663 return stream_blob_to_fd(1, oid
, NULL
, 0);
665 if (get_oid_with_context(the_repository
, obj_name
,
667 &oidc
, &obj_context
))
668 die(_("not a valid object name %s"), obj_name
);
669 if (!obj_context
.path
||
670 !textconv_object(the_repository
, obj_context
.path
,
671 obj_context
.mode
, &oidc
, 1, &buf
, &size
)) {
672 free(obj_context
.path
);
673 return stream_blob_to_fd(1, oid
, NULL
, 0);
677 die(_("git show %s: bad file"), obj_name
);
679 write_or_die(1, buf
, size
);
680 free(obj_context
.path
);
684 static int show_tag_object(const struct object_id
*oid
, struct rev_info
*rev
)
687 enum object_type type
;
688 char *buf
= repo_read_object_file(the_repository
, oid
, &type
, &size
);
692 return error(_("could not read object %s"), oid_to_hex(oid
));
694 assert(type
== OBJ_TAG
);
695 while (offset
< size
&& buf
[offset
] != '\n') {
696 int new_offset
= offset
+ 1;
698 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
700 if (skip_prefix(buf
+ offset
, "tagger ", &ident
))
701 show_tagger(ident
, rev
);
706 fwrite(buf
+ offset
, size
- offset
, 1, rev
->diffopt
.file
);
711 static int show_tree_object(const struct object_id
*oid UNUSED
,
712 struct strbuf
*base UNUSED
,
713 const char *pathname
, unsigned mode
,
716 FILE *file
= context
;
717 fprintf(file
, "%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
721 static void show_setup_revisions_tweak(struct rev_info
*rev
)
723 if (rev
->first_parent_only
)
724 diff_merges_default_to_first_parent(rev
);
726 diff_merges_default_to_dense_combined(rev
);
727 if (!rev
->diffopt
.output_format
)
728 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
731 int cmd_show(int argc
, const char **argv
, const char *prefix
)
735 struct setup_revision_opt opt
;
736 struct pathspec match_all
;
740 git_config(git_log_config
, NULL
);
742 if (the_repository
->gitdir
) {
743 prepare_repo_settings(the_repository
);
744 the_repository
->settings
.command_requires_full_index
= 0;
747 memset(&match_all
, 0, sizeof(match_all
));
748 repo_init_revisions(the_repository
, &rev
, prefix
);
749 git_config(grep_config
, &rev
.grep_filter
);
752 rev
.always_show_header
= 1;
754 rev
.diffopt
.stat_width
= -1; /* Scale to real terminal size */
756 memset(&opt
, 0, sizeof(opt
));
758 opt
.tweak
= show_setup_revisions_tweak
;
759 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
762 return cmd_log_deinit(cmd_log_walk(&rev
), &rev
);
764 rev
.diffopt
.no_free
= 1;
765 for (i
= 0; i
< rev
.pending
.nr
&& !ret
; i
++) {
766 struct object
*o
= rev
.pending
.objects
[i
].item
;
767 const char *name
= rev
.pending
.objects
[i
].name
;
770 ret
= show_blob_object(&o
->oid
, &rev
, name
);
773 struct tag
*t
= (struct tag
*)o
;
774 struct object_id
*oid
= get_tagged_oid(t
);
778 fprintf(rev
.diffopt
.file
, "%stag %s%s\n",
779 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
781 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
782 ret
= show_tag_object(&o
->oid
, &rev
);
786 o
= parse_object(the_repository
, oid
);
788 ret
= error(_("could not read object %s"),
790 rev
.pending
.objects
[i
].item
= o
;
797 fprintf(rev
.diffopt
.file
, "%stree %s%s\n\n",
798 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
800 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
801 read_tree(the_repository
, (struct tree
*)o
,
802 &match_all
, show_tree_object
,
808 struct object_array old
;
809 struct object_array blank
= OBJECT_ARRAY_INIT
;
811 memcpy(&old
, &rev
.pending
, sizeof(old
));
812 memcpy(&rev
.pending
, &blank
, sizeof(rev
.pending
));
814 add_object_array(o
, name
, &rev
.pending
);
815 ret
= cmd_log_walk_no_free(&rev
);
819 * object_array_clear(&pending). It was
820 * cleared already in prepare_revision_walk()
822 memcpy(&rev
.pending
, &old
, sizeof(rev
.pending
));
826 ret
= error(_("unknown type: %d"), o
->type
);
830 rev
.diffopt
.no_free
= 0;
831 diff_free(&rev
.diffopt
);
833 return cmd_log_deinit(ret
, &rev
);
837 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
839 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
842 struct setup_revision_opt opt
;
845 git_config(git_log_config
, NULL
);
847 repo_init_revisions(the_repository
, &rev
, prefix
);
848 init_reflog_walk(&rev
.reflog_info
);
849 git_config(grep_config
, &rev
.grep_filter
);
851 rev
.verbose_header
= 1;
852 memset(&opt
, 0, sizeof(opt
));
854 cmd_log_init_defaults(&rev
);
855 rev
.abbrev_commit
= 1;
856 rev
.commit_format
= CMIT_FMT_ONELINE
;
857 rev
.use_terminator
= 1;
858 rev
.always_show_header
= 1;
859 cmd_log_init_finish(argc
, argv
, prefix
, &rev
, &opt
);
861 return cmd_log_deinit(cmd_log_walk(&rev
), &rev
);
864 static void log_setup_revisions_tweak(struct rev_info
*rev
)
866 if (rev
->diffopt
.flags
.default_follow_renames
&&
867 diff_check_follow_pathspec(&rev
->prune_data
, 0))
868 rev
->diffopt
.flags
.follow_renames
= 1;
870 if (rev
->first_parent_only
)
871 diff_merges_default_to_first_parent(rev
);
874 int cmd_log(int argc
, const char **argv
, const char *prefix
)
877 struct setup_revision_opt opt
;
880 git_config(git_log_config
, NULL
);
882 repo_init_revisions(the_repository
, &rev
, prefix
);
883 git_config(grep_config
, &rev
.grep_filter
);
885 rev
.always_show_header
= 1;
886 memset(&opt
, 0, sizeof(opt
));
888 opt
.revarg_opt
= REVARG_COMMITTISH
;
889 opt
.tweak
= log_setup_revisions_tweak
;
890 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
891 return cmd_log_deinit(cmd_log_walk(&rev
), &rev
);
896 static const char *fmt_patch_suffix
= ".patch";
897 static int numbered
= 0;
898 static int auto_number
= 1;
900 static char *default_attach
= NULL
;
902 static struct string_list extra_hdr
= STRING_LIST_INIT_NODUP
;
903 static struct string_list extra_to
= STRING_LIST_INIT_NODUP
;
904 static struct string_list extra_cc
= STRING_LIST_INIT_NODUP
;
906 static void add_header(const char *value
)
908 struct string_list_item
*item
;
909 int len
= strlen(value
);
910 while (len
&& value
[len
- 1] == '\n')
913 if (!strncasecmp(value
, "to: ", 4)) {
914 item
= string_list_append(&extra_to
, value
+ 4);
916 } else if (!strncasecmp(value
, "cc: ", 4)) {
917 item
= string_list_append(&extra_cc
, value
+ 4);
920 item
= string_list_append(&extra_hdr
, value
);
923 item
->string
[len
] = '\0';
939 enum cover_from_description
{
946 enum auto_base_setting
{
952 static enum thread_level thread
;
953 static int do_signoff
;
954 static enum auto_base_setting auto_base
;
956 static const char *signature
= git_version_string
;
957 static const char *signature_file
;
958 static enum cover_setting config_cover_letter
;
959 static const char *config_output_directory
;
960 static enum cover_from_description cover_from_description_mode
= COVER_FROM_MESSAGE
;
961 static int show_notes
;
962 static struct display_notes_opt notes_opt
;
964 static enum cover_from_description
parse_cover_from_description(const char *arg
)
966 if (!arg
|| !strcmp(arg
, "default"))
967 return COVER_FROM_MESSAGE
;
968 else if (!strcmp(arg
, "none"))
969 return COVER_FROM_NONE
;
970 else if (!strcmp(arg
, "message"))
971 return COVER_FROM_MESSAGE
;
972 else if (!strcmp(arg
, "subject"))
973 return COVER_FROM_SUBJECT
;
974 else if (!strcmp(arg
, "auto"))
975 return COVER_FROM_AUTO
;
977 die(_("%s: invalid cover from description mode"), arg
);
980 static int git_format_config(const char *var
, const char *value
,
981 const struct config_context
*ctx
, void *cb
)
983 if (!strcmp(var
, "format.headers")) {
985 die(_("format.headers without value"));
989 if (!strcmp(var
, "format.suffix"))
990 return git_config_string(&fmt_patch_suffix
, var
, value
);
991 if (!strcmp(var
, "format.to")) {
993 return config_error_nonbool(var
);
994 string_list_append(&extra_to
, value
);
997 if (!strcmp(var
, "format.cc")) {
999 return config_error_nonbool(var
);
1000 string_list_append(&extra_cc
, value
);
1003 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff") ||
1004 !strcmp(var
, "color.ui") || !strcmp(var
, "diff.submodule")) {
1007 if (!strcmp(var
, "format.numbered")) {
1008 if (value
&& !strcasecmp(value
, "auto")) {
1012 numbered
= git_config_bool(var
, value
);
1013 auto_number
= auto_number
&& numbered
;
1016 if (!strcmp(var
, "format.attach")) {
1017 if (value
&& *value
)
1018 default_attach
= xstrdup(value
);
1019 else if (value
&& !*value
)
1020 FREE_AND_NULL(default_attach
);
1022 default_attach
= xstrdup(git_version_string
);
1025 if (!strcmp(var
, "format.thread")) {
1026 if (value
&& !strcasecmp(value
, "deep")) {
1027 thread
= THREAD_DEEP
;
1030 if (value
&& !strcasecmp(value
, "shallow")) {
1031 thread
= THREAD_SHALLOW
;
1034 thread
= git_config_bool(var
, value
) ? THREAD_SHALLOW
: THREAD_UNSET
;
1037 if (!strcmp(var
, "format.signoff")) {
1038 do_signoff
= git_config_bool(var
, value
);
1041 if (!strcmp(var
, "format.signature"))
1042 return git_config_string(&signature
, var
, value
);
1043 if (!strcmp(var
, "format.signaturefile"))
1044 return git_config_pathname(&signature_file
, var
, value
);
1045 if (!strcmp(var
, "format.coverletter")) {
1046 if (value
&& !strcasecmp(value
, "auto")) {
1047 config_cover_letter
= COVER_AUTO
;
1050 config_cover_letter
= git_config_bool(var
, value
) ? COVER_ON
: COVER_OFF
;
1053 if (!strcmp(var
, "format.outputdirectory"))
1054 return git_config_string(&config_output_directory
, var
, value
);
1055 if (!strcmp(var
, "format.useautobase")) {
1056 if (value
&& !strcasecmp(value
, "whenAble")) {
1057 auto_base
= AUTO_BASE_WHEN_ABLE
;
1060 auto_base
= git_config_bool(var
, value
) ? AUTO_BASE_ALWAYS
: AUTO_BASE_NEVER
;
1063 if (!strcmp(var
, "format.from")) {
1064 int b
= git_parse_maybe_bool(value
);
1067 from
= xstrdup(value
);
1069 from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
1074 if (!strcmp(var
, "format.forceinbodyfrom")) {
1075 force_in_body_from
= git_config_bool(var
, value
);
1078 if (!strcmp(var
, "format.notes")) {
1079 int b
= git_parse_maybe_bool(value
);
1081 enable_ref_display_notes(¬es_opt
, &show_notes
, value
);
1083 enable_default_display_notes(¬es_opt
, &show_notes
);
1085 disable_display_notes(¬es_opt
, &show_notes
);
1088 if (!strcmp(var
, "format.coverfromdescription")) {
1089 cover_from_description_mode
= parse_cover_from_description(value
);
1092 if (!strcmp(var
, "format.mboxrd")) {
1093 stdout_mboxrd
= git_config_bool(var
, value
);
1096 if (!strcmp(var
, "format.noprefix")) {
1097 format_no_prefix
= 1;
1102 * ignore some porcelain config which would otherwise be parsed by
1103 * git_diff_ui_config(), via git_log_config(); we can't just avoid
1104 * diff_ui_config completely, because we do care about some ui options
1107 if (!strcmp(var
, "diff.noprefix"))
1110 return git_log_config(var
, value
, ctx
, cb
);
1113 static const char *output_directory
= NULL
;
1114 static int outdir_offset
;
1116 static int open_next_file(struct commit
*commit
, const char *subject
,
1117 struct rev_info
*rev
, int quiet
)
1119 struct strbuf filename
= STRBUF_INIT
;
1121 if (output_directory
) {
1122 strbuf_addstr(&filename
, output_directory
);
1123 strbuf_complete(&filename
, '/');
1126 if (rev
->numbered_files
)
1127 strbuf_addf(&filename
, "%d", rev
->nr
);
1129 fmt_output_commit(&filename
, commit
, rev
);
1131 fmt_output_subject(&filename
, subject
, rev
);
1134 printf("%s\n", filename
.buf
+ outdir_offset
);
1136 if (!(rev
->diffopt
.file
= fopen(filename
.buf
, "w"))) {
1137 error_errno(_("cannot open patch file %s"), filename
.buf
);
1138 strbuf_release(&filename
);
1142 strbuf_release(&filename
);
1146 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
)
1148 struct rev_info check_rev
;
1149 struct commit
*commit
, *c1
, *c2
;
1150 struct object
*o1
, *o2
;
1151 unsigned flags1
, flags2
;
1153 if (rev
->pending
.nr
!= 2)
1154 die(_("need exactly one range"));
1156 o1
= rev
->pending
.objects
[0].item
;
1157 o2
= rev
->pending
.objects
[1].item
;
1160 c1
= lookup_commit_reference(the_repository
, &o1
->oid
);
1161 c2
= lookup_commit_reference(the_repository
, &o2
->oid
);
1163 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
1164 die(_("not a range"));
1166 init_patch_ids(the_repository
, ids
);
1168 /* given a range a..b get all patch ids for b..a */
1169 repo_init_revisions(the_repository
, &check_rev
, rev
->prefix
);
1170 check_rev
.max_parents
= 1;
1171 o1
->flags
^= UNINTERESTING
;
1172 o2
->flags
^= UNINTERESTING
;
1173 add_pending_object(&check_rev
, o1
, "o1");
1174 add_pending_object(&check_rev
, o2
, "o2");
1175 if (prepare_revision_walk(&check_rev
))
1176 die(_("revision walk setup failed"));
1178 while ((commit
= get_revision(&check_rev
)) != NULL
) {
1179 add_commit_patch_id(commit
, ids
);
1182 /* reset for next revision walk */
1183 clear_commit_marks(c1
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
1184 clear_commit_marks(c2
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
1189 static void gen_message_id(struct rev_info
*info
, char *base
)
1191 struct strbuf buf
= STRBUF_INIT
;
1192 strbuf_addf(&buf
, "%s.%"PRItime
".git.%s", base
,
1193 (timestamp_t
) time(NULL
),
1194 git_committer_info(IDENT_NO_NAME
|IDENT_NO_DATE
|IDENT_STRICT
));
1195 info
->message_id
= strbuf_detach(&buf
, NULL
);
1198 static void print_signature(FILE *file
)
1200 if (!signature
|| !*signature
)
1203 fprintf(file
, "-- \n%s", signature
);
1204 if (signature
[strlen(signature
)-1] != '\n')
1209 static char *find_branch_name(struct rev_info
*rev
)
1211 int i
, positive
= -1;
1212 struct object_id branch_oid
;
1213 const struct object_id
*tip_oid
;
1214 const char *ref
, *v
;
1215 char *full_ref
, *branch
= NULL
;
1217 for (i
= 0; i
< rev
->cmdline
.nr
; i
++) {
1218 if (rev
->cmdline
.rev
[i
].flags
& UNINTERESTING
)
1227 ref
= rev
->cmdline
.rev
[positive
].name
;
1228 tip_oid
= &rev
->cmdline
.rev
[positive
].item
->oid
;
1229 if (repo_dwim_ref(the_repository
, ref
, strlen(ref
), &branch_oid
,
1231 skip_prefix(full_ref
, "refs/heads/", &v
) &&
1232 oideq(tip_oid
, &branch_oid
))
1233 branch
= xstrdup(v
);
1238 static void show_diffstat(struct rev_info
*rev
,
1239 struct commit
*origin
, struct commit
*head
)
1241 struct diff_options opts
;
1243 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
1244 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
1245 diff_setup_done(&opts
);
1247 diff_tree_oid(get_commit_tree_oid(origin
),
1248 get_commit_tree_oid(head
),
1250 diffcore_std(&opts
);
1253 fprintf(rev
->diffopt
.file
, "\n");
1256 static void read_desc_file(struct strbuf
*buf
, const char *desc_file
)
1258 if (strbuf_read_file(buf
, desc_file
, 0) < 0)
1259 die_errno(_("unable to read branch description file '%s'"),
1263 static void prepare_cover_text(struct pretty_print_context
*pp
,
1264 const char *description_file
,
1265 const char *branch_name
,
1267 const char *encoding
,
1270 const char *subject
= "*** SUBJECT HERE ***";
1271 const char *body
= "*** BLURB HERE ***";
1272 struct strbuf description_sb
= STRBUF_INIT
;
1273 struct strbuf subject_sb
= STRBUF_INIT
;
1275 if (cover_from_description_mode
== COVER_FROM_NONE
)
1278 if (description_file
&& *description_file
)
1279 read_desc_file(&description_sb
, description_file
);
1280 else if (branch_name
&& *branch_name
)
1281 read_branch_desc(&description_sb
, branch_name
);
1282 if (!description_sb
.len
)
1285 if (cover_from_description_mode
== COVER_FROM_SUBJECT
||
1286 cover_from_description_mode
== COVER_FROM_AUTO
)
1287 body
= format_subject(&subject_sb
, description_sb
.buf
, " ");
1289 if (cover_from_description_mode
== COVER_FROM_MESSAGE
||
1290 (cover_from_description_mode
== COVER_FROM_AUTO
&&
1291 subject_sb
.len
> COVER_FROM_AUTO_MAX_SUBJECT_LEN
))
1292 body
= description_sb
.buf
;
1294 subject
= subject_sb
.buf
;
1297 pp_title_line(pp
, &subject
, sb
, encoding
, need_8bit_cte
);
1298 pp_remainder(pp
, &body
, sb
, 0);
1300 strbuf_release(&description_sb
);
1301 strbuf_release(&subject_sb
);
1304 static int get_notes_refs(struct string_list_item
*item
, void *arg
)
1306 strvec_pushf(arg
, "--notes=%s", item
->string
);
1310 static void get_notes_args(struct strvec
*arg
, struct rev_info
*rev
)
1312 if (!rev
->show_notes
) {
1313 strvec_push(arg
, "--no-notes");
1314 } else if (rev
->notes_opt
.use_default_notes
> 0 ||
1315 (rev
->notes_opt
.use_default_notes
== -1 &&
1316 !rev
->notes_opt
.extra_notes_refs
.nr
)) {
1317 strvec_push(arg
, "--notes");
1319 for_each_string_list(&rev
->notes_opt
.extra_notes_refs
, get_notes_refs
, arg
);
1323 static void make_cover_letter(struct rev_info
*rev
, int use_separate_file
,
1324 struct commit
*origin
,
1325 int nr
, struct commit
**list
,
1326 const char *description_file
,
1327 const char *branch_name
,
1330 const char *committer
;
1331 struct shortlog log
;
1332 struct strbuf sb
= STRBUF_INIT
;
1334 const char *encoding
= "UTF-8";
1335 int need_8bit_cte
= 0;
1336 struct pretty_print_context pp
= {0};
1337 struct commit
*head
= list
[0];
1339 if (!cmit_fmt_is_mail(rev
->commit_format
))
1340 die(_("cover letter needs email format"));
1342 committer
= git_committer_info(0);
1344 if (use_separate_file
&&
1345 open_next_file(NULL
, rev
->numbered_files
? NULL
: "cover-letter", rev
, quiet
))
1346 die(_("failed to create cover-letter file"));
1348 log_write_email_headers(rev
, head
, &pp
.after_subject
, &need_8bit_cte
, 0);
1350 for (i
= 0; !need_8bit_cte
&& i
< nr
; i
++) {
1351 const char *buf
= repo_get_commit_buffer(the_repository
,
1353 if (has_non_ascii(buf
))
1355 repo_unuse_commit_buffer(the_repository
, list
[i
], buf
);
1359 branch_name
= find_branch_name(rev
);
1361 pp
.fmt
= CMIT_FMT_EMAIL
;
1362 pp
.date_mode
.type
= DATE_RFC2822
;
1364 pp
.print_email_subject
= 1;
1365 pp_user_info(&pp
, NULL
, &sb
, committer
, encoding
);
1366 prepare_cover_text(&pp
, description_file
, branch_name
, &sb
,
1367 encoding
, need_8bit_cte
);
1368 fprintf(rev
->diffopt
.file
, "%s\n", sb
.buf
);
1370 strbuf_release(&sb
);
1372 shortlog_init(&log
);
1374 log
.wrap
= MAIL_DEFAULT_WRAP
;
1377 log
.file
= rev
->diffopt
.file
;
1378 log
.groups
= SHORTLOG_GROUP_AUTHOR
;
1379 shortlog_finish_setup(&log
);
1380 for (i
= 0; i
< nr
; i
++)
1381 shortlog_add_commit(&log
, list
[i
]);
1383 shortlog_output(&log
);
1385 /* We can only do diffstat with a unique reference point */
1387 show_diffstat(rev
, origin
, head
);
1389 if (rev
->idiff_oid1
) {
1390 fprintf_ln(rev
->diffopt
.file
, "%s", rev
->idiff_title
);
1391 show_interdiff(rev
->idiff_oid1
, rev
->idiff_oid2
, 0,
1397 * Pass minimum required diff-options to range-diff; others
1398 * can be added later if deemed desirable.
1400 struct diff_options opts
;
1401 struct strvec other_arg
= STRVEC_INIT
;
1402 struct range_diff_options range_diff_opts
= {
1403 .creation_factor
= rev
->creation_factor
,
1406 .other_arg
= &other_arg
1409 repo_diff_setup(the_repository
, &opts
);
1410 opts
.file
= rev
->diffopt
.file
;
1411 opts
.use_color
= rev
->diffopt
.use_color
;
1412 diff_setup_done(&opts
);
1413 fprintf_ln(rev
->diffopt
.file
, "%s", rev
->rdiff_title
);
1414 get_notes_args(&other_arg
, rev
);
1415 show_range_diff(rev
->rdiff1
, rev
->rdiff2
, &range_diff_opts
);
1416 strvec_clear(&other_arg
);
1420 static char *clean_message_id(const char *msg_id
)
1423 const char *a
, *z
, *m
;
1426 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
1431 if (!isspace(ch
) && (ch
!= '>'))
1436 die(_("insane in-reply-to: %s"), msg_id
);
1439 return xmemdupz(a
, z
- a
);
1442 static const char *set_outdir(const char *prefix
, const char *output_directory
)
1444 if (output_directory
&& is_absolute_path(output_directory
))
1445 return output_directory
;
1447 if (!prefix
|| !*prefix
) {
1448 if (output_directory
)
1449 return output_directory
;
1450 /* The user did not explicitly ask for "./" */
1455 outdir_offset
= strlen(prefix
);
1456 if (!output_directory
)
1459 return prefix_filename(prefix
, output_directory
);
1462 static const char * const builtin_format_patch_usage
[] = {
1463 N_("git format-patch [<options>] [<since> | <revision-range>]"),
1467 static int keep_subject
= 0;
1469 static int keep_callback(const struct option
*opt
, const char *arg
, int unset
)
1471 BUG_ON_OPT_NEG(unset
);
1472 BUG_ON_OPT_ARG(arg
);
1473 ((struct rev_info
*)opt
->value
)->total
= -1;
1478 static int subject_prefix
= 0;
1480 static int subject_prefix_callback(const struct option
*opt
, const char *arg
,
1483 struct strbuf
*sprefix
;
1485 BUG_ON_OPT_NEG(unset
);
1486 sprefix
= opt
->value
;
1488 strbuf_reset(sprefix
);
1489 strbuf_addstr(sprefix
, arg
);
1493 static int numbered_cmdline_opt
= 0;
1495 static int numbered_callback(const struct option
*opt
, const char *arg
,
1498 BUG_ON_OPT_ARG(arg
);
1499 *(int *)opt
->value
= numbered_cmdline_opt
= unset
? 0 : 1;
1505 static int no_numbered_callback(const struct option
*opt
, const char *arg
,
1508 BUG_ON_OPT_NEG(unset
);
1509 return numbered_callback(opt
, arg
, 1);
1512 static int output_directory_callback(const struct option
*opt
, const char *arg
,
1515 const char **dir
= (const char **)opt
->value
;
1516 BUG_ON_OPT_NEG(unset
);
1518 die(_("two output directories?"));
1523 static int thread_callback(const struct option
*opt
, const char *arg
, int unset
)
1525 enum thread_level
*thread
= (enum thread_level
*)opt
->value
;
1527 *thread
= THREAD_UNSET
;
1528 else if (!arg
|| !strcmp(arg
, "shallow"))
1529 *thread
= THREAD_SHALLOW
;
1530 else if (!strcmp(arg
, "deep"))
1531 *thread
= THREAD_DEEP
;
1533 * Please update _git_formatpatch() in git-completion.bash
1534 * when you add new options.
1541 static int attach_callback(const struct option
*opt
, const char *arg
, int unset
)
1543 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1545 rev
->mime_boundary
= NULL
;
1547 rev
->mime_boundary
= arg
;
1549 rev
->mime_boundary
= git_version_string
;
1550 rev
->no_inline
= unset
? 0 : 1;
1554 static int inline_callback(const struct option
*opt
, const char *arg
, int unset
)
1556 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1558 rev
->mime_boundary
= NULL
;
1560 rev
->mime_boundary
= arg
;
1562 rev
->mime_boundary
= git_version_string
;
1567 static int header_callback(const struct option
*opt UNUSED
, const char *arg
,
1571 string_list_clear(&extra_hdr
, 0);
1572 string_list_clear(&extra_to
, 0);
1573 string_list_clear(&extra_cc
, 0);
1580 static int from_callback(const struct option
*opt
, const char *arg
, int unset
)
1582 char **from
= opt
->value
;
1589 *from
= xstrdup(arg
);
1591 *from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
1595 static int base_callback(const struct option
*opt
, const char *arg
, int unset
)
1597 const char **base_commit
= opt
->value
;
1600 auto_base
= AUTO_BASE_NEVER
;
1601 *base_commit
= NULL
;
1602 } else if (!strcmp(arg
, "auto")) {
1603 auto_base
= AUTO_BASE_ALWAYS
;
1604 *base_commit
= NULL
;
1606 auto_base
= AUTO_BASE_NEVER
;
1612 struct base_tree_info
{
1613 struct object_id base_commit
;
1614 int nr_patch_id
, alloc_patch_id
;
1615 struct object_id
*patch_id
;
1618 static struct commit
*get_base_commit(const char *base_commit
,
1619 struct commit
**list
,
1622 struct commit
*base
= NULL
;
1623 struct commit
**rev
;
1624 int i
= 0, rev_nr
= 0, auto_select
, die_on_failure
;
1626 switch (auto_base
) {
1627 case AUTO_BASE_NEVER
:
1632 /* no base information is requested */
1636 case AUTO_BASE_ALWAYS
:
1637 case AUTO_BASE_WHEN_ABLE
:
1639 BUG("requested automatic base selection but a commit was provided");
1642 die_on_failure
= auto_base
== AUTO_BASE_ALWAYS
;
1646 BUG("unexpected automatic base selection method");
1650 base
= lookup_commit_reference_by_name(base_commit
);
1652 die(_("unknown commit %s"), base_commit
);
1654 struct branch
*curr_branch
= branch_get(NULL
);
1655 const char *upstream
= branch_get_upstream(curr_branch
, NULL
);
1657 struct commit_list
*base_list
;
1658 struct commit
*commit
;
1659 struct object_id oid
;
1661 if (repo_get_oid(the_repository
, upstream
, &oid
)) {
1663 die(_("failed to resolve '%s' as a valid ref"), upstream
);
1667 commit
= lookup_commit_or_die(&oid
, "upstream base");
1668 base_list
= repo_get_merge_bases_many(the_repository
,
1671 /* There should be one and only one merge base. */
1672 if (!base_list
|| base_list
->next
) {
1673 if (die_on_failure
) {
1674 die(_("could not find exact merge base"));
1676 free_commit_list(base_list
);
1680 base
= base_list
->item
;
1681 free_commit_list(base_list
);
1684 die(_("failed to get upstream, if you want to record base commit automatically,\n"
1685 "please use git branch --set-upstream-to to track a remote branch.\n"
1686 "Or you could specify base commit by --base=<base-commit-id> manually"));
1692 ALLOC_ARRAY(rev
, total
);
1693 for (i
= 0; i
< total
; i
++)
1698 * Get merge base through pair-wise computations
1699 * and store it in rev[0].
1701 while (rev_nr
> 1) {
1702 for (i
= 0; i
< rev_nr
/ 2; i
++) {
1703 struct commit_list
*merge_base
;
1704 merge_base
= repo_get_merge_bases(the_repository
,
1707 if (!merge_base
|| merge_base
->next
) {
1708 if (die_on_failure
) {
1709 die(_("failed to find exact merge base"));
1716 rev
[i
] = merge_base
->item
;
1720 rev
[i
] = rev
[2 * i
];
1721 rev_nr
= DIV_ROUND_UP(rev_nr
, 2);
1724 if (!repo_in_merge_bases(the_repository
, base
, rev
[0])) {
1725 if (die_on_failure
) {
1726 die(_("base commit should be the ancestor of revision list"));
1733 for (i
= 0; i
< total
; i
++) {
1734 if (base
== list
[i
]) {
1735 if (die_on_failure
) {
1736 die(_("base commit shouldn't be in revision list"));
1748 define_commit_slab(commit_base
, int);
1750 static void prepare_bases(struct base_tree_info
*bases
,
1751 struct commit
*base
,
1752 struct commit
**list
,
1755 struct commit
*commit
;
1756 struct rev_info revs
;
1757 struct diff_options diffopt
;
1758 struct commit_base commit_base
;
1764 init_commit_base(&commit_base
);
1765 repo_diff_setup(the_repository
, &diffopt
);
1766 diffopt
.flags
.recursive
= 1;
1767 diff_setup_done(&diffopt
);
1769 oidcpy(&bases
->base_commit
, &base
->object
.oid
);
1771 repo_init_revisions(the_repository
, &revs
, NULL
);
1772 revs
.max_parents
= 1;
1773 revs
.topo_order
= 1;
1774 for (i
= 0; i
< total
; i
++) {
1775 list
[i
]->object
.flags
&= ~UNINTERESTING
;
1776 add_pending_object(&revs
, &list
[i
]->object
, "rev_list");
1777 *commit_base_at(&commit_base
, list
[i
]) = 1;
1779 base
->object
.flags
|= UNINTERESTING
;
1780 add_pending_object(&revs
, &base
->object
, "base");
1782 if (prepare_revision_walk(&revs
))
1783 die(_("revision walk setup failed"));
1785 * Traverse the commits list, get prerequisite patch ids
1786 * and stuff them in bases structure.
1788 while ((commit
= get_revision(&revs
)) != NULL
) {
1789 struct object_id oid
;
1790 struct object_id
*patch_id
;
1791 if (*commit_base_at(&commit_base
, commit
))
1793 if (commit_patch_id(commit
, &diffopt
, &oid
, 0))
1794 die(_("cannot get patch id"));
1795 ALLOC_GROW(bases
->patch_id
, bases
->nr_patch_id
+ 1, bases
->alloc_patch_id
);
1796 patch_id
= bases
->patch_id
+ bases
->nr_patch_id
;
1797 oidcpy(patch_id
, &oid
);
1798 bases
->nr_patch_id
++;
1800 clear_commit_base(&commit_base
);
1803 static void print_bases(struct base_tree_info
*bases
, FILE *file
)
1807 /* Only do this once, either for the cover or for the first one */
1808 if (is_null_oid(&bases
->base_commit
))
1811 /* Show the base commit */
1812 fprintf(file
, "\nbase-commit: %s\n", oid_to_hex(&bases
->base_commit
));
1814 /* Show the prerequisite patches */
1815 for (i
= bases
->nr_patch_id
- 1; i
>= 0; i
--)
1816 fprintf(file
, "prerequisite-patch-id: %s\n", oid_to_hex(&bases
->patch_id
[i
]));
1818 free(bases
->patch_id
);
1819 bases
->nr_patch_id
= 0;
1820 bases
->alloc_patch_id
= 0;
1821 oidclr(&bases
->base_commit
);
1824 static const char *diff_title(struct strbuf
*sb
,
1825 const char *reroll_count
,
1826 const char *generic
,
1827 const char *rerolled
)
1831 /* RFC may be v0, so allow -v1 to diff against v0 */
1832 if (reroll_count
&& !strtol_i(reroll_count
, 10, &v
) &&
1834 strbuf_addf(sb
, rerolled
, v
- 1);
1836 strbuf_addstr(sb
, generic
);
1840 static void infer_range_diff_ranges(struct strbuf
*r1
,
1843 struct commit
*origin
,
1844 struct commit
*head
)
1846 const char *head_oid
= oid_to_hex(&head
->object
.oid
);
1847 int prev_is_range
= is_range_diff_range(prev
);
1850 strbuf_addstr(r1
, prev
);
1852 strbuf_addf(r1
, "%s..%s", head_oid
, prev
);
1855 strbuf_addf(r2
, "%s..%s", oid_to_hex(&origin
->object
.oid
), head_oid
);
1856 else if (prev_is_range
)
1857 die(_("failed to infer range-diff origin of current series"));
1859 warning(_("using '%s' as range-diff origin of current series"), prev
);
1860 strbuf_addf(r2
, "%s..%s", prev
, head_oid
);
1864 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
1866 struct commit
*commit
;
1867 struct commit
**list
= NULL
;
1868 struct rev_info rev
;
1869 char *to_free
= NULL
;
1870 struct setup_revision_opt s_r_opt
;
1871 int nr
= 0, total
, i
;
1873 int start_number
= -1;
1874 int just_numbers
= 0;
1875 int ignore_if_in_upstream
= 0;
1876 int cover_letter
= -1;
1877 int boundary_count
= 0;
1878 int no_binary_diff
= 0;
1879 int zero_commit
= 0;
1880 struct commit
*origin
= NULL
;
1881 const char *in_reply_to
= NULL
;
1882 struct patch_ids ids
;
1883 struct strbuf buf
= STRBUF_INIT
;
1884 int use_patch_format
= 0;
1886 const char *reroll_count
= NULL
;
1887 char *cover_from_description_arg
= NULL
;
1888 char *description_file
= NULL
;
1889 char *branch_name
= NULL
;
1890 char *base_commit
= NULL
;
1891 struct base_tree_info bases
;
1892 struct commit
*base
;
1893 int show_progress
= 0;
1894 struct progress
*progress
= NULL
;
1895 struct oid_array idiff_prev
= OID_ARRAY_INIT
;
1896 struct strbuf idiff_title
= STRBUF_INIT
;
1897 const char *rdiff_prev
= NULL
;
1898 struct strbuf rdiff1
= STRBUF_INIT
;
1899 struct strbuf rdiff2
= STRBUF_INIT
;
1900 struct strbuf rdiff_title
= STRBUF_INIT
;
1901 struct strbuf sprefix
= STRBUF_INIT
;
1902 int creation_factor
= -1;
1905 const struct option builtin_format_patch_options
[] = {
1906 OPT_CALLBACK_F('n', "numbered", &numbered
, NULL
,
1907 N_("use [PATCH n/m] even with a single patch"),
1908 PARSE_OPT_NOARG
, numbered_callback
),
1909 OPT_CALLBACK_F('N', "no-numbered", &numbered
, NULL
,
1910 N_("use [PATCH] even with multiple patches"),
1911 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, no_numbered_callback
),
1912 OPT_BOOL('s', "signoff", &do_signoff
, N_("add a Signed-off-by trailer")),
1913 OPT_BOOL(0, "stdout", &use_stdout
,
1914 N_("print patches to standard out")),
1915 OPT_BOOL(0, "cover-letter", &cover_letter
,
1916 N_("generate a cover letter")),
1917 OPT_BOOL(0, "numbered-files", &just_numbers
,
1918 N_("use simple number sequence for output file names")),
1919 OPT_STRING(0, "suffix", &fmt_patch_suffix
, N_("sfx"),
1920 N_("use <sfx> instead of '.patch'")),
1921 OPT_INTEGER(0, "start-number", &start_number
,
1922 N_("start numbering patches at <n> instead of 1")),
1923 OPT_STRING('v', "reroll-count", &reroll_count
, N_("reroll-count"),
1924 N_("mark the series as Nth re-roll")),
1925 OPT_INTEGER(0, "filename-max-length", &fmt_patch_name_max
,
1926 N_("max length of output filename")),
1927 OPT_BOOL(0, "rfc", &rfc
, N_("use [RFC PATCH] instead of [PATCH]")),
1928 OPT_STRING(0, "cover-from-description", &cover_from_description_arg
,
1929 N_("cover-from-description-mode"),
1930 N_("generate parts of a cover letter based on a branch's description")),
1931 OPT_FILENAME(0, "description-file", &description_file
,
1932 N_("use branch description from file")),
1933 OPT_CALLBACK_F(0, "subject-prefix", &sprefix
, N_("prefix"),
1934 N_("use [<prefix>] instead of [PATCH]"),
1935 PARSE_OPT_NONEG
, subject_prefix_callback
),
1936 OPT_CALLBACK_F('o', "output-directory", &output_directory
,
1937 N_("dir"), N_("store resulting files in <dir>"),
1938 PARSE_OPT_NONEG
, output_directory_callback
),
1939 OPT_CALLBACK_F('k', "keep-subject", &rev
, NULL
,
1940 N_("don't strip/add [PATCH]"),
1941 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, keep_callback
),
1942 OPT_BOOL(0, "no-binary", &no_binary_diff
,
1943 N_("don't output binary diffs")),
1944 OPT_BOOL(0, "zero-commit", &zero_commit
,
1945 N_("output all-zero hash in From header")),
1946 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream
,
1947 N_("don't include a patch matching a commit upstream")),
1948 OPT_SET_INT_F('p', "no-stat", &use_patch_format
,
1949 N_("show patch format instead of default (patch + stat)"),
1950 1, PARSE_OPT_NONEG
),
1951 OPT_GROUP(N_("Messaging")),
1952 OPT_CALLBACK(0, "add-header", NULL
, N_("header"),
1953 N_("add email header"), header_callback
),
1954 OPT_STRING_LIST(0, "to", &extra_to
, N_("email"), N_("add To: header")),
1955 OPT_STRING_LIST(0, "cc", &extra_cc
, N_("email"), N_("add Cc: header")),
1956 OPT_CALLBACK_F(0, "from", &from
, N_("ident"),
1957 N_("set From address to <ident> (or committer ident if absent)"),
1958 PARSE_OPT_OPTARG
, from_callback
),
1959 OPT_STRING(0, "in-reply-to", &in_reply_to
, N_("message-id"),
1960 N_("make first mail a reply to <message-id>")),
1961 OPT_CALLBACK_F(0, "attach", &rev
, N_("boundary"),
1962 N_("attach the patch"), PARSE_OPT_OPTARG
,
1964 OPT_CALLBACK_F(0, "inline", &rev
, N_("boundary"),
1965 N_("inline the patch"),
1966 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
,
1968 OPT_CALLBACK_F(0, "thread", &thread
, N_("style"),
1969 N_("enable message threading, styles: shallow, deep"),
1970 PARSE_OPT_OPTARG
, thread_callback
),
1971 OPT_STRING(0, "signature", &signature
, N_("signature"),
1972 N_("add a signature")),
1973 OPT_CALLBACK_F(0, "base", &base_commit
, N_("base-commit"),
1974 N_("add prerequisite tree info to the patch series"),
1976 OPT_FILENAME(0, "signature-file", &signature_file
,
1977 N_("add a signature from a file")),
1978 OPT__QUIET(&quiet
, N_("don't print the patch filenames")),
1979 OPT_BOOL(0, "progress", &show_progress
,
1980 N_("show progress while generating patches")),
1981 OPT_CALLBACK(0, "interdiff", &idiff_prev
, N_("rev"),
1982 N_("show changes against <rev> in cover letter or single patch"),
1983 parse_opt_object_name
),
1984 OPT_STRING(0, "range-diff", &rdiff_prev
, N_("refspec"),
1985 N_("show changes against <refspec> in cover letter or single patch")),
1986 OPT_INTEGER(0, "creation-factor", &creation_factor
,
1987 N_("percentage by which creation is weighted")),
1988 OPT_BOOL(0, "force-in-body-from", &force_in_body_from
,
1989 N_("show in-body From: even if identical to the e-mail header")),
1993 extra_hdr
.strdup_strings
= 1;
1994 extra_to
.strdup_strings
= 1;
1995 extra_cc
.strdup_strings
= 1;
1997 init_log_defaults();
1998 init_display_notes(¬es_opt
);
1999 git_config(git_format_config
, NULL
);
2000 repo_init_revisions(the_repository
, &rev
, prefix
);
2001 git_config(grep_config
, &rev
.grep_filter
);
2003 rev
.show_notes
= show_notes
;
2004 memcpy(&rev
.notes_opt
, ¬es_opt
, sizeof(notes_opt
));
2005 rev
.commit_format
= CMIT_FMT_EMAIL
;
2006 rev
.encode_email_headers
= default_encode_email_headers
;
2007 rev
.expand_tabs_in_log_default
= 0;
2008 rev
.verbose_header
= 1;
2010 rev
.max_parents
= 1;
2011 rev
.diffopt
.flags
.recursive
= 1;
2012 rev
.diffopt
.no_free
= 1;
2013 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
2014 s_r_opt
.def
= "HEAD";
2015 s_r_opt
.revarg_opt
= REVARG_COMMITTISH
;
2017 strbuf_addstr(&sprefix
, fmt_patch_subject_prefix
);
2018 if (format_no_prefix
)
2019 diff_set_noprefix(&rev
.diffopt
);
2021 if (default_attach
) {
2022 rev
.mime_boundary
= default_attach
;
2027 * Parse the arguments before setup_revisions(), or something
2028 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
2029 * possibly a valid SHA1.
2031 argc
= parse_options(argc
, argv
, prefix
, builtin_format_patch_options
,
2032 builtin_format_patch_usage
,
2033 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN_OPT
|
2034 PARSE_OPT_KEEP_DASHDASH
);
2036 rev
.force_in_body_from
= force_in_body_from
;
2038 /* Make sure "0000-$sub.patch" gives non-negative length for $sub */
2039 if (fmt_patch_name_max
<= strlen("0000-") + strlen(fmt_patch_suffix
))
2040 fmt_patch_name_max
= strlen("0000-") + strlen(fmt_patch_suffix
);
2042 if (cover_from_description_arg
)
2043 cover_from_description_mode
= parse_cover_from_description(cover_from_description_arg
);
2046 strbuf_insertstr(&sprefix
, 0, "RFC ");
2049 strbuf_addf(&sprefix
, " v%s", reroll_count
);
2050 rev
.reroll_count
= reroll_count
;
2053 rev
.subject_prefix
= sprefix
.buf
;
2055 for (i
= 0; i
< extra_hdr
.nr
; i
++) {
2056 strbuf_addstr(&buf
, extra_hdr
.items
[i
].string
);
2057 strbuf_addch(&buf
, '\n');
2061 strbuf_addstr(&buf
, "To: ");
2062 for (i
= 0; i
< extra_to
.nr
; i
++) {
2064 strbuf_addstr(&buf
, " ");
2065 strbuf_addstr(&buf
, extra_to
.items
[i
].string
);
2066 if (i
+ 1 < extra_to
.nr
)
2067 strbuf_addch(&buf
, ',');
2068 strbuf_addch(&buf
, '\n');
2072 strbuf_addstr(&buf
, "Cc: ");
2073 for (i
= 0; i
< extra_cc
.nr
; i
++) {
2075 strbuf_addstr(&buf
, " ");
2076 strbuf_addstr(&buf
, extra_cc
.items
[i
].string
);
2077 if (i
+ 1 < extra_cc
.nr
)
2078 strbuf_addch(&buf
, ',');
2079 strbuf_addch(&buf
, '\n');
2082 rev
.extra_headers
= to_free
= strbuf_detach(&buf
, NULL
);
2085 if (split_ident_line(&rev
.from_ident
, from
, strlen(from
)))
2086 die(_("invalid ident line: %s"), from
);
2089 if (start_number
< 0)
2093 * If numbered is set solely due to format.numbered in config,
2094 * and it would conflict with --keep-subject (-k) from the
2095 * command line, reset "numbered".
2097 if (numbered
&& keep_subject
&& !numbered_cmdline_opt
)
2100 if (numbered
&& keep_subject
)
2101 die(_("options '%s' and '%s' cannot be used together"), "-n", "-k");
2102 if (keep_subject
&& subject_prefix
)
2103 die(_("options '%s' and '%s' cannot be used together"), "--subject-prefix/--rfc", "-k");
2104 rev
.preserve_subject
= keep_subject
;
2106 argc
= setup_revisions(argc
, argv
, &rev
, &s_r_opt
);
2108 die(_("unrecognized argument: %s"), argv
[1]);
2110 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME
)
2111 die(_("--name-only does not make sense"));
2112 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME_STATUS
)
2113 die(_("--name-status does not make sense"));
2114 if (rev
.diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
)
2115 die(_("--check does not make sense"));
2116 if (rev
.remerge_diff
)
2117 die(_("--remerge-diff does not make sense"));
2119 if (!use_patch_format
&&
2120 (!rev
.diffopt
.output_format
||
2121 rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
))
2122 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
;
2123 if (!rev
.diffopt
.stat_width
)
2124 rev
.diffopt
.stat_width
= MAIL_DEFAULT_WRAP
;
2126 /* Always generate a patch */
2127 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
2128 rev
.always_show_header
= 1;
2130 rev
.zero_commit
= zero_commit
;
2131 rev
.patch_name_max
= fmt_patch_name_max
;
2133 if (!rev
.diffopt
.flags
.text
&& !no_binary_diff
)
2134 rev
.diffopt
.flags
.binary
= 1;
2137 load_display_notes(&rev
.notes_opt
);
2139 die_for_incompatible_opt3(use_stdout
, "--stdout",
2140 rev
.diffopt
.close_file
, "--output",
2141 !!output_directory
, "--output-directory");
2143 if (use_stdout
&& stdout_mboxrd
)
2144 rev
.commit_format
= CMIT_FMT_MBOXRD
;
2148 } else if (!rev
.diffopt
.close_file
) {
2151 if (!output_directory
)
2152 output_directory
= config_output_directory
;
2153 output_directory
= set_outdir(prefix
, output_directory
);
2155 if (rev
.diffopt
.use_color
!= GIT_COLOR_ALWAYS
)
2156 rev
.diffopt
.use_color
= GIT_COLOR_NEVER
;
2158 * We consider <outdir> as 'outside of gitdir', therefore avoid
2159 * applying adjust_shared_perm in s-c-l-d.
2161 saved
= get_shared_repository();
2162 set_shared_repository(0);
2163 switch (safe_create_leading_directories_const(output_directory
)) {
2168 die(_("could not create leading directories "
2169 "of '%s'"), output_directory
);
2171 set_shared_repository(saved
);
2172 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
2173 die_errno(_("could not create directory '%s'"),
2177 if (rev
.pending
.nr
== 1) {
2180 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
2182 * This is traditional behaviour of "git format-patch
2183 * origin" that prepares what the origin side still
2186 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
2187 add_head_to_pending(&rev
);
2191 * Otherwise, it is "format-patch -22 HEAD", and/or
2192 * "format-patch --root HEAD". The user wants
2193 * get_revision() to do the usual traversal.
2196 if (!strcmp(rev
.pending
.objects
[0].name
, "HEAD"))
2200 const char *ref
, *v
;
2201 ref
= resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
,
2203 if (ref
&& skip_prefix(ref
, "refs/heads/", &v
))
2204 branch_name
= xstrdup(v
);
2206 branch_name
= xstrdup(""); /* no branch */
2211 * We cannot move this anywhere earlier because we do want to
2212 * know if --root was given explicitly from the command line.
2214 rev
.show_root_diff
= 1;
2216 if (ignore_if_in_upstream
) {
2217 /* Don't say anything if head and upstream are the same. */
2218 if (rev
.pending
.nr
== 2) {
2219 struct object_array_entry
*o
= rev
.pending
.objects
;
2220 if (oideq(&o
[0].item
->oid
, &o
[1].item
->oid
))
2223 get_patch_ids(&rev
, &ids
);
2226 if (prepare_revision_walk(&rev
))
2227 die(_("revision walk setup failed"));
2229 while ((commit
= get_revision(&rev
)) != NULL
) {
2230 if (commit
->object
.flags
& BOUNDARY
) {
2232 origin
= (boundary_count
== 1) ? commit
: NULL
;
2236 if (ignore_if_in_upstream
&& has_commit_patch_id(commit
, &ids
))
2240 REALLOC_ARRAY(list
, nr
);
2241 list
[nr
- 1] = commit
;
2247 if (cover_letter
== -1) {
2248 if (config_cover_letter
== COVER_AUTO
)
2249 cover_letter
= (total
> 1);
2251 cover_letter
= (config_cover_letter
== COVER_ON
);
2253 if (!keep_subject
&& auto_number
&& (total
> 1 || cover_letter
))
2256 rev
.total
= total
+ start_number
- 1;
2258 if (idiff_prev
.nr
) {
2259 if (!cover_letter
&& total
!= 1)
2260 die(_("--interdiff requires --cover-letter or single patch"));
2261 rev
.idiff_oid1
= &idiff_prev
.oid
[idiff_prev
.nr
- 1];
2262 rev
.idiff_oid2
= get_commit_tree_oid(list
[0]);
2263 rev
.idiff_title
= diff_title(&idiff_title
, reroll_count
,
2265 _("Interdiff against v%d:"));
2268 if (creation_factor
< 0)
2269 creation_factor
= RANGE_DIFF_CREATION_FACTOR_DEFAULT
;
2270 else if (!rdiff_prev
)
2271 die(_("the option '%s' requires '%s'"), "--creation-factor", "--range-diff");
2274 if (!cover_letter
&& total
!= 1)
2275 die(_("--range-diff requires --cover-letter or single patch"));
2277 infer_range_diff_ranges(&rdiff1
, &rdiff2
, rdiff_prev
,
2279 rev
.rdiff1
= rdiff1
.buf
;
2280 rev
.rdiff2
= rdiff2
.buf
;
2281 rev
.creation_factor
= creation_factor
;
2282 rev
.rdiff_title
= diff_title(&rdiff_title
, reroll_count
,
2284 _("Range-diff against v%d:"));
2288 ; /* --no-signature inhibits all signatures */
2289 } else if (signature
&& signature
!= git_version_string
) {
2290 ; /* non-default signature already set */
2291 } else if (signature_file
) {
2292 struct strbuf buf
= STRBUF_INIT
;
2294 if (strbuf_read_file(&buf
, signature_file
, 128) < 0)
2295 die_errno(_("unable to read signature file '%s'"), signature_file
);
2296 signature
= strbuf_detach(&buf
, NULL
);
2299 memset(&bases
, 0, sizeof(bases
));
2300 base
= get_base_commit(base_commit
, list
, nr
);
2302 reset_revision_walk();
2303 clear_object_flags(UNINTERESTING
);
2304 prepare_bases(&bases
, base
, list
, nr
);
2307 if (in_reply_to
|| thread
|| cover_letter
) {
2308 rev
.ref_message_ids
= xmalloc(sizeof(*rev
.ref_message_ids
));
2309 string_list_init_dup(rev
.ref_message_ids
);
2312 char *msgid
= clean_message_id(in_reply_to
);
2313 string_list_append_nodup(rev
.ref_message_ids
, msgid
);
2315 rev
.numbered_files
= just_numbers
;
2316 rev
.patch_suffix
= fmt_patch_suffix
;
2319 gen_message_id(&rev
, "cover");
2320 make_cover_letter(&rev
, !!output_directory
,
2321 origin
, nr
, list
, description_file
, branch_name
, quiet
);
2322 print_bases(&bases
, rev
.diffopt
.file
);
2323 print_signature(rev
.diffopt
.file
);
2326 /* interdiff/range-diff in cover-letter; omit from patches */
2327 rev
.idiff_oid1
= NULL
;
2330 rev
.add_signoff
= do_signoff
;
2333 progress
= start_delayed_progress(_("Generating patches"), total
);
2336 display_progress(progress
, total
- nr
);
2338 rev
.nr
= total
- nr
+ (start_number
- 1);
2339 /* Make the second and subsequent mails replies to the first */
2341 /* Have we already had a message ID? */
2342 if (rev
.message_id
) {
2344 * For deep threading: make every mail
2345 * a reply to the previous one, no
2346 * matter what other options are set.
2348 * For shallow threading:
2350 * Without --cover-letter and
2351 * --in-reply-to, make every mail a
2352 * reply to the one before.
2354 * With --in-reply-to but no
2355 * --cover-letter, make every mail a
2356 * reply to the <reply-to>.
2358 * With --cover-letter, make every
2359 * mail but the cover letter a reply
2360 * to the cover letter. The cover
2361 * letter is a reply to the
2362 * --in-reply-to, if specified.
2364 if (thread
== THREAD_SHALLOW
2365 && rev
.ref_message_ids
->nr
> 0
2366 && (!cover_letter
|| rev
.nr
> 1))
2367 free(rev
.message_id
);
2369 string_list_append_nodup(rev
.ref_message_ids
,
2372 gen_message_id(&rev
, oid_to_hex(&commit
->object
.oid
));
2375 if (output_directory
&&
2376 open_next_file(rev
.numbered_files
? NULL
: commit
, NULL
, &rev
, quiet
))
2377 die(_("failed to create output files"));
2378 shown
= log_tree_commit(&rev
, commit
);
2379 free_commit_buffer(the_repository
->parsed_objects
,
2382 /* We put one extra blank line between formatted
2383 * patches and this flag is used by log-tree code
2384 * to see if it needs to emit a LF before showing
2385 * the log; when using one file per patch, we do
2386 * not want the extra blank line.
2388 if (output_directory
)
2391 print_bases(&bases
, rev
.diffopt
.file
);
2392 if (rev
.mime_boundary
)
2393 fprintf(rev
.diffopt
.file
, "\n--%s%s--\n\n\n",
2394 mime_boundary_leader
,
2397 print_signature(rev
.diffopt
.file
);
2399 if (output_directory
)
2400 fclose(rev
.diffopt
.file
);
2402 stop_progress(&progress
);
2405 string_list_clear(&extra_to
, 0);
2406 string_list_clear(&extra_cc
, 0);
2407 string_list_clear(&extra_hdr
, 0);
2408 if (ignore_if_in_upstream
)
2409 free_patch_ids(&ids
);
2412 oid_array_clear(&idiff_prev
);
2413 strbuf_release(&idiff_title
);
2414 strbuf_release(&rdiff1
);
2415 strbuf_release(&rdiff2
);
2416 strbuf_release(&rdiff_title
);
2417 strbuf_release(&sprefix
);
2419 free(rev
.message_id
);
2420 if (rev
.ref_message_ids
)
2421 string_list_clear(rev
.ref_message_ids
, 0);
2422 free(rev
.ref_message_ids
);
2423 return cmd_log_deinit(0, &rev
);
2426 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
2428 struct object_id oid
;
2429 if (repo_get_oid(the_repository
, arg
, &oid
) == 0) {
2430 struct commit
*commit
= lookup_commit_reference(the_repository
,
2433 commit
->object
.flags
|= flags
;
2434 add_pending_object(revs
, &commit
->object
, arg
);
2441 static const char * const cherry_usage
[] = {
2442 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
2446 static void print_commit(char sign
, struct commit
*commit
, int verbose
,
2447 int abbrev
, FILE *file
)
2450 fprintf(file
, "%c %s\n", sign
,
2451 repo_find_unique_abbrev(the_repository
, &commit
->object
.oid
, abbrev
));
2453 struct strbuf buf
= STRBUF_INIT
;
2454 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &buf
);
2455 fprintf(file
, "%c %s %s\n", sign
,
2456 repo_find_unique_abbrev(the_repository
, &commit
->object
.oid
, abbrev
),
2458 strbuf_release(&buf
);
2462 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
2464 struct rev_info revs
;
2465 struct patch_ids ids
;
2466 struct commit
*commit
;
2467 struct commit_list
*list
= NULL
;
2468 struct branch
*current_branch
;
2469 const char *upstream
;
2470 const char *head
= "HEAD";
2471 const char *limit
= NULL
;
2472 int verbose
= 0, abbrev
= 0;
2474 struct option options
[] = {
2475 OPT__ABBREV(&abbrev
),
2476 OPT__VERBOSE(&verbose
, N_("be verbose")),
2480 argc
= parse_options(argc
, argv
, prefix
, options
, cherry_usage
, 0);
2493 current_branch
= branch_get(NULL
);
2494 upstream
= branch_get_upstream(current_branch
, NULL
);
2496 fprintf(stderr
, _("Could not find a tracked"
2497 " remote branch, please"
2498 " specify <upstream> manually.\n"));
2499 usage_with_options(cherry_usage
, options
);
2503 repo_init_revisions(the_repository
, &revs
, prefix
);
2504 revs
.max_parents
= 1;
2506 if (add_pending_commit(head
, &revs
, 0))
2507 die(_("unknown commit %s"), head
);
2508 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
2509 die(_("unknown commit %s"), upstream
);
2511 /* Don't say anything if head and upstream are the same. */
2512 if (revs
.pending
.nr
== 2) {
2513 struct object_array_entry
*o
= revs
.pending
.objects
;
2514 if (oideq(&o
[0].item
->oid
, &o
[1].item
->oid
))
2518 get_patch_ids(&revs
, &ids
);
2520 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
2521 die(_("unknown commit %s"), limit
);
2523 /* reverse the list of commits */
2524 if (prepare_revision_walk(&revs
))
2525 die(_("revision walk setup failed"));
2526 while ((commit
= get_revision(&revs
)) != NULL
) {
2527 commit_list_insert(commit
, &list
);
2533 commit
= list
->item
;
2534 if (has_commit_patch_id(commit
, &ids
))
2536 print_commit(sign
, commit
, verbose
, abbrev
, revs
.diffopt
.file
);
2540 free_patch_ids(&ids
);