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"
29 #include "run-command.h"
32 #include "string-list.h"
33 #include "parse-options.h"
36 #include "streaming.h"
39 #include "gpg-interface.h"
41 #include "commit-slab.h"
42 #include "repository.h"
43 #include "commit-reach.h"
44 #include "range-diff.h"
45 #include "tmp-objdir.h"
47 #include "write-or-die.h"
49 #define MAIL_DEFAULT_WRAP 72
50 #define COVER_FROM_AUTO_MAX_SUBJECT_LEN 100
51 #define FORMAT_PATCH_NAME_MAX_DEFAULT 64
53 /* Set a default date-time format for git log ("log.date" config variable) */
54 static const char *default_date_mode
= NULL
;
56 static int default_abbrev_commit
;
57 static int default_show_root
= 1;
58 static int default_follow
;
59 static int default_show_signature
;
60 static int default_encode_email_headers
= 1;
61 static int decoration_style
;
62 static int decoration_given
;
63 static int use_mailmap_config
= 1;
64 static unsigned int force_in_body_from
;
65 static int stdout_mboxrd
;
66 static const char *fmt_patch_subject_prefix
= "PATCH";
67 static int fmt_patch_name_max
= FORMAT_PATCH_NAME_MAX_DEFAULT
;
68 static const char *fmt_pretty
;
69 static int format_no_prefix
;
71 static const char * const builtin_log_usage
[] = {
72 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
73 N_("git show [<options>] <object>..."),
77 struct line_opt_callback_data
{
80 struct string_list args
;
83 static int session_is_interactive(void)
85 return isatty(1) || pager_in_use();
88 static int auto_decoration_style(void)
90 return session_is_interactive() ? DECORATE_SHORT_REFS
: 0;
93 static int parse_decoration_style(const char *value
)
95 switch (git_parse_maybe_bool(value
)) {
97 return DECORATE_SHORT_REFS
;
103 if (!strcmp(value
, "full"))
104 return DECORATE_FULL_REFS
;
105 else if (!strcmp(value
, "short"))
106 return DECORATE_SHORT_REFS
;
107 else if (!strcmp(value
, "auto"))
108 return auto_decoration_style();
110 * Please update _git_log() in git-completion.bash when you
111 * add new decoration styles.
116 static int use_default_decoration_filter
= 1;
117 static struct string_list decorate_refs_exclude
= STRING_LIST_INIT_NODUP
;
118 static struct string_list decorate_refs_exclude_config
= STRING_LIST_INIT_NODUP
;
119 static struct string_list decorate_refs_include
= STRING_LIST_INIT_NODUP
;
121 static int clear_decorations_callback(const struct option
*opt
,
122 const char *arg
, int 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
, const char *arg
, int unset
)
133 decoration_style
= 0;
135 decoration_style
= parse_decoration_style(arg
);
137 decoration_style
= DECORATE_SHORT_REFS
;
139 if (decoration_style
< 0)
140 die(_("invalid --decorate option: %s"), arg
);
142 decoration_given
= 1;
147 static int log_line_range_callback(const struct option
*option
, const char *arg
, int unset
)
149 struct line_opt_callback_data
*data
= option
->value
;
151 BUG_ON_OPT_NEG(unset
);
156 data
->rev
->line_level_traverse
= 1;
157 string_list_append(&data
->args
, arg
);
162 static void init_log_defaults(void)
164 init_diff_ui_defaults();
166 decoration_style
= auto_decoration_style();
169 static void cmd_log_init_defaults(struct rev_info
*rev
)
172 get_commit_format(fmt_pretty
, rev
);
174 rev
->diffopt
.flags
.default_follow_renames
= 1;
175 rev
->verbose_header
= 1;
176 rev
->diffopt
.flags
.recursive
= 1;
177 rev
->diffopt
.stat_width
= -1; /* use full terminal width */
178 rev
->diffopt
.stat_graph_width
= -1; /* respect statGraphWidth config */
179 rev
->abbrev_commit
= default_abbrev_commit
;
180 rev
->show_root_diff
= default_show_root
;
181 rev
->subject_prefix
= fmt_patch_subject_prefix
;
182 rev
->patch_name_max
= fmt_patch_name_max
;
183 rev
->show_signature
= default_show_signature
;
184 rev
->encode_email_headers
= default_encode_email_headers
;
185 rev
->diffopt
.flags
.allow_textconv
= 1;
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
, 0);
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 prepare_cover_text(struct pretty_print_context
*pp
,
1257 const char *branch_name
,
1259 const char *encoding
,
1262 const char *subject
= "*** SUBJECT HERE ***";
1263 const char *body
= "*** BLURB HERE ***";
1264 struct strbuf description_sb
= STRBUF_INIT
;
1265 struct strbuf subject_sb
= STRBUF_INIT
;
1267 if (cover_from_description_mode
== COVER_FROM_NONE
)
1270 if (branch_name
&& *branch_name
)
1271 read_branch_desc(&description_sb
, branch_name
);
1272 if (!description_sb
.len
)
1275 if (cover_from_description_mode
== COVER_FROM_SUBJECT
||
1276 cover_from_description_mode
== COVER_FROM_AUTO
)
1277 body
= format_subject(&subject_sb
, description_sb
.buf
, " ");
1279 if (cover_from_description_mode
== COVER_FROM_MESSAGE
||
1280 (cover_from_description_mode
== COVER_FROM_AUTO
&&
1281 subject_sb
.len
> COVER_FROM_AUTO_MAX_SUBJECT_LEN
))
1282 body
= description_sb
.buf
;
1284 subject
= subject_sb
.buf
;
1287 pp_title_line(pp
, &subject
, sb
, encoding
, need_8bit_cte
);
1288 pp_remainder(pp
, &body
, sb
, 0);
1290 strbuf_release(&description_sb
);
1291 strbuf_release(&subject_sb
);
1294 static int get_notes_refs(struct string_list_item
*item
, void *arg
)
1296 strvec_pushf(arg
, "--notes=%s", item
->string
);
1300 static void get_notes_args(struct strvec
*arg
, struct rev_info
*rev
)
1302 if (!rev
->show_notes
) {
1303 strvec_push(arg
, "--no-notes");
1304 } else if (rev
->notes_opt
.use_default_notes
> 0 ||
1305 (rev
->notes_opt
.use_default_notes
== -1 &&
1306 !rev
->notes_opt
.extra_notes_refs
.nr
)) {
1307 strvec_push(arg
, "--notes");
1309 for_each_string_list(&rev
->notes_opt
.extra_notes_refs
, get_notes_refs
, arg
);
1313 static void make_cover_letter(struct rev_info
*rev
, int use_separate_file
,
1314 struct commit
*origin
,
1315 int nr
, struct commit
**list
,
1316 const char *branch_name
,
1319 const char *committer
;
1320 struct shortlog log
;
1321 struct strbuf sb
= STRBUF_INIT
;
1323 const char *encoding
= "UTF-8";
1324 int need_8bit_cte
= 0;
1325 struct pretty_print_context pp
= {0};
1326 struct commit
*head
= list
[0];
1328 if (!cmit_fmt_is_mail(rev
->commit_format
))
1329 die(_("cover letter needs email format"));
1331 committer
= git_committer_info(0);
1333 if (use_separate_file
&&
1334 open_next_file(NULL
, rev
->numbered_files
? NULL
: "cover-letter", rev
, quiet
))
1335 die(_("failed to create cover-letter file"));
1337 log_write_email_headers(rev
, head
, &pp
.after_subject
, &need_8bit_cte
, 0);
1339 for (i
= 0; !need_8bit_cte
&& i
< nr
; i
++) {
1340 const char *buf
= repo_get_commit_buffer(the_repository
,
1342 if (has_non_ascii(buf
))
1344 repo_unuse_commit_buffer(the_repository
, list
[i
], buf
);
1348 branch_name
= find_branch_name(rev
);
1350 pp
.fmt
= CMIT_FMT_EMAIL
;
1351 pp
.date_mode
.type
= DATE_RFC2822
;
1353 pp
.print_email_subject
= 1;
1354 pp_user_info(&pp
, NULL
, &sb
, committer
, encoding
);
1355 prepare_cover_text(&pp
, branch_name
, &sb
, encoding
, need_8bit_cte
);
1356 fprintf(rev
->diffopt
.file
, "%s\n", sb
.buf
);
1358 strbuf_release(&sb
);
1360 shortlog_init(&log
);
1362 log
.wrap
= MAIL_DEFAULT_WRAP
;
1365 log
.file
= rev
->diffopt
.file
;
1366 log
.groups
= SHORTLOG_GROUP_AUTHOR
;
1367 shortlog_finish_setup(&log
);
1368 for (i
= 0; i
< nr
; i
++)
1369 shortlog_add_commit(&log
, list
[i
]);
1371 shortlog_output(&log
);
1373 /* We can only do diffstat with a unique reference point */
1375 show_diffstat(rev
, origin
, head
);
1377 if (rev
->idiff_oid1
) {
1378 fprintf_ln(rev
->diffopt
.file
, "%s", rev
->idiff_title
);
1379 show_interdiff(rev
->idiff_oid1
, rev
->idiff_oid2
, 0,
1385 * Pass minimum required diff-options to range-diff; others
1386 * can be added later if deemed desirable.
1388 struct diff_options opts
;
1389 struct strvec other_arg
= STRVEC_INIT
;
1390 struct range_diff_options range_diff_opts
= {
1391 .creation_factor
= rev
->creation_factor
,
1394 .other_arg
= &other_arg
1397 repo_diff_setup(the_repository
, &opts
);
1398 opts
.file
= rev
->diffopt
.file
;
1399 opts
.use_color
= rev
->diffopt
.use_color
;
1400 diff_setup_done(&opts
);
1401 fprintf_ln(rev
->diffopt
.file
, "%s", rev
->rdiff_title
);
1402 get_notes_args(&other_arg
, rev
);
1403 show_range_diff(rev
->rdiff1
, rev
->rdiff2
, &range_diff_opts
);
1404 strvec_clear(&other_arg
);
1408 static char *clean_message_id(const char *msg_id
)
1411 const char *a
, *z
, *m
;
1414 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
1419 if (!isspace(ch
) && (ch
!= '>'))
1424 die(_("insane in-reply-to: %s"), msg_id
);
1427 return xmemdupz(a
, z
- a
);
1430 static const char *set_outdir(const char *prefix
, const char *output_directory
)
1432 if (output_directory
&& is_absolute_path(output_directory
))
1433 return output_directory
;
1435 if (!prefix
|| !*prefix
) {
1436 if (output_directory
)
1437 return output_directory
;
1438 /* The user did not explicitly ask for "./" */
1443 outdir_offset
= strlen(prefix
);
1444 if (!output_directory
)
1447 return prefix_filename(prefix
, output_directory
);
1450 static const char * const builtin_format_patch_usage
[] = {
1451 N_("git format-patch [<options>] [<since> | <revision-range>]"),
1455 static int keep_subject
= 0;
1457 static int keep_callback(const struct option
*opt
, const char *arg
, int unset
)
1459 BUG_ON_OPT_NEG(unset
);
1460 BUG_ON_OPT_ARG(arg
);
1461 ((struct rev_info
*)opt
->value
)->total
= -1;
1466 static int subject_prefix
= 0;
1468 static int subject_prefix_callback(const struct option
*opt
, const char *arg
,
1471 BUG_ON_OPT_NEG(unset
);
1473 ((struct rev_info
*)opt
->value
)->subject_prefix
= arg
;
1477 static int rfc_callback(const struct option
*opt
, const char *arg
, int unset
)
1479 BUG_ON_OPT_NEG(unset
);
1480 BUG_ON_OPT_ARG(arg
);
1481 return subject_prefix_callback(opt
, "RFC PATCH", unset
);
1484 static int numbered_cmdline_opt
= 0;
1486 static int numbered_callback(const struct option
*opt
, const char *arg
,
1489 BUG_ON_OPT_ARG(arg
);
1490 *(int *)opt
->value
= numbered_cmdline_opt
= unset
? 0 : 1;
1496 static int no_numbered_callback(const struct option
*opt
, const char *arg
,
1499 BUG_ON_OPT_NEG(unset
);
1500 return numbered_callback(opt
, arg
, 1);
1503 static int output_directory_callback(const struct option
*opt
, const char *arg
,
1506 const char **dir
= (const char **)opt
->value
;
1507 BUG_ON_OPT_NEG(unset
);
1509 die(_("two output directories?"));
1514 static int thread_callback(const struct option
*opt
, const char *arg
, int unset
)
1516 enum thread_level
*thread
= (enum thread_level
*)opt
->value
;
1518 *thread
= THREAD_UNSET
;
1519 else if (!arg
|| !strcmp(arg
, "shallow"))
1520 *thread
= THREAD_SHALLOW
;
1521 else if (!strcmp(arg
, "deep"))
1522 *thread
= THREAD_DEEP
;
1524 * Please update _git_formatpatch() in git-completion.bash
1525 * when you add new options.
1532 static int attach_callback(const struct option
*opt
, const char *arg
, int unset
)
1534 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1536 rev
->mime_boundary
= NULL
;
1538 rev
->mime_boundary
= arg
;
1540 rev
->mime_boundary
= git_version_string
;
1541 rev
->no_inline
= unset
? 0 : 1;
1545 static int inline_callback(const struct option
*opt
, const char *arg
, int unset
)
1547 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1549 rev
->mime_boundary
= NULL
;
1551 rev
->mime_boundary
= arg
;
1553 rev
->mime_boundary
= git_version_string
;
1558 static int header_callback(const struct option
*opt
, const char *arg
, int unset
)
1561 string_list_clear(&extra_hdr
, 0);
1562 string_list_clear(&extra_to
, 0);
1563 string_list_clear(&extra_cc
, 0);
1570 static int to_callback(const struct option
*opt
, const char *arg
, int unset
)
1573 string_list_clear(&extra_to
, 0);
1575 string_list_append(&extra_to
, arg
);
1579 static int cc_callback(const struct option
*opt
, const char *arg
, int unset
)
1582 string_list_clear(&extra_cc
, 0);
1584 string_list_append(&extra_cc
, arg
);
1588 static int from_callback(const struct option
*opt
, const char *arg
, int unset
)
1590 char **from
= opt
->value
;
1597 *from
= xstrdup(arg
);
1599 *from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
1603 static int base_callback(const struct option
*opt
, const char *arg
, int unset
)
1605 const char **base_commit
= opt
->value
;
1608 auto_base
= AUTO_BASE_NEVER
;
1609 *base_commit
= NULL
;
1610 } else if (!strcmp(arg
, "auto")) {
1611 auto_base
= AUTO_BASE_ALWAYS
;
1612 *base_commit
= NULL
;
1614 auto_base
= AUTO_BASE_NEVER
;
1620 struct base_tree_info
{
1621 struct object_id base_commit
;
1622 int nr_patch_id
, alloc_patch_id
;
1623 struct object_id
*patch_id
;
1626 static struct commit
*get_base_commit(const char *base_commit
,
1627 struct commit
**list
,
1630 struct commit
*base
= NULL
;
1631 struct commit
**rev
;
1632 int i
= 0, rev_nr
= 0, auto_select
, die_on_failure
;
1634 switch (auto_base
) {
1635 case AUTO_BASE_NEVER
:
1640 /* no base information is requested */
1644 case AUTO_BASE_ALWAYS
:
1645 case AUTO_BASE_WHEN_ABLE
:
1647 BUG("requested automatic base selection but a commit was provided");
1650 die_on_failure
= auto_base
== AUTO_BASE_ALWAYS
;
1654 BUG("unexpected automatic base selection method");
1658 base
= lookup_commit_reference_by_name(base_commit
);
1660 die(_("unknown commit %s"), base_commit
);
1662 struct branch
*curr_branch
= branch_get(NULL
);
1663 const char *upstream
= branch_get_upstream(curr_branch
, NULL
);
1665 struct commit_list
*base_list
;
1666 struct commit
*commit
;
1667 struct object_id oid
;
1669 if (repo_get_oid(the_repository
, upstream
, &oid
)) {
1671 die(_("failed to resolve '%s' as a valid ref"), upstream
);
1675 commit
= lookup_commit_or_die(&oid
, "upstream base");
1676 base_list
= repo_get_merge_bases_many(the_repository
,
1679 /* There should be one and only one merge base. */
1680 if (!base_list
|| base_list
->next
) {
1681 if (die_on_failure
) {
1682 die(_("could not find exact merge base"));
1684 free_commit_list(base_list
);
1688 base
= base_list
->item
;
1689 free_commit_list(base_list
);
1692 die(_("failed to get upstream, if you want to record base commit automatically,\n"
1693 "please use git branch --set-upstream-to to track a remote branch.\n"
1694 "Or you could specify base commit by --base=<base-commit-id> manually"));
1700 ALLOC_ARRAY(rev
, total
);
1701 for (i
= 0; i
< total
; i
++)
1706 * Get merge base through pair-wise computations
1707 * and store it in rev[0].
1709 while (rev_nr
> 1) {
1710 for (i
= 0; i
< rev_nr
/ 2; i
++) {
1711 struct commit_list
*merge_base
;
1712 merge_base
= repo_get_merge_bases(the_repository
,
1715 if (!merge_base
|| merge_base
->next
) {
1716 if (die_on_failure
) {
1717 die(_("failed to find exact merge base"));
1724 rev
[i
] = merge_base
->item
;
1728 rev
[i
] = rev
[2 * i
];
1729 rev_nr
= DIV_ROUND_UP(rev_nr
, 2);
1732 if (!repo_in_merge_bases(the_repository
, base
, rev
[0])) {
1733 if (die_on_failure
) {
1734 die(_("base commit should be the ancestor of revision list"));
1741 for (i
= 0; i
< total
; i
++) {
1742 if (base
== list
[i
]) {
1743 if (die_on_failure
) {
1744 die(_("base commit shouldn't be in revision list"));
1756 define_commit_slab(commit_base
, int);
1758 static void prepare_bases(struct base_tree_info
*bases
,
1759 struct commit
*base
,
1760 struct commit
**list
,
1763 struct commit
*commit
;
1764 struct rev_info revs
;
1765 struct diff_options diffopt
;
1766 struct commit_base commit_base
;
1772 init_commit_base(&commit_base
);
1773 repo_diff_setup(the_repository
, &diffopt
);
1774 diffopt
.flags
.recursive
= 1;
1775 diff_setup_done(&diffopt
);
1777 oidcpy(&bases
->base_commit
, &base
->object
.oid
);
1779 repo_init_revisions(the_repository
, &revs
, NULL
);
1780 revs
.max_parents
= 1;
1781 revs
.topo_order
= 1;
1782 for (i
= 0; i
< total
; i
++) {
1783 list
[i
]->object
.flags
&= ~UNINTERESTING
;
1784 add_pending_object(&revs
, &list
[i
]->object
, "rev_list");
1785 *commit_base_at(&commit_base
, list
[i
]) = 1;
1787 base
->object
.flags
|= UNINTERESTING
;
1788 add_pending_object(&revs
, &base
->object
, "base");
1790 if (prepare_revision_walk(&revs
))
1791 die(_("revision walk setup failed"));
1793 * Traverse the commits list, get prerequisite patch ids
1794 * and stuff them in bases structure.
1796 while ((commit
= get_revision(&revs
)) != NULL
) {
1797 struct object_id oid
;
1798 struct object_id
*patch_id
;
1799 if (*commit_base_at(&commit_base
, commit
))
1801 if (commit_patch_id(commit
, &diffopt
, &oid
, 0))
1802 die(_("cannot get patch id"));
1803 ALLOC_GROW(bases
->patch_id
, bases
->nr_patch_id
+ 1, bases
->alloc_patch_id
);
1804 patch_id
= bases
->patch_id
+ bases
->nr_patch_id
;
1805 oidcpy(patch_id
, &oid
);
1806 bases
->nr_patch_id
++;
1808 clear_commit_base(&commit_base
);
1811 static void print_bases(struct base_tree_info
*bases
, FILE *file
)
1815 /* Only do this once, either for the cover or for the first one */
1816 if (is_null_oid(&bases
->base_commit
))
1819 /* Show the base commit */
1820 fprintf(file
, "\nbase-commit: %s\n", oid_to_hex(&bases
->base_commit
));
1822 /* Show the prerequisite patches */
1823 for (i
= bases
->nr_patch_id
- 1; i
>= 0; i
--)
1824 fprintf(file
, "prerequisite-patch-id: %s\n", oid_to_hex(&bases
->patch_id
[i
]));
1826 free(bases
->patch_id
);
1827 bases
->nr_patch_id
= 0;
1828 bases
->alloc_patch_id
= 0;
1829 oidclr(&bases
->base_commit
);
1832 static const char *diff_title(struct strbuf
*sb
,
1833 const char *reroll_count
,
1834 const char *generic
,
1835 const char *rerolled
)
1839 /* RFC may be v0, so allow -v1 to diff against v0 */
1840 if (reroll_count
&& !strtol_i(reroll_count
, 10, &v
) &&
1842 strbuf_addf(sb
, rerolled
, v
- 1);
1844 strbuf_addstr(sb
, generic
);
1848 static void infer_range_diff_ranges(struct strbuf
*r1
,
1851 struct commit
*origin
,
1852 struct commit
*head
)
1854 const char *head_oid
= oid_to_hex(&head
->object
.oid
);
1855 int prev_is_range
= is_range_diff_range(prev
);
1858 strbuf_addstr(r1
, prev
);
1860 strbuf_addf(r1
, "%s..%s", head_oid
, prev
);
1863 strbuf_addf(r2
, "%s..%s", oid_to_hex(&origin
->object
.oid
), head_oid
);
1864 else if (prev_is_range
)
1865 die(_("failed to infer range-diff origin of current series"));
1867 warning(_("using '%s' as range-diff origin of current series"), prev
);
1868 strbuf_addf(r2
, "%s..%s", prev
, head_oid
);
1872 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
1874 struct commit
*commit
;
1875 struct commit
**list
= NULL
;
1876 struct rev_info rev
;
1877 char *to_free
= NULL
;
1878 struct setup_revision_opt s_r_opt
;
1879 int nr
= 0, total
, i
;
1881 int start_number
= -1;
1882 int just_numbers
= 0;
1883 int ignore_if_in_upstream
= 0;
1884 int cover_letter
= -1;
1885 int boundary_count
= 0;
1886 int no_binary_diff
= 0;
1887 int zero_commit
= 0;
1888 struct commit
*origin
= NULL
;
1889 const char *in_reply_to
= NULL
;
1890 struct patch_ids ids
;
1891 struct strbuf buf
= STRBUF_INIT
;
1892 int use_patch_format
= 0;
1894 const char *reroll_count
= NULL
;
1895 char *cover_from_description_arg
= NULL
;
1896 char *branch_name
= NULL
;
1897 char *base_commit
= NULL
;
1898 struct base_tree_info bases
;
1899 struct commit
*base
;
1900 int show_progress
= 0;
1901 struct progress
*progress
= NULL
;
1902 struct oid_array idiff_prev
= OID_ARRAY_INIT
;
1903 struct strbuf idiff_title
= STRBUF_INIT
;
1904 const char *rdiff_prev
= NULL
;
1905 struct strbuf rdiff1
= STRBUF_INIT
;
1906 struct strbuf rdiff2
= STRBUF_INIT
;
1907 struct strbuf rdiff_title
= STRBUF_INIT
;
1908 struct strbuf sprefix
= STRBUF_INIT
;
1909 int creation_factor
= -1;
1911 const struct option builtin_format_patch_options
[] = {
1912 OPT_CALLBACK_F('n', "numbered", &numbered
, NULL
,
1913 N_("use [PATCH n/m] even with a single patch"),
1914 PARSE_OPT_NOARG
, numbered_callback
),
1915 OPT_CALLBACK_F('N', "no-numbered", &numbered
, NULL
,
1916 N_("use [PATCH] even with multiple patches"),
1917 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, no_numbered_callback
),
1918 OPT_BOOL('s', "signoff", &do_signoff
, N_("add a Signed-off-by trailer")),
1919 OPT_BOOL(0, "stdout", &use_stdout
,
1920 N_("print patches to standard out")),
1921 OPT_BOOL(0, "cover-letter", &cover_letter
,
1922 N_("generate a cover letter")),
1923 OPT_BOOL(0, "numbered-files", &just_numbers
,
1924 N_("use simple number sequence for output file names")),
1925 OPT_STRING(0, "suffix", &fmt_patch_suffix
, N_("sfx"),
1926 N_("use <sfx> instead of '.patch'")),
1927 OPT_INTEGER(0, "start-number", &start_number
,
1928 N_("start numbering patches at <n> instead of 1")),
1929 OPT_STRING('v', "reroll-count", &reroll_count
, N_("reroll-count"),
1930 N_("mark the series as Nth re-roll")),
1931 OPT_INTEGER(0, "filename-max-length", &fmt_patch_name_max
,
1932 N_("max length of output filename")),
1933 OPT_CALLBACK_F(0, "rfc", &rev
, NULL
,
1934 N_("use [RFC PATCH] instead of [PATCH]"),
1935 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, rfc_callback
),
1936 OPT_STRING(0, "cover-from-description", &cover_from_description_arg
,
1937 N_("cover-from-description-mode"),
1938 N_("generate parts of a cover letter based on a branch's description")),
1939 OPT_CALLBACK_F(0, "subject-prefix", &rev
, N_("prefix"),
1940 N_("use [<prefix>] instead of [PATCH]"),
1941 PARSE_OPT_NONEG
, subject_prefix_callback
),
1942 OPT_CALLBACK_F('o', "output-directory", &output_directory
,
1943 N_("dir"), N_("store resulting files in <dir>"),
1944 PARSE_OPT_NONEG
, output_directory_callback
),
1945 OPT_CALLBACK_F('k', "keep-subject", &rev
, NULL
,
1946 N_("don't strip/add [PATCH]"),
1947 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, keep_callback
),
1948 OPT_BOOL(0, "no-binary", &no_binary_diff
,
1949 N_("don't output binary diffs")),
1950 OPT_BOOL(0, "zero-commit", &zero_commit
,
1951 N_("output all-zero hash in From header")),
1952 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream
,
1953 N_("don't include a patch matching a commit upstream")),
1954 OPT_SET_INT_F('p', "no-stat", &use_patch_format
,
1955 N_("show patch format instead of default (patch + stat)"),
1956 1, PARSE_OPT_NONEG
),
1957 OPT_GROUP(N_("Messaging")),
1958 OPT_CALLBACK(0, "add-header", NULL
, N_("header"),
1959 N_("add email header"), header_callback
),
1960 OPT_CALLBACK(0, "to", NULL
, N_("email"), N_("add To: header"), to_callback
),
1961 OPT_CALLBACK(0, "cc", NULL
, N_("email"), N_("add Cc: header"), cc_callback
),
1962 OPT_CALLBACK_F(0, "from", &from
, N_("ident"),
1963 N_("set From address to <ident> (or committer ident if absent)"),
1964 PARSE_OPT_OPTARG
, from_callback
),
1965 OPT_STRING(0, "in-reply-to", &in_reply_to
, N_("message-id"),
1966 N_("make first mail a reply to <message-id>")),
1967 OPT_CALLBACK_F(0, "attach", &rev
, N_("boundary"),
1968 N_("attach the patch"), PARSE_OPT_OPTARG
,
1970 OPT_CALLBACK_F(0, "inline", &rev
, N_("boundary"),
1971 N_("inline the patch"),
1972 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
,
1974 OPT_CALLBACK_F(0, "thread", &thread
, N_("style"),
1975 N_("enable message threading, styles: shallow, deep"),
1976 PARSE_OPT_OPTARG
, thread_callback
),
1977 OPT_STRING(0, "signature", &signature
, N_("signature"),
1978 N_("add a signature")),
1979 OPT_CALLBACK_F(0, "base", &base_commit
, N_("base-commit"),
1980 N_("add prerequisite tree info to the patch series"),
1982 OPT_FILENAME(0, "signature-file", &signature_file
,
1983 N_("add a signature from a file")),
1984 OPT__QUIET(&quiet
, N_("don't print the patch filenames")),
1985 OPT_BOOL(0, "progress", &show_progress
,
1986 N_("show progress while generating patches")),
1987 OPT_CALLBACK(0, "interdiff", &idiff_prev
, N_("rev"),
1988 N_("show changes against <rev> in cover letter or single patch"),
1989 parse_opt_object_name
),
1990 OPT_STRING(0, "range-diff", &rdiff_prev
, N_("refspec"),
1991 N_("show changes against <refspec> in cover letter or single patch")),
1992 OPT_INTEGER(0, "creation-factor", &creation_factor
,
1993 N_("percentage by which creation is weighted")),
1994 OPT_BOOL(0, "force-in-body-from", &force_in_body_from
,
1995 N_("show in-body From: even if identical to the e-mail header")),
1999 extra_hdr
.strdup_strings
= 1;
2000 extra_to
.strdup_strings
= 1;
2001 extra_cc
.strdup_strings
= 1;
2003 init_log_defaults();
2004 init_display_notes(¬es_opt
);
2005 git_config(git_format_config
, NULL
);
2006 repo_init_revisions(the_repository
, &rev
, prefix
);
2007 git_config(grep_config
, &rev
.grep_filter
);
2009 rev
.show_notes
= show_notes
;
2010 memcpy(&rev
.notes_opt
, ¬es_opt
, sizeof(notes_opt
));
2011 rev
.commit_format
= CMIT_FMT_EMAIL
;
2012 rev
.encode_email_headers
= default_encode_email_headers
;
2013 rev
.expand_tabs_in_log_default
= 0;
2014 rev
.verbose_header
= 1;
2016 rev
.max_parents
= 1;
2017 rev
.diffopt
.flags
.recursive
= 1;
2018 rev
.diffopt
.no_free
= 1;
2019 rev
.subject_prefix
= fmt_patch_subject_prefix
;
2020 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
2021 s_r_opt
.def
= "HEAD";
2022 s_r_opt
.revarg_opt
= REVARG_COMMITTISH
;
2024 if (format_no_prefix
)
2025 diff_set_noprefix(&rev
.diffopt
);
2027 if (default_attach
) {
2028 rev
.mime_boundary
= default_attach
;
2033 * Parse the arguments before setup_revisions(), or something
2034 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
2035 * possibly a valid SHA1.
2037 argc
= parse_options(argc
, argv
, prefix
, builtin_format_patch_options
,
2038 builtin_format_patch_usage
,
2039 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN_OPT
|
2040 PARSE_OPT_KEEP_DASHDASH
);
2042 rev
.force_in_body_from
= force_in_body_from
;
2044 /* Make sure "0000-$sub.patch" gives non-negative length for $sub */
2045 if (fmt_patch_name_max
<= strlen("0000-") + strlen(fmt_patch_suffix
))
2046 fmt_patch_name_max
= strlen("0000-") + strlen(fmt_patch_suffix
);
2048 if (cover_from_description_arg
)
2049 cover_from_description_mode
= parse_cover_from_description(cover_from_description_arg
);
2052 strbuf_addf(&sprefix
, "%s v%s",
2053 rev
.subject_prefix
, reroll_count
);
2054 rev
.reroll_count
= reroll_count
;
2055 rev
.subject_prefix
= sprefix
.buf
;
2058 for (i
= 0; i
< extra_hdr
.nr
; i
++) {
2059 strbuf_addstr(&buf
, extra_hdr
.items
[i
].string
);
2060 strbuf_addch(&buf
, '\n');
2064 strbuf_addstr(&buf
, "To: ");
2065 for (i
= 0; i
< extra_to
.nr
; i
++) {
2067 strbuf_addstr(&buf
, " ");
2068 strbuf_addstr(&buf
, extra_to
.items
[i
].string
);
2069 if (i
+ 1 < extra_to
.nr
)
2070 strbuf_addch(&buf
, ',');
2071 strbuf_addch(&buf
, '\n');
2075 strbuf_addstr(&buf
, "Cc: ");
2076 for (i
= 0; i
< extra_cc
.nr
; i
++) {
2078 strbuf_addstr(&buf
, " ");
2079 strbuf_addstr(&buf
, extra_cc
.items
[i
].string
);
2080 if (i
+ 1 < extra_cc
.nr
)
2081 strbuf_addch(&buf
, ',');
2082 strbuf_addch(&buf
, '\n');
2085 rev
.extra_headers
= to_free
= strbuf_detach(&buf
, NULL
);
2088 if (split_ident_line(&rev
.from_ident
, from
, strlen(from
)))
2089 die(_("invalid ident line: %s"), from
);
2092 if (start_number
< 0)
2096 * If numbered is set solely due to format.numbered in config,
2097 * and it would conflict with --keep-subject (-k) from the
2098 * command line, reset "numbered".
2100 if (numbered
&& keep_subject
&& !numbered_cmdline_opt
)
2103 if (numbered
&& keep_subject
)
2104 die(_("options '%s' and '%s' cannot be used together"), "-n", "-k");
2105 if (keep_subject
&& subject_prefix
)
2106 die(_("options '%s' and '%s' cannot be used together"), "--subject-prefix/--rfc", "-k");
2107 rev
.preserve_subject
= keep_subject
;
2109 argc
= setup_revisions(argc
, argv
, &rev
, &s_r_opt
);
2111 die(_("unrecognized argument: %s"), argv
[1]);
2113 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME
)
2114 die(_("--name-only does not make sense"));
2115 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME_STATUS
)
2116 die(_("--name-status does not make sense"));
2117 if (rev
.diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
)
2118 die(_("--check does not make sense"));
2119 if (rev
.remerge_diff
)
2120 die(_("--remerge-diff does not make sense"));
2122 if (!use_patch_format
&&
2123 (!rev
.diffopt
.output_format
||
2124 rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
))
2125 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
;
2126 if (!rev
.diffopt
.stat_width
)
2127 rev
.diffopt
.stat_width
= MAIL_DEFAULT_WRAP
;
2129 /* Always generate a patch */
2130 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
2131 rev
.always_show_header
= 1;
2133 rev
.zero_commit
= zero_commit
;
2134 rev
.patch_name_max
= fmt_patch_name_max
;
2136 if (!rev
.diffopt
.flags
.text
&& !no_binary_diff
)
2137 rev
.diffopt
.flags
.binary
= 1;
2140 load_display_notes(&rev
.notes_opt
);
2142 die_for_incompatible_opt3(use_stdout
, "--stdout",
2143 rev
.diffopt
.close_file
, "--output",
2144 !!output_directory
, "--output-directory");
2146 if (use_stdout
&& stdout_mboxrd
)
2147 rev
.commit_format
= CMIT_FMT_MBOXRD
;
2151 } else if (!rev
.diffopt
.close_file
) {
2154 if (!output_directory
)
2155 output_directory
= config_output_directory
;
2156 output_directory
= set_outdir(prefix
, output_directory
);
2158 if (rev
.diffopt
.use_color
!= GIT_COLOR_ALWAYS
)
2159 rev
.diffopt
.use_color
= GIT_COLOR_NEVER
;
2161 * We consider <outdir> as 'outside of gitdir', therefore avoid
2162 * applying adjust_shared_perm in s-c-l-d.
2164 saved
= get_shared_repository();
2165 set_shared_repository(0);
2166 switch (safe_create_leading_directories_const(output_directory
)) {
2171 die(_("could not create leading directories "
2172 "of '%s'"), output_directory
);
2174 set_shared_repository(saved
);
2175 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
2176 die_errno(_("could not create directory '%s'"),
2180 if (rev
.pending
.nr
== 1) {
2183 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
2185 * This is traditional behaviour of "git format-patch
2186 * origin" that prepares what the origin side still
2189 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
2190 add_head_to_pending(&rev
);
2194 * Otherwise, it is "format-patch -22 HEAD", and/or
2195 * "format-patch --root HEAD". The user wants
2196 * get_revision() to do the usual traversal.
2199 if (!strcmp(rev
.pending
.objects
[0].name
, "HEAD"))
2203 const char *ref
, *v
;
2204 ref
= resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
,
2206 if (ref
&& skip_prefix(ref
, "refs/heads/", &v
))
2207 branch_name
= xstrdup(v
);
2209 branch_name
= xstrdup(""); /* no branch */
2214 * We cannot move this anywhere earlier because we do want to
2215 * know if --root was given explicitly from the command line.
2217 rev
.show_root_diff
= 1;
2219 if (ignore_if_in_upstream
) {
2220 /* Don't say anything if head and upstream are the same. */
2221 if (rev
.pending
.nr
== 2) {
2222 struct object_array_entry
*o
= rev
.pending
.objects
;
2223 if (oideq(&o
[0].item
->oid
, &o
[1].item
->oid
))
2226 get_patch_ids(&rev
, &ids
);
2229 if (prepare_revision_walk(&rev
))
2230 die(_("revision walk setup failed"));
2232 while ((commit
= get_revision(&rev
)) != NULL
) {
2233 if (commit
->object
.flags
& BOUNDARY
) {
2235 origin
= (boundary_count
== 1) ? commit
: NULL
;
2239 if (ignore_if_in_upstream
&& has_commit_patch_id(commit
, &ids
))
2243 REALLOC_ARRAY(list
, nr
);
2244 list
[nr
- 1] = commit
;
2250 if (cover_letter
== -1) {
2251 if (config_cover_letter
== COVER_AUTO
)
2252 cover_letter
= (total
> 1);
2254 cover_letter
= (config_cover_letter
== COVER_ON
);
2256 if (!keep_subject
&& auto_number
&& (total
> 1 || cover_letter
))
2259 rev
.total
= total
+ start_number
- 1;
2261 if (idiff_prev
.nr
) {
2262 if (!cover_letter
&& total
!= 1)
2263 die(_("--interdiff requires --cover-letter or single patch"));
2264 rev
.idiff_oid1
= &idiff_prev
.oid
[idiff_prev
.nr
- 1];
2265 rev
.idiff_oid2
= get_commit_tree_oid(list
[0]);
2266 rev
.idiff_title
= diff_title(&idiff_title
, reroll_count
,
2268 _("Interdiff against v%d:"));
2271 if (creation_factor
< 0)
2272 creation_factor
= RANGE_DIFF_CREATION_FACTOR_DEFAULT
;
2273 else if (!rdiff_prev
)
2274 die(_("the option '%s' requires '%s'"), "--creation-factor", "--range-diff");
2277 if (!cover_letter
&& total
!= 1)
2278 die(_("--range-diff requires --cover-letter or single patch"));
2280 infer_range_diff_ranges(&rdiff1
, &rdiff2
, rdiff_prev
,
2282 rev
.rdiff1
= rdiff1
.buf
;
2283 rev
.rdiff2
= rdiff2
.buf
;
2284 rev
.creation_factor
= creation_factor
;
2285 rev
.rdiff_title
= diff_title(&rdiff_title
, reroll_count
,
2287 _("Range-diff against v%d:"));
2291 ; /* --no-signature inhibits all signatures */
2292 } else if (signature
&& signature
!= git_version_string
) {
2293 ; /* non-default signature already set */
2294 } else if (signature_file
) {
2295 struct strbuf buf
= STRBUF_INIT
;
2297 if (strbuf_read_file(&buf
, signature_file
, 128) < 0)
2298 die_errno(_("unable to read signature file '%s'"), signature_file
);
2299 signature
= strbuf_detach(&buf
, NULL
);
2302 memset(&bases
, 0, sizeof(bases
));
2303 base
= get_base_commit(base_commit
, list
, nr
);
2305 reset_revision_walk();
2306 clear_object_flags(UNINTERESTING
);
2307 prepare_bases(&bases
, base
, list
, nr
);
2310 if (in_reply_to
|| thread
|| cover_letter
) {
2311 rev
.ref_message_ids
= xmalloc(sizeof(*rev
.ref_message_ids
));
2312 string_list_init_dup(rev
.ref_message_ids
);
2315 char *msgid
= clean_message_id(in_reply_to
);
2316 string_list_append_nodup(rev
.ref_message_ids
, msgid
);
2318 rev
.numbered_files
= just_numbers
;
2319 rev
.patch_suffix
= fmt_patch_suffix
;
2322 gen_message_id(&rev
, "cover");
2323 make_cover_letter(&rev
, !!output_directory
,
2324 origin
, nr
, list
, branch_name
, quiet
);
2325 print_bases(&bases
, rev
.diffopt
.file
);
2326 print_signature(rev
.diffopt
.file
);
2329 /* interdiff/range-diff in cover-letter; omit from patches */
2330 rev
.idiff_oid1
= NULL
;
2333 rev
.add_signoff
= do_signoff
;
2336 progress
= start_delayed_progress(_("Generating patches"), total
);
2339 display_progress(progress
, total
- nr
);
2341 rev
.nr
= total
- nr
+ (start_number
- 1);
2342 /* Make the second and subsequent mails replies to the first */
2344 /* Have we already had a message ID? */
2345 if (rev
.message_id
) {
2347 * For deep threading: make every mail
2348 * a reply to the previous one, no
2349 * matter what other options are set.
2351 * For shallow threading:
2353 * Without --cover-letter and
2354 * --in-reply-to, make every mail a
2355 * reply to the one before.
2357 * With --in-reply-to but no
2358 * --cover-letter, make every mail a
2359 * reply to the <reply-to>.
2361 * With --cover-letter, make every
2362 * mail but the cover letter a reply
2363 * to the cover letter. The cover
2364 * letter is a reply to the
2365 * --in-reply-to, if specified.
2367 if (thread
== THREAD_SHALLOW
2368 && rev
.ref_message_ids
->nr
> 0
2369 && (!cover_letter
|| rev
.nr
> 1))
2370 free(rev
.message_id
);
2372 string_list_append_nodup(rev
.ref_message_ids
,
2375 gen_message_id(&rev
, oid_to_hex(&commit
->object
.oid
));
2378 if (output_directory
&&
2379 open_next_file(rev
.numbered_files
? NULL
: commit
, NULL
, &rev
, quiet
))
2380 die(_("failed to create output files"));
2381 shown
= log_tree_commit(&rev
, commit
);
2382 free_commit_buffer(the_repository
->parsed_objects
,
2385 /* We put one extra blank line between formatted
2386 * patches and this flag is used by log-tree code
2387 * to see if it needs to emit a LF before showing
2388 * the log; when using one file per patch, we do
2389 * not want the extra blank line.
2391 if (output_directory
)
2394 print_bases(&bases
, rev
.diffopt
.file
);
2395 if (rev
.mime_boundary
)
2396 fprintf(rev
.diffopt
.file
, "\n--%s%s--\n\n\n",
2397 mime_boundary_leader
,
2400 print_signature(rev
.diffopt
.file
);
2402 if (output_directory
)
2403 fclose(rev
.diffopt
.file
);
2405 stop_progress(&progress
);
2408 string_list_clear(&extra_to
, 0);
2409 string_list_clear(&extra_cc
, 0);
2410 string_list_clear(&extra_hdr
, 0);
2411 if (ignore_if_in_upstream
)
2412 free_patch_ids(&ids
);
2415 oid_array_clear(&idiff_prev
);
2416 strbuf_release(&idiff_title
);
2417 strbuf_release(&rdiff1
);
2418 strbuf_release(&rdiff2
);
2419 strbuf_release(&rdiff_title
);
2420 strbuf_release(&sprefix
);
2422 free(rev
.message_id
);
2423 if (rev
.ref_message_ids
)
2424 string_list_clear(rev
.ref_message_ids
, 0);
2425 free(rev
.ref_message_ids
);
2426 return cmd_log_deinit(0, &rev
);
2429 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
2431 struct object_id oid
;
2432 if (repo_get_oid(the_repository
, arg
, &oid
) == 0) {
2433 struct commit
*commit
= lookup_commit_reference(the_repository
,
2436 commit
->object
.flags
|= flags
;
2437 add_pending_object(revs
, &commit
->object
, arg
);
2444 static const char * const cherry_usage
[] = {
2445 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
2449 static void print_commit(char sign
, struct commit
*commit
, int verbose
,
2450 int abbrev
, FILE *file
)
2453 fprintf(file
, "%c %s\n", sign
,
2454 repo_find_unique_abbrev(the_repository
, &commit
->object
.oid
, abbrev
));
2456 struct strbuf buf
= STRBUF_INIT
;
2457 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &buf
);
2458 fprintf(file
, "%c %s %s\n", sign
,
2459 repo_find_unique_abbrev(the_repository
, &commit
->object
.oid
, abbrev
),
2461 strbuf_release(&buf
);
2465 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
2467 struct rev_info revs
;
2468 struct patch_ids ids
;
2469 struct commit
*commit
;
2470 struct commit_list
*list
= NULL
;
2471 struct branch
*current_branch
;
2472 const char *upstream
;
2473 const char *head
= "HEAD";
2474 const char *limit
= NULL
;
2475 int verbose
= 0, abbrev
= 0;
2477 struct option options
[] = {
2478 OPT__ABBREV(&abbrev
),
2479 OPT__VERBOSE(&verbose
, N_("be verbose")),
2483 argc
= parse_options(argc
, argv
, prefix
, options
, cherry_usage
, 0);
2496 current_branch
= branch_get(NULL
);
2497 upstream
= branch_get_upstream(current_branch
, NULL
);
2499 fprintf(stderr
, _("Could not find a tracked"
2500 " remote branch, please"
2501 " specify <upstream> manually.\n"));
2502 usage_with_options(cherry_usage
, options
);
2506 repo_init_revisions(the_repository
, &revs
, prefix
);
2507 revs
.max_parents
= 1;
2509 if (add_pending_commit(head
, &revs
, 0))
2510 die(_("unknown commit %s"), head
);
2511 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
2512 die(_("unknown commit %s"), upstream
);
2514 /* Don't say anything if head and upstream are the same. */
2515 if (revs
.pending
.nr
== 2) {
2516 struct object_array_entry
*o
= revs
.pending
.objects
;
2517 if (oideq(&o
[0].item
->oid
, &o
[1].item
->oid
))
2521 get_patch_ids(&revs
, &ids
);
2523 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
2524 die(_("unknown commit %s"), limit
);
2526 /* reverse the list of commits */
2527 if (prepare_revision_walk(&revs
))
2528 die(_("revision walk setup failed"));
2529 while ((commit
= get_revision(&revs
)) != NULL
) {
2530 commit_list_insert(commit
, &list
);
2536 commit
= list
->item
;
2537 if (has_commit_patch_id(commit
, &ids
))
2539 print_commit(sign
, commit
, verbose
, abbrev
, revs
.diffopt
.file
);
2543 free_patch_ids(&ids
);