2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
7 #define USE_THE_INDEX_COMPATIBILITY_MACROS
11 #include "object-store.h"
19 #include "reflog-walk.h"
20 #include "patch-ids.h"
21 #include "run-command.h"
24 #include "string-list.h"
25 #include "parse-options.h"
28 #include "streaming.h"
31 #include "gpg-interface.h"
33 #include "commit-slab.h"
34 #include "repository.h"
35 #include "commit-reach.h"
36 #include "interdiff.h"
37 #include "range-diff.h"
39 #define MAIL_DEFAULT_WRAP 72
41 /* Set a default date-time format for git log ("log.date" config variable) */
42 static const char *default_date_mode
= NULL
;
44 static int default_abbrev_commit
;
45 static int default_show_root
= 1;
46 static int default_follow
;
47 static int default_show_signature
;
48 static int decoration_style
;
49 static int decoration_given
;
50 static int use_mailmap_config
;
51 static const char *fmt_patch_subject_prefix
= "PATCH";
52 static const char *fmt_pretty
;
54 static const char * const builtin_log_usage
[] = {
55 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
56 N_("git show [<options>] <object>..."),
60 struct line_opt_callback_data
{
63 struct string_list args
;
66 static int auto_decoration_style(void)
68 return (isatty(1) || pager_in_use()) ? DECORATE_SHORT_REFS
: 0;
71 static int parse_decoration_style(const char *value
)
73 switch (git_parse_maybe_bool(value
)) {
75 return DECORATE_SHORT_REFS
;
81 if (!strcmp(value
, "full"))
82 return DECORATE_FULL_REFS
;
83 else if (!strcmp(value
, "short"))
84 return DECORATE_SHORT_REFS
;
85 else if (!strcmp(value
, "auto"))
86 return auto_decoration_style();
88 * Please update _git_log() in git-completion.bash when you
89 * add new decoration styles.
94 static int decorate_callback(const struct option
*opt
, const char *arg
, int unset
)
99 decoration_style
= parse_decoration_style(arg
);
101 decoration_style
= DECORATE_SHORT_REFS
;
103 if (decoration_style
< 0)
104 die(_("invalid --decorate option: %s"), arg
);
106 decoration_given
= 1;
111 static int log_line_range_callback(const struct option
*option
, const char *arg
, int unset
)
113 struct line_opt_callback_data
*data
= option
->value
;
115 BUG_ON_OPT_NEG(unset
);
120 data
->rev
->line_level_traverse
= 1;
121 string_list_append(&data
->args
, arg
);
126 static void init_log_defaults(void)
128 init_grep_defaults(the_repository
);
129 init_diff_ui_defaults();
131 decoration_style
= auto_decoration_style();
134 static void cmd_log_init_defaults(struct rev_info
*rev
)
137 get_commit_format(fmt_pretty
, rev
);
139 rev
->diffopt
.flags
.default_follow_renames
= 1;
140 rev
->verbose_header
= 1;
141 rev
->diffopt
.flags
.recursive
= 1;
142 rev
->diffopt
.stat_width
= -1; /* use full terminal width */
143 rev
->diffopt
.stat_graph_width
= -1; /* respect statGraphWidth config */
144 rev
->abbrev_commit
= default_abbrev_commit
;
145 rev
->show_root_diff
= default_show_root
;
146 rev
->subject_prefix
= fmt_patch_subject_prefix
;
147 rev
->show_signature
= default_show_signature
;
148 rev
->diffopt
.flags
.allow_textconv
= 1;
150 if (default_date_mode
)
151 parse_date_format(default_date_mode
, &rev
->date_mode
);
154 static void cmd_log_init_finish(int argc
, const char **argv
, const char *prefix
,
155 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
157 struct userformat_want w
;
158 int quiet
= 0, source
= 0, mailmap
= 0;
159 static struct line_opt_callback_data line_cb
= {NULL
, NULL
, STRING_LIST_INIT_DUP
};
160 static struct string_list decorate_refs_exclude
= STRING_LIST_INIT_NODUP
;
161 static struct string_list decorate_refs_include
= STRING_LIST_INIT_NODUP
;
162 struct decoration_filter decoration_filter
= {&decorate_refs_include
,
163 &decorate_refs_exclude
};
164 static struct revision_sources revision_sources
;
166 const struct option builtin_log_options
[] = {
167 OPT__QUIET(&quiet
, N_("suppress diff output")),
168 OPT_BOOL(0, "source", &source
, N_("show source")),
169 OPT_BOOL(0, "use-mailmap", &mailmap
, N_("Use mail map file")),
170 OPT_STRING_LIST(0, "decorate-refs", &decorate_refs_include
,
171 N_("pattern"), N_("only decorate refs that match <pattern>")),
172 OPT_STRING_LIST(0, "decorate-refs-exclude", &decorate_refs_exclude
,
173 N_("pattern"), N_("do not decorate refs that match <pattern>")),
174 { OPTION_CALLBACK
, 0, "decorate", NULL
, NULL
, N_("decorate options"),
175 PARSE_OPT_OPTARG
, decorate_callback
},
176 OPT_CALLBACK('L', NULL
, &line_cb
, "n,m:file",
177 N_("Process line range n,m in file, counting from 1"),
178 log_line_range_callback
),
183 line_cb
.prefix
= prefix
;
185 mailmap
= use_mailmap_config
;
186 argc
= parse_options(argc
, argv
, prefix
,
187 builtin_log_options
, builtin_log_usage
,
188 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
189 PARSE_OPT_KEEP_DASHDASH
);
192 rev
->diffopt
.output_format
|= DIFF_FORMAT_NO_OUTPUT
;
193 argc
= setup_revisions(argc
, argv
, rev
, opt
);
195 /* Any arguments at this point are not recognized */
197 die(_("unrecognized argument: %s"), argv
[1]);
199 memset(&w
, 0, sizeof(w
));
200 userformat_find_requirements(NULL
, &w
);
202 if (!rev
->show_notes_given
&& (!rev
->pretty_given
|| w
.notes
))
205 init_display_notes(&rev
->notes_opt
);
207 if ((rev
->diffopt
.pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
) ||
208 rev
->diffopt
.filter
|| rev
->diffopt
.flags
.follow_renames
)
209 rev
->always_show_header
= 0;
211 if (source
|| w
.source
) {
212 init_revision_sources(&revision_sources
);
213 rev
->sources
= &revision_sources
;
217 rev
->mailmap
= xcalloc(1, sizeof(struct string_list
));
218 read_mailmap(rev
->mailmap
, NULL
);
221 if (rev
->pretty_given
&& rev
->commit_format
== CMIT_FMT_RAW
) {
223 * "log --pretty=raw" is special; ignore UI oriented
224 * configuration variables such as decoration.
226 if (!decoration_given
)
227 decoration_style
= 0;
228 if (!rev
->abbrev_commit_given
)
229 rev
->abbrev_commit
= 0;
232 if (decoration_style
) {
233 rev
->show_decorations
= 1;
234 load_ref_decorations(&decoration_filter
, decoration_style
);
237 if (rev
->line_level_traverse
)
238 line_log_init(rev
, line_cb
.prefix
, &line_cb
.args
);
243 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
244 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
246 cmd_log_init_defaults(rev
);
247 cmd_log_init_finish(argc
, argv
, prefix
, rev
, opt
);
251 * This gives a rough estimate for how many commits we
252 * will print out in the list.
254 static int estimate_commit_count(struct commit_list
*list
)
259 struct commit
*commit
= list
->item
;
260 unsigned int flags
= commit
->object
.flags
;
262 if (!(flags
& (TREESAME
| UNINTERESTING
)))
268 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
270 if (rev
->shown_one
) {
272 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
273 putchar(rev
->diffopt
.line_termination
);
275 fprintf(rev
->diffopt
.file
, _("Final output: %d %s\n"), nr
, stage
);
278 static struct itimerval early_output_timer
;
280 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
282 int i
= revs
->early_output
, close_file
= revs
->diffopt
.close_file
;
285 revs
->diffopt
.close_file
= 0;
286 sort_in_topological_order(&list
, revs
->sort_order
);
288 struct commit
*commit
= list
->item
;
289 switch (simplify_commit(revs
, commit
)) {
292 int n
= estimate_commit_count(list
);
293 show_early_header(revs
, "incomplete", n
);
296 log_tree_commit(revs
, commit
);
303 fclose(revs
->diffopt
.file
);
309 /* Did we already get enough commits for the early output? */
312 fclose(revs
->diffopt
.file
);
317 * ..if no, then repeat it twice a second until we
320 * NOTE! We don't use "it_interval", because if the
321 * reader isn't listening, we want our output to be
322 * throttled by the writing, and not have the timer
323 * trigger every second even if we're blocked on a
326 early_output_timer
.it_value
.tv_sec
= 0;
327 early_output_timer
.it_value
.tv_usec
= 500000;
328 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
331 static void early_output(int signal
)
333 show_early_output
= log_show_early
;
336 static void setup_early_output(void)
341 * Set up the signal handler, minimally intrusively:
342 * we only set a single volatile integer word (not
343 * using sigatomic_t - trying to avoid unnecessary
344 * system dependencies and headers), and using
347 memset(&sa
, 0, sizeof(sa
));
348 sa
.sa_handler
= early_output
;
349 sigemptyset(&sa
.sa_mask
);
350 sa
.sa_flags
= SA_RESTART
;
351 sigaction(SIGALRM
, &sa
, NULL
);
354 * If we can get the whole output in less than a
355 * tenth of a second, don't even bother doing the
356 * early-output thing..
358 * This is a one-time-only trigger.
360 early_output_timer
.it_value
.tv_sec
= 0;
361 early_output_timer
.it_value
.tv_usec
= 100000;
362 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
365 static void finish_early_output(struct rev_info
*rev
)
367 int n
= estimate_commit_count(rev
->commits
);
368 signal(SIGALRM
, SIG_IGN
);
369 show_early_header(rev
, "done", n
);
372 static int cmd_log_walk(struct rev_info
*rev
)
374 struct commit
*commit
;
376 int saved_dcctc
= 0, close_file
= rev
->diffopt
.close_file
;
378 if (rev
->early_output
)
379 setup_early_output();
381 if (prepare_revision_walk(rev
))
382 die(_("revision walk setup failed"));
384 if (rev
->early_output
)
385 finish_early_output(rev
);
388 * For --check and --exit-code, the exit code is based on CHECK_FAILED
389 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
390 * retain that state information if replacing rev->diffopt in this loop
392 rev
->diffopt
.close_file
= 0;
393 while ((commit
= get_revision(rev
)) != NULL
) {
394 if (!log_tree_commit(rev
, commit
) && rev
->max_count
>= 0)
396 * We decremented max_count in get_revision,
397 * but we didn't actually show the commit.
400 if (!rev
->reflog_info
) {
402 * We may show a given commit multiple times when
403 * walking the reflogs.
405 free_commit_buffer(the_repository
->parsed_objects
,
407 free_commit_list(commit
->parents
);
408 commit
->parents
= NULL
;
410 if (saved_nrl
< rev
->diffopt
.needed_rename_limit
)
411 saved_nrl
= rev
->diffopt
.needed_rename_limit
;
412 if (rev
->diffopt
.degraded_cc_to_c
)
415 rev
->diffopt
.degraded_cc_to_c
= saved_dcctc
;
416 rev
->diffopt
.needed_rename_limit
= saved_nrl
;
418 fclose(rev
->diffopt
.file
);
420 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
421 rev
->diffopt
.flags
.check_failed
) {
424 return diff_result_code(&rev
->diffopt
, 0);
427 static int git_log_config(const char *var
, const char *value
, void *cb
)
429 const char *slot_name
;
431 if (!strcmp(var
, "format.pretty"))
432 return git_config_string(&fmt_pretty
, var
, value
);
433 if (!strcmp(var
, "format.subjectprefix"))
434 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
435 if (!strcmp(var
, "log.abbrevcommit")) {
436 default_abbrev_commit
= git_config_bool(var
, value
);
439 if (!strcmp(var
, "log.date"))
440 return git_config_string(&default_date_mode
, var
, value
);
441 if (!strcmp(var
, "log.decorate")) {
442 decoration_style
= parse_decoration_style(value
);
443 if (decoration_style
< 0)
444 decoration_style
= 0; /* maybe warn? */
447 if (!strcmp(var
, "log.showroot")) {
448 default_show_root
= git_config_bool(var
, value
);
451 if (!strcmp(var
, "log.follow")) {
452 default_follow
= git_config_bool(var
, value
);
455 if (skip_prefix(var
, "color.decorate.", &slot_name
))
456 return parse_decorate_color_config(var
, slot_name
, value
);
457 if (!strcmp(var
, "log.mailmap")) {
458 use_mailmap_config
= git_config_bool(var
, value
);
461 if (!strcmp(var
, "log.showsignature")) {
462 default_show_signature
= git_config_bool(var
, value
);
466 if (grep_config(var
, value
, cb
) < 0)
468 if (git_gpg_config(var
, value
, cb
) < 0)
470 return git_diff_ui_config(var
, value
, cb
);
473 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
476 struct setup_revision_opt opt
;
479 git_config(git_log_config
, NULL
);
481 repo_init_revisions(the_repository
, &rev
, prefix
);
483 rev
.simplify_history
= 0;
484 memset(&opt
, 0, sizeof(opt
));
486 opt
.revarg_opt
= REVARG_COMMITTISH
;
487 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
488 if (!rev
.diffopt
.output_format
)
489 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
490 return cmd_log_walk(&rev
);
493 static void show_tagger(const char *buf
, struct rev_info
*rev
)
495 struct strbuf out
= STRBUF_INIT
;
496 struct pretty_print_context pp
= {0};
498 pp
.fmt
= rev
->commit_format
;
499 pp
.date_mode
= rev
->date_mode
;
500 pp_user_info(&pp
, "Tagger", &out
, buf
, get_log_output_encoding());
501 fprintf(rev
->diffopt
.file
, "%s", out
.buf
);
502 strbuf_release(&out
);
505 static int show_blob_object(const struct object_id
*oid
, struct rev_info
*rev
, const char *obj_name
)
507 struct object_id oidc
;
508 struct object_context obj_context
;
512 fflush(rev
->diffopt
.file
);
513 if (!rev
->diffopt
.flags
.textconv_set_via_cmdline
||
514 !rev
->diffopt
.flags
.allow_textconv
)
515 return stream_blob_to_fd(1, oid
, NULL
, 0);
517 if (get_oid_with_context(the_repository
, obj_name
,
519 &oidc
, &obj_context
))
520 die(_("not a valid object name %s"), obj_name
);
521 if (!obj_context
.path
||
522 !textconv_object(the_repository
, obj_context
.path
,
523 obj_context
.mode
, &oidc
, 1, &buf
, &size
)) {
524 free(obj_context
.path
);
525 return stream_blob_to_fd(1, oid
, NULL
, 0);
529 die(_("git show %s: bad file"), obj_name
);
531 write_or_die(1, buf
, size
);
532 free(obj_context
.path
);
536 static int show_tag_object(const struct object_id
*oid
, struct rev_info
*rev
)
539 enum object_type type
;
540 char *buf
= read_object_file(oid
, &type
, &size
);
544 return error(_("could not read object %s"), oid_to_hex(oid
));
546 assert(type
== OBJ_TAG
);
547 while (offset
< size
&& buf
[offset
] != '\n') {
548 int new_offset
= offset
+ 1;
550 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
552 if (skip_prefix(buf
+ offset
, "tagger ", &ident
))
553 show_tagger(ident
, rev
);
558 fwrite(buf
+ offset
, size
- offset
, 1, rev
->diffopt
.file
);
563 static int show_tree_object(const struct object_id
*oid
,
565 const char *pathname
, unsigned mode
, int stage
, void *context
)
567 FILE *file
= context
;
568 fprintf(file
, "%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
572 static void show_setup_revisions_tweak(struct rev_info
*rev
,
573 struct setup_revision_opt
*opt
)
575 if (rev
->ignore_merges
) {
576 /* There was no "-m" on the command line */
577 rev
->ignore_merges
= 0;
578 if (!rev
->first_parent_only
&& !rev
->combine_merges
) {
579 /* No "--first-parent", "-c", or "--cc" */
580 rev
->combine_merges
= 1;
581 rev
->dense_combined_merges
= 1;
584 if (!rev
->diffopt
.output_format
)
585 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
588 int cmd_show(int argc
, const char **argv
, const char *prefix
)
591 struct object_array_entry
*objects
;
592 struct setup_revision_opt opt
;
593 struct pathspec match_all
;
594 int i
, count
, ret
= 0;
597 git_config(git_log_config
, NULL
);
599 memset(&match_all
, 0, sizeof(match_all
));
600 repo_init_revisions(the_repository
, &rev
, prefix
);
602 rev
.always_show_header
= 1;
603 rev
.no_walk
= REVISION_WALK_NO_WALK_SORTED
;
604 rev
.diffopt
.stat_width
= -1; /* Scale to real terminal size */
606 memset(&opt
, 0, sizeof(opt
));
608 opt
.tweak
= show_setup_revisions_tweak
;
609 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
612 return cmd_log_walk(&rev
);
614 count
= rev
.pending
.nr
;
615 objects
= rev
.pending
.objects
;
616 for (i
= 0; i
< count
&& !ret
; i
++) {
617 struct object
*o
= objects
[i
].item
;
618 const char *name
= objects
[i
].name
;
621 ret
= show_blob_object(&o
->oid
, &rev
, name
);
624 struct tag
*t
= (struct tag
*)o
;
628 fprintf(rev
.diffopt
.file
, "%stag %s%s\n",
629 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
631 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
632 ret
= show_tag_object(&o
->oid
, &rev
);
636 o
= parse_object(the_repository
, &t
->tagged
->oid
);
638 ret
= error(_("could not read object %s"),
639 oid_to_hex(&t
->tagged
->oid
));
647 fprintf(rev
.diffopt
.file
, "%stree %s%s\n\n",
648 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
650 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
651 read_tree_recursive(the_repository
, (struct tree
*)o
, "",
652 0, 0, &match_all
, show_tree_object
,
657 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
658 rev
.pending
.objects
= NULL
;
659 add_object_array(o
, name
, &rev
.pending
);
660 ret
= cmd_log_walk(&rev
);
663 ret
= error(_("unknown type: %d"), o
->type
);
671 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
673 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
676 struct setup_revision_opt opt
;
679 git_config(git_log_config
, NULL
);
681 repo_init_revisions(the_repository
, &rev
, prefix
);
682 init_reflog_walk(&rev
.reflog_info
);
683 rev
.verbose_header
= 1;
684 memset(&opt
, 0, sizeof(opt
));
686 cmd_log_init_defaults(&rev
);
687 rev
.abbrev_commit
= 1;
688 rev
.commit_format
= CMIT_FMT_ONELINE
;
689 rev
.use_terminator
= 1;
690 rev
.always_show_header
= 1;
691 cmd_log_init_finish(argc
, argv
, prefix
, &rev
, &opt
);
693 return cmd_log_walk(&rev
);
696 static void log_setup_revisions_tweak(struct rev_info
*rev
,
697 struct setup_revision_opt
*opt
)
699 if (rev
->diffopt
.flags
.default_follow_renames
&&
700 rev
->prune_data
.nr
== 1)
701 rev
->diffopt
.flags
.follow_renames
= 1;
703 /* Turn --cc/-c into -p --cc/-c when -p was not given */
704 if (!rev
->diffopt
.output_format
&& rev
->combine_merges
)
705 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
707 /* Turn -m on when --cc/-c was given */
708 if (rev
->combine_merges
)
709 rev
->ignore_merges
= 0;
712 int cmd_log(int argc
, const char **argv
, const char *prefix
)
715 struct setup_revision_opt opt
;
718 git_config(git_log_config
, NULL
);
720 repo_init_revisions(the_repository
, &rev
, prefix
);
721 rev
.always_show_header
= 1;
722 memset(&opt
, 0, sizeof(opt
));
724 opt
.revarg_opt
= REVARG_COMMITTISH
;
725 opt
.tweak
= log_setup_revisions_tweak
;
726 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
727 return cmd_log_walk(&rev
);
732 static const char *fmt_patch_suffix
= ".patch";
733 static int numbered
= 0;
734 static int auto_number
= 1;
736 static char *default_attach
= NULL
;
738 static struct string_list extra_hdr
= STRING_LIST_INIT_NODUP
;
739 static struct string_list extra_to
= STRING_LIST_INIT_NODUP
;
740 static struct string_list extra_cc
= STRING_LIST_INIT_NODUP
;
742 static void add_header(const char *value
)
744 struct string_list_item
*item
;
745 int len
= strlen(value
);
746 while (len
&& value
[len
- 1] == '\n')
749 if (!strncasecmp(value
, "to: ", 4)) {
750 item
= string_list_append(&extra_to
, value
+ 4);
752 } else if (!strncasecmp(value
, "cc: ", 4)) {
753 item
= string_list_append(&extra_cc
, value
+ 4);
756 item
= string_list_append(&extra_hdr
, value
);
759 item
->string
[len
] = '\0';
762 #define THREAD_SHALLOW 1
763 #define THREAD_DEEP 2
765 static int do_signoff
;
766 static int base_auto
;
768 static const char *signature
= git_version_string
;
769 static const char *signature_file
;
770 static int config_cover_letter
;
771 static const char *config_output_directory
;
780 static int git_format_config(const char *var
, const char *value
, void *cb
)
782 if (!strcmp(var
, "format.headers")) {
784 die(_("format.headers without value"));
788 if (!strcmp(var
, "format.suffix"))
789 return git_config_string(&fmt_patch_suffix
, var
, value
);
790 if (!strcmp(var
, "format.to")) {
792 return config_error_nonbool(var
);
793 string_list_append(&extra_to
, value
);
796 if (!strcmp(var
, "format.cc")) {
798 return config_error_nonbool(var
);
799 string_list_append(&extra_cc
, value
);
802 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff") ||
803 !strcmp(var
, "color.ui") || !strcmp(var
, "diff.submodule")) {
806 if (!strcmp(var
, "format.numbered")) {
807 if (value
&& !strcasecmp(value
, "auto")) {
811 numbered
= git_config_bool(var
, value
);
812 auto_number
= auto_number
&& numbered
;
815 if (!strcmp(var
, "format.attach")) {
817 default_attach
= xstrdup(value
);
819 default_attach
= xstrdup(git_version_string
);
822 if (!strcmp(var
, "format.thread")) {
823 if (value
&& !strcasecmp(value
, "deep")) {
824 thread
= THREAD_DEEP
;
827 if (value
&& !strcasecmp(value
, "shallow")) {
828 thread
= THREAD_SHALLOW
;
831 thread
= git_config_bool(var
, value
) && THREAD_SHALLOW
;
834 if (!strcmp(var
, "format.signoff")) {
835 do_signoff
= git_config_bool(var
, value
);
838 if (!strcmp(var
, "format.signature"))
839 return git_config_string(&signature
, var
, value
);
840 if (!strcmp(var
, "format.signaturefile"))
841 return git_config_pathname(&signature_file
, var
, value
);
842 if (!strcmp(var
, "format.coverletter")) {
843 if (value
&& !strcasecmp(value
, "auto")) {
844 config_cover_letter
= COVER_AUTO
;
847 config_cover_letter
= git_config_bool(var
, value
) ? COVER_ON
: COVER_OFF
;
850 if (!strcmp(var
, "format.outputdirectory"))
851 return git_config_string(&config_output_directory
, var
, value
);
852 if (!strcmp(var
, "format.useautobase")) {
853 base_auto
= git_config_bool(var
, value
);
856 if (!strcmp(var
, "format.from")) {
857 int b
= git_parse_maybe_bool(value
);
860 from
= xstrdup(value
);
862 from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
868 return git_log_config(var
, value
, cb
);
871 static const char *output_directory
= NULL
;
872 static int outdir_offset
;
874 static int open_next_file(struct commit
*commit
, const char *subject
,
875 struct rev_info
*rev
, int quiet
)
877 struct strbuf filename
= STRBUF_INIT
;
878 int suffix_len
= strlen(rev
->patch_suffix
) + 1;
880 if (output_directory
) {
881 strbuf_addstr(&filename
, output_directory
);
883 PATH_MAX
- FORMAT_PATCH_NAME_MAX
- suffix_len
) {
884 strbuf_release(&filename
);
885 return error(_("name of output directory is too long"));
887 strbuf_complete(&filename
, '/');
890 if (rev
->numbered_files
)
891 strbuf_addf(&filename
, "%d", rev
->nr
);
893 fmt_output_commit(&filename
, commit
, rev
);
895 fmt_output_subject(&filename
, subject
, rev
);
898 printf("%s\n", filename
.buf
+ outdir_offset
);
900 if ((rev
->diffopt
.file
= fopen(filename
.buf
, "w")) == NULL
) {
901 error_errno(_("cannot open patch file %s"), filename
.buf
);
902 strbuf_release(&filename
);
906 strbuf_release(&filename
);
910 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
)
912 struct rev_info check_rev
;
913 struct commit
*commit
, *c1
, *c2
;
914 struct object
*o1
, *o2
;
915 unsigned flags1
, flags2
;
917 if (rev
->pending
.nr
!= 2)
918 die(_("need exactly one range"));
920 o1
= rev
->pending
.objects
[0].item
;
921 o2
= rev
->pending
.objects
[1].item
;
924 c1
= lookup_commit_reference(the_repository
, &o1
->oid
);
925 c2
= lookup_commit_reference(the_repository
, &o2
->oid
);
927 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
928 die(_("not a range"));
930 init_patch_ids(the_repository
, ids
);
932 /* given a range a..b get all patch ids for b..a */
933 repo_init_revisions(the_repository
, &check_rev
, rev
->prefix
);
934 check_rev
.max_parents
= 1;
935 o1
->flags
^= UNINTERESTING
;
936 o2
->flags
^= UNINTERESTING
;
937 add_pending_object(&check_rev
, o1
, "o1");
938 add_pending_object(&check_rev
, o2
, "o2");
939 if (prepare_revision_walk(&check_rev
))
940 die(_("revision walk setup failed"));
942 while ((commit
= get_revision(&check_rev
)) != NULL
) {
943 add_commit_patch_id(commit
, ids
);
946 /* reset for next revision walk */
947 clear_commit_marks(c1
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
948 clear_commit_marks(c2
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
953 static void gen_message_id(struct rev_info
*info
, char *base
)
955 struct strbuf buf
= STRBUF_INIT
;
956 strbuf_addf(&buf
, "%s.%"PRItime
".git.%s", base
,
957 (timestamp_t
) time(NULL
),
958 git_committer_info(IDENT_NO_NAME
|IDENT_NO_DATE
|IDENT_STRICT
));
959 info
->message_id
= strbuf_detach(&buf
, NULL
);
962 static void print_signature(FILE *file
)
964 if (!signature
|| !*signature
)
967 fprintf(file
, "-- \n%s", signature
);
968 if (signature
[strlen(signature
)-1] != '\n')
973 static void add_branch_description(struct strbuf
*buf
, const char *branch_name
)
975 struct strbuf desc
= STRBUF_INIT
;
976 if (!branch_name
|| !*branch_name
)
978 read_branch_desc(&desc
, branch_name
);
980 strbuf_addch(buf
, '\n');
981 strbuf_addbuf(buf
, &desc
);
982 strbuf_addch(buf
, '\n');
984 strbuf_release(&desc
);
987 static char *find_branch_name(struct rev_info
*rev
)
989 int i
, positive
= -1;
990 struct object_id branch_oid
;
991 const struct object_id
*tip_oid
;
993 char *full_ref
, *branch
= NULL
;
995 for (i
= 0; i
< rev
->cmdline
.nr
; i
++) {
996 if (rev
->cmdline
.rev
[i
].flags
& UNINTERESTING
)
1005 ref
= rev
->cmdline
.rev
[positive
].name
;
1006 tip_oid
= &rev
->cmdline
.rev
[positive
].item
->oid
;
1007 if (dwim_ref(ref
, strlen(ref
), &branch_oid
, &full_ref
) &&
1008 skip_prefix(full_ref
, "refs/heads/", &v
) &&
1009 oideq(tip_oid
, &branch_oid
))
1010 branch
= xstrdup(v
);
1015 static void show_diffstat(struct rev_info
*rev
,
1016 struct commit
*origin
, struct commit
*head
)
1018 struct diff_options opts
;
1020 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
1021 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
1022 diff_setup_done(&opts
);
1024 diff_tree_oid(get_commit_tree_oid(origin
),
1025 get_commit_tree_oid(head
),
1027 diffcore_std(&opts
);
1030 fprintf(rev
->diffopt
.file
, "\n");
1033 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
1034 struct commit
*origin
,
1035 int nr
, struct commit
**list
,
1036 const char *branch_name
,
1039 const char *committer
;
1040 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
1042 struct shortlog log
;
1043 struct strbuf sb
= STRBUF_INIT
;
1045 const char *encoding
= "UTF-8";
1046 int need_8bit_cte
= 0;
1047 struct pretty_print_context pp
= {0};
1048 struct commit
*head
= list
[0];
1050 if (!cmit_fmt_is_mail(rev
->commit_format
))
1051 die(_("cover letter needs email format"));
1053 committer
= git_committer_info(0);
1056 open_next_file(NULL
, rev
->numbered_files
? NULL
: "cover-letter", rev
, quiet
))
1057 die(_("failed to create cover-letter file"));
1059 log_write_email_headers(rev
, head
, &pp
.after_subject
, &need_8bit_cte
, 0);
1061 for (i
= 0; !need_8bit_cte
&& i
< nr
; i
++) {
1062 const char *buf
= get_commit_buffer(list
[i
], NULL
);
1063 if (has_non_ascii(buf
))
1065 unuse_commit_buffer(list
[i
], buf
);
1069 branch_name
= find_branch_name(rev
);
1072 pp
.fmt
= CMIT_FMT_EMAIL
;
1073 pp
.date_mode
.type
= DATE_RFC2822
;
1075 pp
.print_email_subject
= 1;
1076 pp_user_info(&pp
, NULL
, &sb
, committer
, encoding
);
1077 pp_title_line(&pp
, &msg
, &sb
, encoding
, need_8bit_cte
);
1078 pp_remainder(&pp
, &msg
, &sb
, 0);
1079 add_branch_description(&sb
, branch_name
);
1080 fprintf(rev
->diffopt
.file
, "%s\n", sb
.buf
);
1082 strbuf_release(&sb
);
1084 shortlog_init(&log
);
1086 log
.wrap
= MAIL_DEFAULT_WRAP
;
1089 log
.file
= rev
->diffopt
.file
;
1090 for (i
= 0; i
< nr
; i
++)
1091 shortlog_add_commit(&log
, list
[i
]);
1093 shortlog_output(&log
);
1095 /* We can only do diffstat with a unique reference point */
1097 show_diffstat(rev
, origin
, head
);
1099 if (rev
->idiff_oid1
) {
1100 fprintf_ln(rev
->diffopt
.file
, "%s", rev
->idiff_title
);
1101 show_interdiff(rev
, 0);
1106 * Pass minimum required diff-options to range-diff; others
1107 * can be added later if deemed desirable.
1109 struct diff_options opts
;
1111 opts
.file
= rev
->diffopt
.file
;
1112 opts
.use_color
= rev
->diffopt
.use_color
;
1113 diff_setup_done(&opts
);
1114 fprintf_ln(rev
->diffopt
.file
, "%s", rev
->rdiff_title
);
1115 show_range_diff(rev
->rdiff1
, rev
->rdiff2
,
1116 rev
->creation_factor
, 1, &opts
);
1120 static const char *clean_message_id(const char *msg_id
)
1123 const char *a
, *z
, *m
;
1126 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
1131 if (!isspace(ch
) && (ch
!= '>'))
1136 die(_("insane in-reply-to: %s"), msg_id
);
1139 return xmemdupz(a
, z
- a
);
1142 static const char *set_outdir(const char *prefix
, const char *output_directory
)
1144 if (output_directory
&& is_absolute_path(output_directory
))
1145 return output_directory
;
1147 if (!prefix
|| !*prefix
) {
1148 if (output_directory
)
1149 return output_directory
;
1150 /* The user did not explicitly ask for "./" */
1155 outdir_offset
= strlen(prefix
);
1156 if (!output_directory
)
1159 return prefix_filename(prefix
, output_directory
);
1162 static const char * const builtin_format_patch_usage
[] = {
1163 N_("git format-patch [<options>] [<since> | <revision-range>]"),
1167 static int keep_subject
= 0;
1169 static int keep_callback(const struct option
*opt
, const char *arg
, int unset
)
1171 BUG_ON_OPT_NEG(unset
);
1172 BUG_ON_OPT_ARG(arg
);
1173 ((struct rev_info
*)opt
->value
)->total
= -1;
1178 static int subject_prefix
= 0;
1180 static int subject_prefix_callback(const struct option
*opt
, const char *arg
,
1183 BUG_ON_OPT_NEG(unset
);
1185 ((struct rev_info
*)opt
->value
)->subject_prefix
= arg
;
1189 static int rfc_callback(const struct option
*opt
, const char *arg
, int unset
)
1191 BUG_ON_OPT_NEG(unset
);
1192 BUG_ON_OPT_ARG(arg
);
1193 return subject_prefix_callback(opt
, "RFC PATCH", unset
);
1196 static int numbered_cmdline_opt
= 0;
1198 static int numbered_callback(const struct option
*opt
, const char *arg
,
1201 BUG_ON_OPT_ARG(arg
);
1202 *(int *)opt
->value
= numbered_cmdline_opt
= unset
? 0 : 1;
1208 static int no_numbered_callback(const struct option
*opt
, const char *arg
,
1211 BUG_ON_OPT_NEG(unset
);
1212 return numbered_callback(opt
, arg
, 1);
1215 static int output_directory_callback(const struct option
*opt
, const char *arg
,
1218 const char **dir
= (const char **)opt
->value
;
1219 BUG_ON_OPT_NEG(unset
);
1221 die(_("two output directories?"));
1226 static int thread_callback(const struct option
*opt
, const char *arg
, int unset
)
1228 int *thread
= (int *)opt
->value
;
1231 else if (!arg
|| !strcmp(arg
, "shallow"))
1232 *thread
= THREAD_SHALLOW
;
1233 else if (!strcmp(arg
, "deep"))
1234 *thread
= THREAD_DEEP
;
1236 * Please update _git_formatpatch() in git-completion.bash
1237 * when you add new options.
1244 static int attach_callback(const struct option
*opt
, const char *arg
, int unset
)
1246 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1248 rev
->mime_boundary
= NULL
;
1250 rev
->mime_boundary
= arg
;
1252 rev
->mime_boundary
= git_version_string
;
1253 rev
->no_inline
= unset
? 0 : 1;
1257 static int inline_callback(const struct option
*opt
, const char *arg
, int unset
)
1259 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1261 rev
->mime_boundary
= NULL
;
1263 rev
->mime_boundary
= arg
;
1265 rev
->mime_boundary
= git_version_string
;
1270 static int header_callback(const struct option
*opt
, const char *arg
, int unset
)
1273 string_list_clear(&extra_hdr
, 0);
1274 string_list_clear(&extra_to
, 0);
1275 string_list_clear(&extra_cc
, 0);
1282 static int to_callback(const struct option
*opt
, const char *arg
, int unset
)
1285 string_list_clear(&extra_to
, 0);
1287 string_list_append(&extra_to
, arg
);
1291 static int cc_callback(const struct option
*opt
, const char *arg
, int unset
)
1294 string_list_clear(&extra_cc
, 0);
1296 string_list_append(&extra_cc
, arg
);
1300 static int from_callback(const struct option
*opt
, const char *arg
, int unset
)
1302 char **from
= opt
->value
;
1309 *from
= xstrdup(arg
);
1311 *from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
1315 struct base_tree_info
{
1316 struct object_id base_commit
;
1317 int nr_patch_id
, alloc_patch_id
;
1318 struct object_id
*patch_id
;
1321 static struct commit
*get_base_commit(const char *base_commit
,
1322 struct commit
**list
,
1325 struct commit
*base
= NULL
;
1326 struct commit
**rev
;
1327 int i
= 0, rev_nr
= 0;
1329 if (base_commit
&& strcmp(base_commit
, "auto")) {
1330 base
= lookup_commit_reference_by_name(base_commit
);
1332 die(_("unknown commit %s"), base_commit
);
1333 } else if ((base_commit
&& !strcmp(base_commit
, "auto")) || base_auto
) {
1334 struct branch
*curr_branch
= branch_get(NULL
);
1335 const char *upstream
= branch_get_upstream(curr_branch
, NULL
);
1337 struct commit_list
*base_list
;
1338 struct commit
*commit
;
1339 struct object_id oid
;
1341 if (get_oid(upstream
, &oid
))
1342 die(_("failed to resolve '%s' as a valid ref"), upstream
);
1343 commit
= lookup_commit_or_die(&oid
, "upstream base");
1344 base_list
= get_merge_bases_many(commit
, total
, list
);
1345 /* There should be one and only one merge base. */
1346 if (!base_list
|| base_list
->next
)
1347 die(_("could not find exact merge base"));
1348 base
= base_list
->item
;
1349 free_commit_list(base_list
);
1351 die(_("failed to get upstream, if you want to record base commit automatically,\n"
1352 "please use git branch --set-upstream-to to track a remote branch.\n"
1353 "Or you could specify base commit by --base=<base-commit-id> manually"));
1357 ALLOC_ARRAY(rev
, total
);
1358 for (i
= 0; i
< total
; i
++)
1363 * Get merge base through pair-wise computations
1364 * and store it in rev[0].
1366 while (rev_nr
> 1) {
1367 for (i
= 0; i
< rev_nr
/ 2; i
++) {
1368 struct commit_list
*merge_base
;
1369 merge_base
= get_merge_bases(rev
[2 * i
], rev
[2 * i
+ 1]);
1370 if (!merge_base
|| merge_base
->next
)
1371 die(_("failed to find exact merge base"));
1373 rev
[i
] = merge_base
->item
;
1377 rev
[i
] = rev
[2 * i
];
1378 rev_nr
= DIV_ROUND_UP(rev_nr
, 2);
1381 if (!in_merge_bases(base
, rev
[0]))
1382 die(_("base commit should be the ancestor of revision list"));
1384 for (i
= 0; i
< total
; i
++) {
1385 if (base
== list
[i
])
1386 die(_("base commit shouldn't be in revision list"));
1393 define_commit_slab(commit_base
, int);
1395 static void prepare_bases(struct base_tree_info
*bases
,
1396 struct commit
*base
,
1397 struct commit
**list
,
1400 struct commit
*commit
;
1401 struct rev_info revs
;
1402 struct diff_options diffopt
;
1403 struct commit_base commit_base
;
1409 init_commit_base(&commit_base
);
1410 repo_diff_setup(the_repository
, &diffopt
);
1411 diffopt
.flags
.recursive
= 1;
1412 diff_setup_done(&diffopt
);
1414 oidcpy(&bases
->base_commit
, &base
->object
.oid
);
1416 repo_init_revisions(the_repository
, &revs
, NULL
);
1417 revs
.max_parents
= 1;
1418 revs
.topo_order
= 1;
1419 for (i
= 0; i
< total
; i
++) {
1420 list
[i
]->object
.flags
&= ~UNINTERESTING
;
1421 add_pending_object(&revs
, &list
[i
]->object
, "rev_list");
1422 *commit_base_at(&commit_base
, list
[i
]) = 1;
1424 base
->object
.flags
|= UNINTERESTING
;
1425 add_pending_object(&revs
, &base
->object
, "base");
1427 if (prepare_revision_walk(&revs
))
1428 die(_("revision walk setup failed"));
1430 * Traverse the commits list, get prerequisite patch ids
1431 * and stuff them in bases structure.
1433 while ((commit
= get_revision(&revs
)) != NULL
) {
1434 struct object_id oid
;
1435 struct object_id
*patch_id
;
1436 if (*commit_base_at(&commit_base
, commit
))
1438 if (commit_patch_id(commit
, &diffopt
, &oid
, 0))
1439 die(_("cannot get patch id"));
1440 ALLOC_GROW(bases
->patch_id
, bases
->nr_patch_id
+ 1, bases
->alloc_patch_id
);
1441 patch_id
= bases
->patch_id
+ bases
->nr_patch_id
;
1442 oidcpy(patch_id
, &oid
);
1443 bases
->nr_patch_id
++;
1445 clear_commit_base(&commit_base
);
1448 static void print_bases(struct base_tree_info
*bases
, FILE *file
)
1452 /* Only do this once, either for the cover or for the first one */
1453 if (is_null_oid(&bases
->base_commit
))
1456 /* Show the base commit */
1457 fprintf(file
, "\nbase-commit: %s\n", oid_to_hex(&bases
->base_commit
));
1459 /* Show the prerequisite patches */
1460 for (i
= bases
->nr_patch_id
- 1; i
>= 0; i
--)
1461 fprintf(file
, "prerequisite-patch-id: %s\n", oid_to_hex(&bases
->patch_id
[i
]));
1463 free(bases
->patch_id
);
1464 bases
->nr_patch_id
= 0;
1465 bases
->alloc_patch_id
= 0;
1466 oidclr(&bases
->base_commit
);
1469 static const char *diff_title(struct strbuf
*sb
, int reroll_count
,
1470 const char *generic
, const char *rerolled
)
1472 if (reroll_count
<= 0)
1473 strbuf_addstr(sb
, generic
);
1474 else /* RFC may be v0, so allow -v1 to diff against v0 */
1475 strbuf_addf(sb
, rerolled
, reroll_count
- 1);
1479 static void infer_range_diff_ranges(struct strbuf
*r1
,
1482 struct commit
*origin
,
1483 struct commit
*head
)
1485 const char *head_oid
= oid_to_hex(&head
->object
.oid
);
1487 if (!strstr(prev
, "..")) {
1488 strbuf_addf(r1
, "%s..%s", head_oid
, prev
);
1489 strbuf_addf(r2
, "%s..%s", prev
, head_oid
);
1490 } else if (!origin
) {
1491 die(_("failed to infer range-diff ranges"));
1493 strbuf_addstr(r1
, prev
);
1494 strbuf_addf(r2
, "%s..%s",
1495 oid_to_hex(&origin
->object
.oid
), head_oid
);
1499 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
1501 struct commit
*commit
;
1502 struct commit
**list
= NULL
;
1503 struct rev_info rev
;
1504 struct setup_revision_opt s_r_opt
;
1505 int nr
= 0, total
, i
;
1507 int start_number
= -1;
1508 int just_numbers
= 0;
1509 int ignore_if_in_upstream
= 0;
1510 int cover_letter
= -1;
1511 int boundary_count
= 0;
1512 int no_binary_diff
= 0;
1513 int zero_commit
= 0;
1514 struct commit
*origin
= NULL
;
1515 const char *in_reply_to
= NULL
;
1516 struct patch_ids ids
;
1517 struct strbuf buf
= STRBUF_INIT
;
1518 int use_patch_format
= 0;
1520 int reroll_count
= -1;
1521 char *branch_name
= NULL
;
1522 char *base_commit
= NULL
;
1523 struct base_tree_info bases
;
1524 int show_progress
= 0;
1525 struct progress
*progress
= NULL
;
1526 struct oid_array idiff_prev
= OID_ARRAY_INIT
;
1527 struct strbuf idiff_title
= STRBUF_INIT
;
1528 const char *rdiff_prev
= NULL
;
1529 struct strbuf rdiff1
= STRBUF_INIT
;
1530 struct strbuf rdiff2
= STRBUF_INIT
;
1531 struct strbuf rdiff_title
= STRBUF_INIT
;
1532 int creation_factor
= -1;
1534 const struct option builtin_format_patch_options
[] = {
1535 { OPTION_CALLBACK
, 'n', "numbered", &numbered
, NULL
,
1536 N_("use [PATCH n/m] even with a single patch"),
1537 PARSE_OPT_NOARG
, numbered_callback
},
1538 { OPTION_CALLBACK
, 'N', "no-numbered", &numbered
, NULL
,
1539 N_("use [PATCH] even with multiple patches"),
1540 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, no_numbered_callback
},
1541 OPT_BOOL('s', "signoff", &do_signoff
, N_("add Signed-off-by:")),
1542 OPT_BOOL(0, "stdout", &use_stdout
,
1543 N_("print patches to standard out")),
1544 OPT_BOOL(0, "cover-letter", &cover_letter
,
1545 N_("generate a cover letter")),
1546 OPT_BOOL(0, "numbered-files", &just_numbers
,
1547 N_("use simple number sequence for output file names")),
1548 OPT_STRING(0, "suffix", &fmt_patch_suffix
, N_("sfx"),
1549 N_("use <sfx> instead of '.patch'")),
1550 OPT_INTEGER(0, "start-number", &start_number
,
1551 N_("start numbering patches at <n> instead of 1")),
1552 OPT_INTEGER('v', "reroll-count", &reroll_count
,
1553 N_("mark the series as Nth re-roll")),
1554 { OPTION_CALLBACK
, 0, "rfc", &rev
, NULL
,
1555 N_("Use [RFC PATCH] instead of [PATCH]"),
1556 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, rfc_callback
},
1557 { OPTION_CALLBACK
, 0, "subject-prefix", &rev
, N_("prefix"),
1558 N_("Use [<prefix>] instead of [PATCH]"),
1559 PARSE_OPT_NONEG
, subject_prefix_callback
},
1560 { OPTION_CALLBACK
, 'o', "output-directory", &output_directory
,
1561 N_("dir"), N_("store resulting files in <dir>"),
1562 PARSE_OPT_NONEG
, output_directory_callback
},
1563 { OPTION_CALLBACK
, 'k', "keep-subject", &rev
, NULL
,
1564 N_("don't strip/add [PATCH]"),
1565 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, keep_callback
},
1566 OPT_BOOL(0, "no-binary", &no_binary_diff
,
1567 N_("don't output binary diffs")),
1568 OPT_BOOL(0, "zero-commit", &zero_commit
,
1569 N_("output all-zero hash in From header")),
1570 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream
,
1571 N_("don't include a patch matching a commit upstream")),
1572 OPT_SET_INT_F('p', "no-stat", &use_patch_format
,
1573 N_("show patch format instead of default (patch + stat)"),
1574 1, PARSE_OPT_NONEG
),
1575 OPT_GROUP(N_("Messaging")),
1576 { OPTION_CALLBACK
, 0, "add-header", NULL
, N_("header"),
1577 N_("add email header"), 0, header_callback
},
1578 { OPTION_CALLBACK
, 0, "to", NULL
, N_("email"), N_("add To: header"),
1580 { OPTION_CALLBACK
, 0, "cc", NULL
, N_("email"), N_("add Cc: header"),
1582 { OPTION_CALLBACK
, 0, "from", &from
, N_("ident"),
1583 N_("set From address to <ident> (or committer ident if absent)"),
1584 PARSE_OPT_OPTARG
, from_callback
},
1585 OPT_STRING(0, "in-reply-to", &in_reply_to
, N_("message-id"),
1586 N_("make first mail a reply to <message-id>")),
1587 { OPTION_CALLBACK
, 0, "attach", &rev
, N_("boundary"),
1588 N_("attach the patch"), PARSE_OPT_OPTARG
,
1590 { OPTION_CALLBACK
, 0, "inline", &rev
, N_("boundary"),
1591 N_("inline the patch"),
1592 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
,
1594 { OPTION_CALLBACK
, 0, "thread", &thread
, N_("style"),
1595 N_("enable message threading, styles: shallow, deep"),
1596 PARSE_OPT_OPTARG
, thread_callback
},
1597 OPT_STRING(0, "signature", &signature
, N_("signature"),
1598 N_("add a signature")),
1599 OPT_STRING(0, "base", &base_commit
, N_("base-commit"),
1600 N_("add prerequisite tree info to the patch series")),
1601 OPT_FILENAME(0, "signature-file", &signature_file
,
1602 N_("add a signature from a file")),
1603 OPT__QUIET(&quiet
, N_("don't print the patch filenames")),
1604 OPT_BOOL(0, "progress", &show_progress
,
1605 N_("show progress while generating patches")),
1606 OPT_CALLBACK(0, "interdiff", &idiff_prev
, N_("rev"),
1607 N_("show changes against <rev> in cover letter or single patch"),
1608 parse_opt_object_name
),
1609 OPT_STRING(0, "range-diff", &rdiff_prev
, N_("refspec"),
1610 N_("show changes against <refspec> in cover letter or single patch")),
1611 OPT_INTEGER(0, "creation-factor", &creation_factor
,
1612 N_("percentage by which creation is weighted")),
1616 extra_hdr
.strdup_strings
= 1;
1617 extra_to
.strdup_strings
= 1;
1618 extra_cc
.strdup_strings
= 1;
1619 init_log_defaults();
1620 git_config(git_format_config
, NULL
);
1621 repo_init_revisions(the_repository
, &rev
, prefix
);
1622 rev
.commit_format
= CMIT_FMT_EMAIL
;
1623 rev
.expand_tabs_in_log_default
= 0;
1624 rev
.verbose_header
= 1;
1626 rev
.max_parents
= 1;
1627 rev
.diffopt
.flags
.recursive
= 1;
1628 rev
.subject_prefix
= fmt_patch_subject_prefix
;
1629 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
1630 s_r_opt
.def
= "HEAD";
1631 s_r_opt
.revarg_opt
= REVARG_COMMITTISH
;
1633 if (default_attach
) {
1634 rev
.mime_boundary
= default_attach
;
1639 * Parse the arguments before setup_revisions(), or something
1640 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1641 * possibly a valid SHA1.
1643 argc
= parse_options(argc
, argv
, prefix
, builtin_format_patch_options
,
1644 builtin_format_patch_usage
,
1645 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
1646 PARSE_OPT_KEEP_DASHDASH
);
1648 if (0 < reroll_count
) {
1649 struct strbuf sprefix
= STRBUF_INIT
;
1650 strbuf_addf(&sprefix
, "%s v%d",
1651 rev
.subject_prefix
, reroll_count
);
1652 rev
.reroll_count
= reroll_count
;
1653 rev
.subject_prefix
= strbuf_detach(&sprefix
, NULL
);
1656 for (i
= 0; i
< extra_hdr
.nr
; i
++) {
1657 strbuf_addstr(&buf
, extra_hdr
.items
[i
].string
);
1658 strbuf_addch(&buf
, '\n');
1662 strbuf_addstr(&buf
, "To: ");
1663 for (i
= 0; i
< extra_to
.nr
; i
++) {
1665 strbuf_addstr(&buf
, " ");
1666 strbuf_addstr(&buf
, extra_to
.items
[i
].string
);
1667 if (i
+ 1 < extra_to
.nr
)
1668 strbuf_addch(&buf
, ',');
1669 strbuf_addch(&buf
, '\n');
1673 strbuf_addstr(&buf
, "Cc: ");
1674 for (i
= 0; i
< extra_cc
.nr
; i
++) {
1676 strbuf_addstr(&buf
, " ");
1677 strbuf_addstr(&buf
, extra_cc
.items
[i
].string
);
1678 if (i
+ 1 < extra_cc
.nr
)
1679 strbuf_addch(&buf
, ',');
1680 strbuf_addch(&buf
, '\n');
1683 rev
.extra_headers
= strbuf_detach(&buf
, NULL
);
1686 if (split_ident_line(&rev
.from_ident
, from
, strlen(from
)))
1687 die(_("invalid ident line: %s"), from
);
1690 if (start_number
< 0)
1694 * If numbered is set solely due to format.numbered in config,
1695 * and it would conflict with --keep-subject (-k) from the
1696 * command line, reset "numbered".
1698 if (numbered
&& keep_subject
&& !numbered_cmdline_opt
)
1701 if (numbered
&& keep_subject
)
1702 die(_("-n and -k are mutually exclusive"));
1703 if (keep_subject
&& subject_prefix
)
1704 die(_("--subject-prefix/--rfc and -k are mutually exclusive"));
1705 rev
.preserve_subject
= keep_subject
;
1707 argc
= setup_revisions(argc
, argv
, &rev
, &s_r_opt
);
1709 die(_("unrecognized argument: %s"), argv
[1]);
1711 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME
)
1712 die(_("--name-only does not make sense"));
1713 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME_STATUS
)
1714 die(_("--name-status does not make sense"));
1715 if (rev
.diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
)
1716 die(_("--check does not make sense"));
1718 if (!use_patch_format
&&
1719 (!rev
.diffopt
.output_format
||
1720 rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
))
1721 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
;
1722 if (!rev
.diffopt
.stat_width
)
1723 rev
.diffopt
.stat_width
= MAIL_DEFAULT_WRAP
;
1725 /* Always generate a patch */
1726 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
1728 rev
.zero_commit
= zero_commit
;
1730 if (!rev
.diffopt
.flags
.text
&& !no_binary_diff
)
1731 rev
.diffopt
.flags
.binary
= 1;
1734 init_display_notes(&rev
.notes_opt
);
1736 if (!output_directory
&& !use_stdout
)
1737 output_directory
= config_output_directory
;
1740 output_directory
= set_outdir(prefix
, output_directory
);
1744 if (output_directory
) {
1745 if (rev
.diffopt
.use_color
!= GIT_COLOR_ALWAYS
)
1746 rev
.diffopt
.use_color
= GIT_COLOR_NEVER
;
1748 die(_("standard output, or directory, which one?"));
1749 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
1750 die_errno(_("could not create directory '%s'"),
1754 if (rev
.pending
.nr
== 1) {
1757 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
1759 * This is traditional behaviour of "git format-patch
1760 * origin" that prepares what the origin side still
1763 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
1764 add_head_to_pending(&rev
);
1768 * Otherwise, it is "format-patch -22 HEAD", and/or
1769 * "format-patch --root HEAD". The user wants
1770 * get_revision() to do the usual traversal.
1773 if (!strcmp(rev
.pending
.objects
[0].name
, "HEAD"))
1777 const char *ref
, *v
;
1778 ref
= resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
,
1780 if (ref
&& skip_prefix(ref
, "refs/heads/", &v
))
1781 branch_name
= xstrdup(v
);
1783 branch_name
= xstrdup(""); /* no branch */
1788 * We cannot move this anywhere earlier because we do want to
1789 * know if --root was given explicitly from the command line.
1791 rev
.show_root_diff
= 1;
1793 if (ignore_if_in_upstream
) {
1794 /* Don't say anything if head and upstream are the same. */
1795 if (rev
.pending
.nr
== 2) {
1796 struct object_array_entry
*o
= rev
.pending
.objects
;
1797 if (oideq(&o
[0].item
->oid
, &o
[1].item
->oid
))
1800 get_patch_ids(&rev
, &ids
);
1803 if (prepare_revision_walk(&rev
))
1804 die(_("revision walk setup failed"));
1806 while ((commit
= get_revision(&rev
)) != NULL
) {
1807 if (commit
->object
.flags
& BOUNDARY
) {
1809 origin
= (boundary_count
== 1) ? commit
: NULL
;
1813 if (ignore_if_in_upstream
&& has_commit_patch_id(commit
, &ids
))
1817 REALLOC_ARRAY(list
, nr
);
1818 list
[nr
- 1] = commit
;
1824 if (cover_letter
== -1) {
1825 if (config_cover_letter
== COVER_AUTO
)
1826 cover_letter
= (total
> 1);
1828 cover_letter
= (config_cover_letter
== COVER_ON
);
1830 if (!keep_subject
&& auto_number
&& (total
> 1 || cover_letter
))
1833 rev
.total
= total
+ start_number
- 1;
1835 if (idiff_prev
.nr
) {
1836 if (!cover_letter
&& total
!= 1)
1837 die(_("--interdiff requires --cover-letter or single patch"));
1838 rev
.idiff_oid1
= &idiff_prev
.oid
[idiff_prev
.nr
- 1];
1839 rev
.idiff_oid2
= get_commit_tree_oid(list
[0]);
1840 rev
.idiff_title
= diff_title(&idiff_title
, reroll_count
,
1842 _("Interdiff against v%d:"));
1845 if (creation_factor
< 0)
1846 creation_factor
= RANGE_DIFF_CREATION_FACTOR_DEFAULT
;
1847 else if (!rdiff_prev
)
1848 die(_("--creation-factor requires --range-diff"));
1851 if (!cover_letter
&& total
!= 1)
1852 die(_("--range-diff requires --cover-letter or single patch"));
1854 infer_range_diff_ranges(&rdiff1
, &rdiff2
, rdiff_prev
,
1856 rev
.rdiff1
= rdiff1
.buf
;
1857 rev
.rdiff2
= rdiff2
.buf
;
1858 rev
.creation_factor
= creation_factor
;
1859 rev
.rdiff_title
= diff_title(&rdiff_title
, reroll_count
,
1861 _("Range-diff against v%d:"));
1865 ; /* --no-signature inhibits all signatures */
1866 } else if (signature
&& signature
!= git_version_string
) {
1867 ; /* non-default signature already set */
1868 } else if (signature_file
) {
1869 struct strbuf buf
= STRBUF_INIT
;
1871 if (strbuf_read_file(&buf
, signature_file
, 128) < 0)
1872 die_errno(_("unable to read signature file '%s'"), signature_file
);
1873 signature
= strbuf_detach(&buf
, NULL
);
1876 memset(&bases
, 0, sizeof(bases
));
1877 if (base_commit
|| base_auto
) {
1878 struct commit
*base
= get_base_commit(base_commit
, list
, nr
);
1879 reset_revision_walk();
1880 clear_object_flags(UNINTERESTING
);
1881 prepare_bases(&bases
, base
, list
, nr
);
1884 if (in_reply_to
|| thread
|| cover_letter
)
1885 rev
.ref_message_ids
= xcalloc(1, sizeof(struct string_list
));
1887 const char *msgid
= clean_message_id(in_reply_to
);
1888 string_list_append(rev
.ref_message_ids
, msgid
);
1890 rev
.numbered_files
= just_numbers
;
1891 rev
.patch_suffix
= fmt_patch_suffix
;
1894 gen_message_id(&rev
, "cover");
1895 make_cover_letter(&rev
, use_stdout
,
1896 origin
, nr
, list
, branch_name
, quiet
);
1897 print_bases(&bases
, rev
.diffopt
.file
);
1898 print_signature(rev
.diffopt
.file
);
1901 /* interdiff/range-diff in cover-letter; omit from patches */
1902 rev
.idiff_oid1
= NULL
;
1905 rev
.add_signoff
= do_signoff
;
1908 progress
= start_delayed_progress(_("Generating patches"), total
);
1911 display_progress(progress
, total
- nr
);
1913 rev
.nr
= total
- nr
+ (start_number
- 1);
1914 /* Make the second and subsequent mails replies to the first */
1916 /* Have we already had a message ID? */
1917 if (rev
.message_id
) {
1919 * For deep threading: make every mail
1920 * a reply to the previous one, no
1921 * matter what other options are set.
1923 * For shallow threading:
1925 * Without --cover-letter and
1926 * --in-reply-to, make every mail a
1927 * reply to the one before.
1929 * With --in-reply-to but no
1930 * --cover-letter, make every mail a
1931 * reply to the <reply-to>.
1933 * With --cover-letter, make every
1934 * mail but the cover letter a reply
1935 * to the cover letter. The cover
1936 * letter is a reply to the
1937 * --in-reply-to, if specified.
1939 if (thread
== THREAD_SHALLOW
1940 && rev
.ref_message_ids
->nr
> 0
1941 && (!cover_letter
|| rev
.nr
> 1))
1942 free(rev
.message_id
);
1944 string_list_append(rev
.ref_message_ids
,
1947 gen_message_id(&rev
, oid_to_hex(&commit
->object
.oid
));
1951 open_next_file(rev
.numbered_files
? NULL
: commit
, NULL
, &rev
, quiet
))
1952 die(_("failed to create output files"));
1953 shown
= log_tree_commit(&rev
, commit
);
1954 free_commit_buffer(the_repository
->parsed_objects
,
1957 /* We put one extra blank line between formatted
1958 * patches and this flag is used by log-tree code
1959 * to see if it needs to emit a LF before showing
1960 * the log; when using one file per patch, we do
1961 * not want the extra blank line.
1966 print_bases(&bases
, rev
.diffopt
.file
);
1967 if (rev
.mime_boundary
)
1968 fprintf(rev
.diffopt
.file
, "\n--%s%s--\n\n\n",
1969 mime_boundary_leader
,
1972 print_signature(rev
.diffopt
.file
);
1975 fclose(rev
.diffopt
.file
);
1977 stop_progress(&progress
);
1980 string_list_clear(&extra_to
, 0);
1981 string_list_clear(&extra_cc
, 0);
1982 string_list_clear(&extra_hdr
, 0);
1983 if (ignore_if_in_upstream
)
1984 free_patch_ids(&ids
);
1987 oid_array_clear(&idiff_prev
);
1988 strbuf_release(&idiff_title
);
1989 strbuf_release(&rdiff1
);
1990 strbuf_release(&rdiff2
);
1991 strbuf_release(&rdiff_title
);
1995 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1997 struct object_id oid
;
1998 if (get_oid(arg
, &oid
) == 0) {
1999 struct commit
*commit
= lookup_commit_reference(the_repository
,
2002 commit
->object
.flags
|= flags
;
2003 add_pending_object(revs
, &commit
->object
, arg
);
2010 static const char * const cherry_usage
[] = {
2011 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
2015 static void print_commit(char sign
, struct commit
*commit
, int verbose
,
2016 int abbrev
, FILE *file
)
2019 fprintf(file
, "%c %s\n", sign
,
2020 find_unique_abbrev(&commit
->object
.oid
, abbrev
));
2022 struct strbuf buf
= STRBUF_INIT
;
2023 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &buf
);
2024 fprintf(file
, "%c %s %s\n", sign
,
2025 find_unique_abbrev(&commit
->object
.oid
, abbrev
),
2027 strbuf_release(&buf
);
2031 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
2033 struct rev_info revs
;
2034 struct patch_ids ids
;
2035 struct commit
*commit
;
2036 struct commit_list
*list
= NULL
;
2037 struct branch
*current_branch
;
2038 const char *upstream
;
2039 const char *head
= "HEAD";
2040 const char *limit
= NULL
;
2041 int verbose
= 0, abbrev
= 0;
2043 struct option options
[] = {
2044 OPT__ABBREV(&abbrev
),
2045 OPT__VERBOSE(&verbose
, N_("be verbose")),
2049 argc
= parse_options(argc
, argv
, prefix
, options
, cherry_usage
, 0);
2062 current_branch
= branch_get(NULL
);
2063 upstream
= branch_get_upstream(current_branch
, NULL
);
2065 fprintf(stderr
, _("Could not find a tracked"
2066 " remote branch, please"
2067 " specify <upstream> manually.\n"));
2068 usage_with_options(cherry_usage
, options
);
2072 repo_init_revisions(the_repository
, &revs
, prefix
);
2073 revs
.max_parents
= 1;
2075 if (add_pending_commit(head
, &revs
, 0))
2076 die(_("unknown commit %s"), head
);
2077 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
2078 die(_("unknown commit %s"), upstream
);
2080 /* Don't say anything if head and upstream are the same. */
2081 if (revs
.pending
.nr
== 2) {
2082 struct object_array_entry
*o
= revs
.pending
.objects
;
2083 if (oideq(&o
[0].item
->oid
, &o
[1].item
->oid
))
2087 get_patch_ids(&revs
, &ids
);
2089 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
2090 die(_("unknown commit %s"), limit
);
2092 /* reverse the list of commits */
2093 if (prepare_revision_walk(&revs
))
2094 die(_("revision walk setup failed"));
2095 while ((commit
= get_revision(&revs
)) != NULL
) {
2096 commit_list_insert(commit
, &list
);
2102 commit
= list
->item
;
2103 if (has_commit_patch_id(commit
, &ids
))
2105 print_commit(sign
, commit
, verbose
, abbrev
, revs
.diffopt
.file
);
2109 free_patch_ids(&ids
);