2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
10 #include "object-store.h"
18 #include "reflog-walk.h"
19 #include "patch-ids.h"
20 #include "run-command.h"
23 #include "string-list.h"
24 #include "parse-options.h"
27 #include "streaming.h"
30 #include "gpg-interface.h"
32 #include "commit-slab.h"
33 #include "repository.h"
34 #include "commit-reach.h"
35 #include "interdiff.h"
36 #include "range-diff.h"
38 #define MAIL_DEFAULT_WRAP 72
40 /* Set a default date-time format for git log ("log.date" config variable) */
41 static const char *default_date_mode
= NULL
;
43 static int default_abbrev_commit
;
44 static int default_show_root
= 1;
45 static int default_follow
;
46 static int default_show_signature
;
47 static int decoration_style
;
48 static int decoration_given
;
49 static int use_mailmap_config
;
50 static const char *fmt_patch_subject_prefix
= "PATCH";
51 static const char *fmt_pretty
;
53 static const char * const builtin_log_usage
[] = {
54 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
55 N_("git show [<options>] <object>..."),
59 struct line_opt_callback_data
{
62 struct string_list args
;
65 static int auto_decoration_style(void)
67 return (isatty(1) || pager_in_use()) ? DECORATE_SHORT_REFS
: 0;
70 static int parse_decoration_style(const char *value
)
72 switch (git_parse_maybe_bool(value
)) {
74 return DECORATE_SHORT_REFS
;
80 if (!strcmp(value
, "full"))
81 return DECORATE_FULL_REFS
;
82 else if (!strcmp(value
, "short"))
83 return DECORATE_SHORT_REFS
;
84 else if (!strcmp(value
, "auto"))
85 return auto_decoration_style();
89 static int decorate_callback(const struct option
*opt
, const char *arg
, int unset
)
94 decoration_style
= parse_decoration_style(arg
);
96 decoration_style
= DECORATE_SHORT_REFS
;
98 if (decoration_style
< 0)
99 die(_("invalid --decorate option: %s"), arg
);
101 decoration_given
= 1;
106 static int log_line_range_callback(const struct option
*option
, const char *arg
, int unset
)
108 struct line_opt_callback_data
*data
= option
->value
;
110 BUG_ON_OPT_NEG(unset
);
115 data
->rev
->line_level_traverse
= 1;
116 string_list_append(&data
->args
, arg
);
121 static void init_log_defaults(void)
123 init_grep_defaults(the_repository
);
124 init_diff_ui_defaults();
126 decoration_style
= auto_decoration_style();
129 static void cmd_log_init_defaults(struct rev_info
*rev
)
132 get_commit_format(fmt_pretty
, rev
);
134 rev
->diffopt
.flags
.default_follow_renames
= 1;
135 rev
->verbose_header
= 1;
136 rev
->diffopt
.flags
.recursive
= 1;
137 rev
->diffopt
.stat_width
= -1; /* use full terminal width */
138 rev
->diffopt
.stat_graph_width
= -1; /* respect statGraphWidth config */
139 rev
->abbrev_commit
= default_abbrev_commit
;
140 rev
->show_root_diff
= default_show_root
;
141 rev
->subject_prefix
= fmt_patch_subject_prefix
;
142 rev
->show_signature
= default_show_signature
;
143 rev
->diffopt
.flags
.allow_textconv
= 1;
145 if (default_date_mode
)
146 parse_date_format(default_date_mode
, &rev
->date_mode
);
149 static void cmd_log_init_finish(int argc
, const char **argv
, const char *prefix
,
150 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
152 struct userformat_want w
;
153 int quiet
= 0, source
= 0, mailmap
= 0;
154 static struct line_opt_callback_data line_cb
= {NULL
, NULL
, STRING_LIST_INIT_DUP
};
155 static struct string_list decorate_refs_exclude
= STRING_LIST_INIT_NODUP
;
156 static struct string_list decorate_refs_include
= STRING_LIST_INIT_NODUP
;
157 struct decoration_filter decoration_filter
= {&decorate_refs_include
,
158 &decorate_refs_exclude
};
159 static struct revision_sources revision_sources
;
161 const struct option builtin_log_options
[] = {
162 OPT__QUIET(&quiet
, N_("suppress diff output")),
163 OPT_BOOL(0, "source", &source
, N_("show source")),
164 OPT_BOOL(0, "use-mailmap", &mailmap
, N_("Use mail map file")),
165 OPT_STRING_LIST(0, "decorate-refs", &decorate_refs_include
,
166 N_("pattern"), N_("only decorate refs that match <pattern>")),
167 OPT_STRING_LIST(0, "decorate-refs-exclude", &decorate_refs_exclude
,
168 N_("pattern"), N_("do not decorate refs that match <pattern>")),
169 { OPTION_CALLBACK
, 0, "decorate", NULL
, NULL
, N_("decorate options"),
170 PARSE_OPT_OPTARG
, decorate_callback
},
171 OPT_CALLBACK('L', NULL
, &line_cb
, "n,m:file",
172 N_("Process line range n,m in file, counting from 1"),
173 log_line_range_callback
),
178 line_cb
.prefix
= prefix
;
180 mailmap
= use_mailmap_config
;
181 argc
= parse_options(argc
, argv
, prefix
,
182 builtin_log_options
, builtin_log_usage
,
183 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
184 PARSE_OPT_KEEP_DASHDASH
);
187 rev
->diffopt
.output_format
|= DIFF_FORMAT_NO_OUTPUT
;
188 argc
= setup_revisions(argc
, argv
, rev
, opt
);
190 /* Any arguments at this point are not recognized */
192 die(_("unrecognized argument: %s"), argv
[1]);
194 memset(&w
, 0, sizeof(w
));
195 userformat_find_requirements(NULL
, &w
);
197 if (!rev
->show_notes_given
&& (!rev
->pretty_given
|| w
.notes
))
200 init_display_notes(&rev
->notes_opt
);
202 if ((rev
->diffopt
.pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
) ||
203 rev
->diffopt
.filter
|| rev
->diffopt
.flags
.follow_renames
)
204 rev
->always_show_header
= 0;
207 init_revision_sources(&revision_sources
);
208 rev
->sources
= &revision_sources
;
212 rev
->mailmap
= xcalloc(1, sizeof(struct string_list
));
213 read_mailmap(rev
->mailmap
, NULL
);
216 if (rev
->pretty_given
&& rev
->commit_format
== CMIT_FMT_RAW
) {
218 * "log --pretty=raw" is special; ignore UI oriented
219 * configuration variables such as decoration.
221 if (!decoration_given
)
222 decoration_style
= 0;
223 if (!rev
->abbrev_commit_given
)
224 rev
->abbrev_commit
= 0;
227 if (decoration_style
) {
228 rev
->show_decorations
= 1;
229 load_ref_decorations(&decoration_filter
, decoration_style
);
232 if (rev
->line_level_traverse
)
233 line_log_init(rev
, line_cb
.prefix
, &line_cb
.args
);
238 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
239 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
241 cmd_log_init_defaults(rev
);
242 cmd_log_init_finish(argc
, argv
, prefix
, rev
, opt
);
246 * This gives a rough estimate for how many commits we
247 * will print out in the list.
249 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
254 struct commit
*commit
= list
->item
;
255 unsigned int flags
= commit
->object
.flags
;
257 if (!(flags
& (TREESAME
| UNINTERESTING
)))
263 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
265 if (rev
->shown_one
) {
267 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
268 putchar(rev
->diffopt
.line_termination
);
270 fprintf(rev
->diffopt
.file
, _("Final output: %d %s\n"), nr
, stage
);
273 static struct itimerval early_output_timer
;
275 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
277 int i
= revs
->early_output
, close_file
= revs
->diffopt
.close_file
;
280 revs
->diffopt
.close_file
= 0;
281 sort_in_topological_order(&list
, revs
->sort_order
);
283 struct commit
*commit
= list
->item
;
284 switch (simplify_commit(revs
, commit
)) {
287 int n
= estimate_commit_count(revs
, list
);
288 show_early_header(revs
, "incomplete", n
);
291 log_tree_commit(revs
, commit
);
298 fclose(revs
->diffopt
.file
);
304 /* Did we already get enough commits for the early output? */
307 fclose(revs
->diffopt
.file
);
312 * ..if no, then repeat it twice a second until we
315 * NOTE! We don't use "it_interval", because if the
316 * reader isn't listening, we want our output to be
317 * throttled by the writing, and not have the timer
318 * trigger every second even if we're blocked on a
321 early_output_timer
.it_value
.tv_sec
= 0;
322 early_output_timer
.it_value
.tv_usec
= 500000;
323 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
326 static void early_output(int signal
)
328 show_early_output
= log_show_early
;
331 static void setup_early_output(struct rev_info
*rev
)
336 * Set up the signal handler, minimally intrusively:
337 * we only set a single volatile integer word (not
338 * using sigatomic_t - trying to avoid unnecessary
339 * system dependencies and headers), and using
342 memset(&sa
, 0, sizeof(sa
));
343 sa
.sa_handler
= early_output
;
344 sigemptyset(&sa
.sa_mask
);
345 sa
.sa_flags
= SA_RESTART
;
346 sigaction(SIGALRM
, &sa
, NULL
);
349 * If we can get the whole output in less than a
350 * tenth of a second, don't even bother doing the
351 * early-output thing..
353 * This is a one-time-only trigger.
355 early_output_timer
.it_value
.tv_sec
= 0;
356 early_output_timer
.it_value
.tv_usec
= 100000;
357 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
360 static void finish_early_output(struct rev_info
*rev
)
362 int n
= estimate_commit_count(rev
, rev
->commits
);
363 signal(SIGALRM
, SIG_IGN
);
364 show_early_header(rev
, "done", n
);
367 static int cmd_log_walk(struct rev_info
*rev
)
369 struct commit
*commit
;
371 int saved_dcctc
= 0, close_file
= rev
->diffopt
.close_file
;
373 if (rev
->early_output
)
374 setup_early_output(rev
);
376 if (prepare_revision_walk(rev
))
377 die(_("revision walk setup failed"));
379 if (rev
->early_output
)
380 finish_early_output(rev
);
383 * For --check and --exit-code, the exit code is based on CHECK_FAILED
384 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
385 * retain that state information if replacing rev->diffopt in this loop
387 rev
->diffopt
.close_file
= 0;
388 while ((commit
= get_revision(rev
)) != NULL
) {
389 if (!log_tree_commit(rev
, commit
) && rev
->max_count
>= 0)
391 * We decremented max_count in get_revision,
392 * but we didn't actually show the commit.
395 if (!rev
->reflog_info
) {
397 * We may show a given commit multiple times when
398 * walking the reflogs.
400 free_commit_buffer(commit
);
401 free_commit_list(commit
->parents
);
402 commit
->parents
= NULL
;
404 if (saved_nrl
< rev
->diffopt
.needed_rename_limit
)
405 saved_nrl
= rev
->diffopt
.needed_rename_limit
;
406 if (rev
->diffopt
.degraded_cc_to_c
)
409 rev
->diffopt
.degraded_cc_to_c
= saved_dcctc
;
410 rev
->diffopt
.needed_rename_limit
= saved_nrl
;
412 fclose(rev
->diffopt
.file
);
414 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
415 rev
->diffopt
.flags
.check_failed
) {
418 return diff_result_code(&rev
->diffopt
, 0);
421 static int git_log_config(const char *var
, const char *value
, void *cb
)
423 const char *slot_name
;
425 if (!strcmp(var
, "format.pretty"))
426 return git_config_string(&fmt_pretty
, var
, value
);
427 if (!strcmp(var
, "format.subjectprefix"))
428 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
429 if (!strcmp(var
, "log.abbrevcommit")) {
430 default_abbrev_commit
= git_config_bool(var
, value
);
433 if (!strcmp(var
, "log.date"))
434 return git_config_string(&default_date_mode
, var
, value
);
435 if (!strcmp(var
, "log.decorate")) {
436 decoration_style
= parse_decoration_style(value
);
437 if (decoration_style
< 0)
438 decoration_style
= 0; /* maybe warn? */
441 if (!strcmp(var
, "log.showroot")) {
442 default_show_root
= git_config_bool(var
, value
);
445 if (!strcmp(var
, "log.follow")) {
446 default_follow
= git_config_bool(var
, value
);
449 if (skip_prefix(var
, "color.decorate.", &slot_name
))
450 return parse_decorate_color_config(var
, slot_name
, value
);
451 if (!strcmp(var
, "log.mailmap")) {
452 use_mailmap_config
= git_config_bool(var
, value
);
455 if (!strcmp(var
, "log.showsignature")) {
456 default_show_signature
= git_config_bool(var
, value
);
460 if (grep_config(var
, value
, cb
) < 0)
462 if (git_gpg_config(var
, value
, cb
) < 0)
464 return git_diff_ui_config(var
, value
, cb
);
467 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
470 struct setup_revision_opt opt
;
473 git_config(git_log_config
, NULL
);
475 repo_init_revisions(the_repository
, &rev
, prefix
);
477 rev
.simplify_history
= 0;
478 memset(&opt
, 0, sizeof(opt
));
480 opt
.revarg_opt
= REVARG_COMMITTISH
;
481 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
482 if (!rev
.diffopt
.output_format
)
483 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
484 return cmd_log_walk(&rev
);
487 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
489 struct strbuf out
= STRBUF_INIT
;
490 struct pretty_print_context pp
= {0};
492 pp
.fmt
= rev
->commit_format
;
493 pp
.date_mode
= rev
->date_mode
;
494 pp_user_info(&pp
, "Tagger", &out
, buf
, get_log_output_encoding());
495 fprintf(rev
->diffopt
.file
, "%s", out
.buf
);
496 strbuf_release(&out
);
499 static int show_blob_object(const struct object_id
*oid
, struct rev_info
*rev
, const char *obj_name
)
501 struct object_id oidc
;
502 struct object_context obj_context
;
506 fflush(rev
->diffopt
.file
);
507 if (!rev
->diffopt
.flags
.textconv_set_via_cmdline
||
508 !rev
->diffopt
.flags
.allow_textconv
)
509 return stream_blob_to_fd(1, oid
, NULL
, 0);
511 if (get_oid_with_context(obj_name
, GET_OID_RECORD_PATH
,
512 &oidc
, &obj_context
))
513 die(_("Not a valid object name %s"), obj_name
);
514 if (!obj_context
.path
||
515 !textconv_object(the_repository
, obj_context
.path
,
516 obj_context
.mode
, &oidc
, 1, &buf
, &size
)) {
517 free(obj_context
.path
);
518 return stream_blob_to_fd(1, oid
, NULL
, 0);
522 die(_("git show %s: bad file"), obj_name
);
524 write_or_die(1, buf
, size
);
525 free(obj_context
.path
);
529 static int show_tag_object(const struct object_id
*oid
, struct rev_info
*rev
)
532 enum object_type type
;
533 char *buf
= read_object_file(oid
, &type
, &size
);
537 return error(_("Could not read object %s"), oid_to_hex(oid
));
539 assert(type
== OBJ_TAG
);
540 while (offset
< size
&& buf
[offset
] != '\n') {
541 int new_offset
= offset
+ 1;
542 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
544 if (starts_with(buf
+ offset
, "tagger "))
545 show_tagger(buf
+ offset
+ 7,
546 new_offset
- offset
- 7, rev
);
551 fwrite(buf
+ offset
, size
- offset
, 1, rev
->diffopt
.file
);
556 static int show_tree_object(const struct object_id
*oid
,
558 const char *pathname
, unsigned mode
, int stage
, void *context
)
560 FILE *file
= context
;
561 fprintf(file
, "%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
565 static void show_setup_revisions_tweak(struct rev_info
*rev
,
566 struct setup_revision_opt
*opt
)
568 if (rev
->ignore_merges
) {
569 /* There was no "-m" on the command line */
570 rev
->ignore_merges
= 0;
571 if (!rev
->first_parent_only
&& !rev
->combine_merges
) {
572 /* No "--first-parent", "-c", or "--cc" */
573 rev
->combine_merges
= 1;
574 rev
->dense_combined_merges
= 1;
577 if (!rev
->diffopt
.output_format
)
578 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
581 int cmd_show(int argc
, const char **argv
, const char *prefix
)
584 struct object_array_entry
*objects
;
585 struct setup_revision_opt opt
;
586 struct pathspec match_all
;
587 int i
, count
, ret
= 0;
590 git_config(git_log_config
, NULL
);
592 memset(&match_all
, 0, sizeof(match_all
));
593 repo_init_revisions(the_repository
, &rev
, prefix
);
595 rev
.always_show_header
= 1;
596 rev
.no_walk
= REVISION_WALK_NO_WALK_SORTED
;
597 rev
.diffopt
.stat_width
= -1; /* Scale to real terminal size */
599 memset(&opt
, 0, sizeof(opt
));
601 opt
.tweak
= show_setup_revisions_tweak
;
602 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
605 return cmd_log_walk(&rev
);
607 count
= rev
.pending
.nr
;
608 objects
= rev
.pending
.objects
;
609 for (i
= 0; i
< count
&& !ret
; i
++) {
610 struct object
*o
= objects
[i
].item
;
611 const char *name
= objects
[i
].name
;
614 ret
= show_blob_object(&o
->oid
, &rev
, name
);
617 struct tag
*t
= (struct tag
*)o
;
621 fprintf(rev
.diffopt
.file
, "%stag %s%s\n",
622 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
624 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
625 ret
= show_tag_object(&o
->oid
, &rev
);
629 o
= parse_object(the_repository
, &t
->tagged
->oid
);
631 ret
= error(_("Could not read object %s"),
632 oid_to_hex(&t
->tagged
->oid
));
640 fprintf(rev
.diffopt
.file
, "%stree %s%s\n\n",
641 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
643 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
644 read_tree_recursive(the_repository
, (struct tree
*)o
, "",
645 0, 0, &match_all
, show_tree_object
,
650 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
651 rev
.pending
.objects
= NULL
;
652 add_object_array(o
, name
, &rev
.pending
);
653 ret
= cmd_log_walk(&rev
);
656 ret
= error(_("Unknown type: %d"), o
->type
);
664 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
666 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
669 struct setup_revision_opt opt
;
672 git_config(git_log_config
, NULL
);
674 repo_init_revisions(the_repository
, &rev
, prefix
);
675 init_reflog_walk(&rev
.reflog_info
);
676 rev
.verbose_header
= 1;
677 memset(&opt
, 0, sizeof(opt
));
679 cmd_log_init_defaults(&rev
);
680 rev
.abbrev_commit
= 1;
681 rev
.commit_format
= CMIT_FMT_ONELINE
;
682 rev
.use_terminator
= 1;
683 rev
.always_show_header
= 1;
684 cmd_log_init_finish(argc
, argv
, prefix
, &rev
, &opt
);
686 return cmd_log_walk(&rev
);
689 static void log_setup_revisions_tweak(struct rev_info
*rev
,
690 struct setup_revision_opt
*opt
)
692 if (rev
->diffopt
.flags
.default_follow_renames
&&
693 rev
->prune_data
.nr
== 1)
694 rev
->diffopt
.flags
.follow_renames
= 1;
696 /* Turn --cc/-c into -p --cc/-c when -p was not given */
697 if (!rev
->diffopt
.output_format
&& rev
->combine_merges
)
698 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
700 /* Turn -m on when --cc/-c was given */
701 if (rev
->combine_merges
)
702 rev
->ignore_merges
= 0;
705 int cmd_log(int argc
, const char **argv
, const char *prefix
)
708 struct setup_revision_opt opt
;
711 git_config(git_log_config
, NULL
);
713 repo_init_revisions(the_repository
, &rev
, prefix
);
714 rev
.always_show_header
= 1;
715 memset(&opt
, 0, sizeof(opt
));
717 opt
.revarg_opt
= REVARG_COMMITTISH
;
718 opt
.tweak
= log_setup_revisions_tweak
;
719 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
720 return cmd_log_walk(&rev
);
725 static const char *fmt_patch_suffix
= ".patch";
726 static int numbered
= 0;
727 static int auto_number
= 1;
729 static char *default_attach
= NULL
;
731 static struct string_list extra_hdr
= STRING_LIST_INIT_NODUP
;
732 static struct string_list extra_to
= STRING_LIST_INIT_NODUP
;
733 static struct string_list extra_cc
= STRING_LIST_INIT_NODUP
;
735 static void add_header(const char *value
)
737 struct string_list_item
*item
;
738 int len
= strlen(value
);
739 while (len
&& value
[len
- 1] == '\n')
742 if (!strncasecmp(value
, "to: ", 4)) {
743 item
= string_list_append(&extra_to
, value
+ 4);
745 } else if (!strncasecmp(value
, "cc: ", 4)) {
746 item
= string_list_append(&extra_cc
, value
+ 4);
749 item
= string_list_append(&extra_hdr
, value
);
752 item
->string
[len
] = '\0';
755 #define THREAD_SHALLOW 1
756 #define THREAD_DEEP 2
758 static int do_signoff
;
759 static int base_auto
;
761 static const char *signature
= git_version_string
;
762 static const char *signature_file
;
763 static int config_cover_letter
;
764 static const char *config_output_directory
;
773 static int git_format_config(const char *var
, const char *value
, void *cb
)
775 if (!strcmp(var
, "format.headers")) {
777 die(_("format.headers without value"));
781 if (!strcmp(var
, "format.suffix"))
782 return git_config_string(&fmt_patch_suffix
, var
, value
);
783 if (!strcmp(var
, "format.to")) {
785 return config_error_nonbool(var
);
786 string_list_append(&extra_to
, value
);
789 if (!strcmp(var
, "format.cc")) {
791 return config_error_nonbool(var
);
792 string_list_append(&extra_cc
, value
);
795 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff") ||
796 !strcmp(var
, "color.ui") || !strcmp(var
, "diff.submodule")) {
799 if (!strcmp(var
, "format.numbered")) {
800 if (value
&& !strcasecmp(value
, "auto")) {
804 numbered
= git_config_bool(var
, value
);
805 auto_number
= auto_number
&& numbered
;
808 if (!strcmp(var
, "format.attach")) {
810 default_attach
= xstrdup(value
);
812 default_attach
= xstrdup(git_version_string
);
815 if (!strcmp(var
, "format.thread")) {
816 if (value
&& !strcasecmp(value
, "deep")) {
817 thread
= THREAD_DEEP
;
820 if (value
&& !strcasecmp(value
, "shallow")) {
821 thread
= THREAD_SHALLOW
;
824 thread
= git_config_bool(var
, value
) && THREAD_SHALLOW
;
827 if (!strcmp(var
, "format.signoff")) {
828 do_signoff
= git_config_bool(var
, value
);
831 if (!strcmp(var
, "format.signature"))
832 return git_config_string(&signature
, var
, value
);
833 if (!strcmp(var
, "format.signaturefile"))
834 return git_config_pathname(&signature_file
, var
, value
);
835 if (!strcmp(var
, "format.coverletter")) {
836 if (value
&& !strcasecmp(value
, "auto")) {
837 config_cover_letter
= COVER_AUTO
;
840 config_cover_letter
= git_config_bool(var
, value
) ? COVER_ON
: COVER_OFF
;
843 if (!strcmp(var
, "format.outputdirectory"))
844 return git_config_string(&config_output_directory
, var
, value
);
845 if (!strcmp(var
, "format.useautobase")) {
846 base_auto
= git_config_bool(var
, value
);
849 if (!strcmp(var
, "format.from")) {
850 int b
= git_parse_maybe_bool(value
);
853 from
= xstrdup(value
);
855 from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
861 return git_log_config(var
, value
, cb
);
864 static const char *output_directory
= NULL
;
865 static int outdir_offset
;
867 static int open_next_file(struct commit
*commit
, const char *subject
,
868 struct rev_info
*rev
, int quiet
)
870 struct strbuf filename
= STRBUF_INIT
;
871 int suffix_len
= strlen(rev
->patch_suffix
) + 1;
873 if (output_directory
) {
874 strbuf_addstr(&filename
, output_directory
);
876 PATH_MAX
- FORMAT_PATCH_NAME_MAX
- suffix_len
) {
877 strbuf_release(&filename
);
878 return error(_("name of output directory is too long"));
880 strbuf_complete(&filename
, '/');
883 if (rev
->numbered_files
)
884 strbuf_addf(&filename
, "%d", rev
->nr
);
886 fmt_output_commit(&filename
, commit
, rev
);
888 fmt_output_subject(&filename
, subject
, rev
);
891 printf("%s\n", filename
.buf
+ outdir_offset
);
893 if ((rev
->diffopt
.file
= fopen(filename
.buf
, "w")) == NULL
) {
894 error_errno(_("Cannot open patch file %s"), filename
.buf
);
895 strbuf_release(&filename
);
899 strbuf_release(&filename
);
903 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
)
905 struct rev_info check_rev
;
906 struct commit
*commit
, *c1
, *c2
;
907 struct object
*o1
, *o2
;
908 unsigned flags1
, flags2
;
910 if (rev
->pending
.nr
!= 2)
911 die(_("Need exactly one range."));
913 o1
= rev
->pending
.objects
[0].item
;
914 o2
= rev
->pending
.objects
[1].item
;
917 c1
= lookup_commit_reference(the_repository
, &o1
->oid
);
918 c2
= lookup_commit_reference(the_repository
, &o2
->oid
);
920 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
921 die(_("Not a range."));
923 init_patch_ids(the_repository
, ids
);
925 /* given a range a..b get all patch ids for b..a */
926 repo_init_revisions(the_repository
, &check_rev
, rev
->prefix
);
927 check_rev
.max_parents
= 1;
928 o1
->flags
^= UNINTERESTING
;
929 o2
->flags
^= UNINTERESTING
;
930 add_pending_object(&check_rev
, o1
, "o1");
931 add_pending_object(&check_rev
, o2
, "o2");
932 if (prepare_revision_walk(&check_rev
))
933 die(_("revision walk setup failed"));
935 while ((commit
= get_revision(&check_rev
)) != NULL
) {
936 add_commit_patch_id(commit
, ids
);
939 /* reset for next revision walk */
940 clear_commit_marks(c1
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
941 clear_commit_marks(c2
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
946 static void gen_message_id(struct rev_info
*info
, char *base
)
948 struct strbuf buf
= STRBUF_INIT
;
949 strbuf_addf(&buf
, "%s.%"PRItime
".git.%s", base
,
950 (timestamp_t
) time(NULL
),
951 git_committer_info(IDENT_NO_NAME
|IDENT_NO_DATE
|IDENT_STRICT
));
952 info
->message_id
= strbuf_detach(&buf
, NULL
);
955 static void print_signature(FILE *file
)
957 if (!signature
|| !*signature
)
960 fprintf(file
, "-- \n%s", signature
);
961 if (signature
[strlen(signature
)-1] != '\n')
966 static void add_branch_description(struct strbuf
*buf
, const char *branch_name
)
968 struct strbuf desc
= STRBUF_INIT
;
969 if (!branch_name
|| !*branch_name
)
971 read_branch_desc(&desc
, branch_name
);
973 strbuf_addch(buf
, '\n');
974 strbuf_addbuf(buf
, &desc
);
975 strbuf_addch(buf
, '\n');
977 strbuf_release(&desc
);
980 static char *find_branch_name(struct rev_info
*rev
)
982 int i
, positive
= -1;
983 struct object_id branch_oid
;
984 const struct object_id
*tip_oid
;
986 char *full_ref
, *branch
= NULL
;
988 for (i
= 0; i
< rev
->cmdline
.nr
; i
++) {
989 if (rev
->cmdline
.rev
[i
].flags
& UNINTERESTING
)
998 ref
= rev
->cmdline
.rev
[positive
].name
;
999 tip_oid
= &rev
->cmdline
.rev
[positive
].item
->oid
;
1000 if (dwim_ref(ref
, strlen(ref
), &branch_oid
, &full_ref
) &&
1001 skip_prefix(full_ref
, "refs/heads/", &v
) &&
1002 oideq(tip_oid
, &branch_oid
))
1003 branch
= xstrdup(v
);
1008 static void show_diffstat(struct rev_info
*rev
,
1009 struct commit
*origin
, struct commit
*head
)
1011 struct diff_options opts
;
1013 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
1014 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
1015 diff_setup_done(&opts
);
1017 diff_tree_oid(get_commit_tree_oid(origin
),
1018 get_commit_tree_oid(head
),
1020 diffcore_std(&opts
);
1023 fprintf(rev
->diffopt
.file
, "\n");
1026 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
1027 struct commit
*origin
,
1028 int nr
, struct commit
**list
,
1029 const char *branch_name
,
1032 const char *committer
;
1033 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
1035 struct shortlog log
;
1036 struct strbuf sb
= STRBUF_INIT
;
1038 const char *encoding
= "UTF-8";
1039 int need_8bit_cte
= 0;
1040 struct pretty_print_context pp
= {0};
1041 struct commit
*head
= list
[0];
1043 if (!cmit_fmt_is_mail(rev
->commit_format
))
1044 die(_("Cover letter needs email format"));
1046 committer
= git_committer_info(0);
1049 open_next_file(NULL
, rev
->numbered_files
? NULL
: "cover-letter", rev
, quiet
))
1052 log_write_email_headers(rev
, head
, &pp
.after_subject
, &need_8bit_cte
, 0);
1054 for (i
= 0; !need_8bit_cte
&& i
< nr
; i
++) {
1055 const char *buf
= get_commit_buffer(list
[i
], NULL
);
1056 if (has_non_ascii(buf
))
1058 unuse_commit_buffer(list
[i
], buf
);
1062 branch_name
= find_branch_name(rev
);
1065 pp
.fmt
= CMIT_FMT_EMAIL
;
1066 pp
.date_mode
.type
= DATE_RFC2822
;
1068 pp
.print_email_subject
= 1;
1069 pp_user_info(&pp
, NULL
, &sb
, committer
, encoding
);
1070 pp_title_line(&pp
, &msg
, &sb
, encoding
, need_8bit_cte
);
1071 pp_remainder(&pp
, &msg
, &sb
, 0);
1072 add_branch_description(&sb
, branch_name
);
1073 fprintf(rev
->diffopt
.file
, "%s\n", sb
.buf
);
1075 strbuf_release(&sb
);
1077 shortlog_init(&log
);
1079 log
.wrap
= MAIL_DEFAULT_WRAP
;
1082 log
.file
= rev
->diffopt
.file
;
1083 for (i
= 0; i
< nr
; i
++)
1084 shortlog_add_commit(&log
, list
[i
]);
1086 shortlog_output(&log
);
1088 /* We can only do diffstat with a unique reference point */
1090 show_diffstat(rev
, origin
, head
);
1092 if (rev
->idiff_oid1
) {
1093 fprintf_ln(rev
->diffopt
.file
, "%s", rev
->idiff_title
);
1094 show_interdiff(rev
, 0);
1099 * Pass minimum required diff-options to range-diff; others
1100 * can be added later if deemed desirable.
1102 struct diff_options opts
;
1104 opts
.file
= rev
->diffopt
.file
;
1105 opts
.use_color
= rev
->diffopt
.use_color
;
1106 diff_setup_done(&opts
);
1107 fprintf_ln(rev
->diffopt
.file
, "%s", rev
->rdiff_title
);
1108 show_range_diff(rev
->rdiff1
, rev
->rdiff2
,
1109 rev
->creation_factor
, 1, &opts
);
1113 static const char *clean_message_id(const char *msg_id
)
1116 const char *a
, *z
, *m
;
1119 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
1124 if (!isspace(ch
) && (ch
!= '>'))
1129 die(_("insane in-reply-to: %s"), msg_id
);
1132 return xmemdupz(a
, z
- a
);
1135 static const char *set_outdir(const char *prefix
, const char *output_directory
)
1137 if (output_directory
&& is_absolute_path(output_directory
))
1138 return output_directory
;
1140 if (!prefix
|| !*prefix
) {
1141 if (output_directory
)
1142 return output_directory
;
1143 /* The user did not explicitly ask for "./" */
1148 outdir_offset
= strlen(prefix
);
1149 if (!output_directory
)
1152 return prefix_filename(prefix
, output_directory
);
1155 static const char * const builtin_format_patch_usage
[] = {
1156 N_("git format-patch [<options>] [<since> | <revision-range>]"),
1160 static int keep_subject
= 0;
1162 static int keep_callback(const struct option
*opt
, const char *arg
, int unset
)
1164 BUG_ON_OPT_NEG(unset
);
1165 BUG_ON_OPT_ARG(arg
);
1166 ((struct rev_info
*)opt
->value
)->total
= -1;
1171 static int subject_prefix
= 0;
1173 static int subject_prefix_callback(const struct option
*opt
, const char *arg
,
1176 BUG_ON_OPT_NEG(unset
);
1178 ((struct rev_info
*)opt
->value
)->subject_prefix
= arg
;
1182 static int rfc_callback(const struct option
*opt
, const char *arg
, int unset
)
1184 BUG_ON_OPT_NEG(unset
);
1185 BUG_ON_OPT_ARG(arg
);
1186 return subject_prefix_callback(opt
, "RFC PATCH", unset
);
1189 static int numbered_cmdline_opt
= 0;
1191 static int numbered_callback(const struct option
*opt
, const char *arg
,
1194 BUG_ON_OPT_ARG(arg
);
1195 *(int *)opt
->value
= numbered_cmdline_opt
= unset
? 0 : 1;
1201 static int no_numbered_callback(const struct option
*opt
, const char *arg
,
1204 BUG_ON_OPT_NEG(unset
);
1205 return numbered_callback(opt
, arg
, 1);
1208 static int output_directory_callback(const struct option
*opt
, const char *arg
,
1211 const char **dir
= (const char **)opt
->value
;
1212 BUG_ON_OPT_NEG(unset
);
1214 die(_("Two output directories?"));
1219 static int thread_callback(const struct option
*opt
, const char *arg
, int unset
)
1221 int *thread
= (int *)opt
->value
;
1224 else if (!arg
|| !strcmp(arg
, "shallow"))
1225 *thread
= THREAD_SHALLOW
;
1226 else if (!strcmp(arg
, "deep"))
1227 *thread
= THREAD_DEEP
;
1233 static int attach_callback(const struct option
*opt
, const char *arg
, int unset
)
1235 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1237 rev
->mime_boundary
= NULL
;
1239 rev
->mime_boundary
= arg
;
1241 rev
->mime_boundary
= git_version_string
;
1242 rev
->no_inline
= unset
? 0 : 1;
1246 static int inline_callback(const struct option
*opt
, const char *arg
, int unset
)
1248 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1250 rev
->mime_boundary
= NULL
;
1252 rev
->mime_boundary
= arg
;
1254 rev
->mime_boundary
= git_version_string
;
1259 static int header_callback(const struct option
*opt
, const char *arg
, int unset
)
1262 string_list_clear(&extra_hdr
, 0);
1263 string_list_clear(&extra_to
, 0);
1264 string_list_clear(&extra_cc
, 0);
1271 static int to_callback(const struct option
*opt
, const char *arg
, int unset
)
1274 string_list_clear(&extra_to
, 0);
1276 string_list_append(&extra_to
, arg
);
1280 static int cc_callback(const struct option
*opt
, const char *arg
, int unset
)
1283 string_list_clear(&extra_cc
, 0);
1285 string_list_append(&extra_cc
, arg
);
1289 static int from_callback(const struct option
*opt
, const char *arg
, int unset
)
1291 char **from
= opt
->value
;
1298 *from
= xstrdup(arg
);
1300 *from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
1304 struct base_tree_info
{
1305 struct object_id base_commit
;
1306 int nr_patch_id
, alloc_patch_id
;
1307 struct object_id
*patch_id
;
1310 static struct commit
*get_base_commit(const char *base_commit
,
1311 struct commit
**list
,
1314 struct commit
*base
= NULL
;
1315 struct commit
**rev
;
1316 int i
= 0, rev_nr
= 0;
1318 if (base_commit
&& strcmp(base_commit
, "auto")) {
1319 base
= lookup_commit_reference_by_name(base_commit
);
1321 die(_("Unknown commit %s"), base_commit
);
1322 } else if ((base_commit
&& !strcmp(base_commit
, "auto")) || base_auto
) {
1323 struct branch
*curr_branch
= branch_get(NULL
);
1324 const char *upstream
= branch_get_upstream(curr_branch
, NULL
);
1326 struct commit_list
*base_list
;
1327 struct commit
*commit
;
1328 struct object_id oid
;
1330 if (get_oid(upstream
, &oid
))
1331 die(_("Failed to resolve '%s' as a valid ref."), upstream
);
1332 commit
= lookup_commit_or_die(&oid
, "upstream base");
1333 base_list
= get_merge_bases_many(commit
, total
, list
);
1334 /* There should be one and only one merge base. */
1335 if (!base_list
|| base_list
->next
)
1336 die(_("Could not find exact merge base."));
1337 base
= base_list
->item
;
1338 free_commit_list(base_list
);
1340 die(_("Failed to get upstream, if you want to record base commit automatically,\n"
1341 "please use git branch --set-upstream-to to track a remote branch.\n"
1342 "Or you could specify base commit by --base=<base-commit-id> manually."));
1346 ALLOC_ARRAY(rev
, total
);
1347 for (i
= 0; i
< total
; i
++)
1352 * Get merge base through pair-wise computations
1353 * and store it in rev[0].
1355 while (rev_nr
> 1) {
1356 for (i
= 0; i
< rev_nr
/ 2; i
++) {
1357 struct commit_list
*merge_base
;
1358 merge_base
= get_merge_bases(rev
[2 * i
], rev
[2 * i
+ 1]);
1359 if (!merge_base
|| merge_base
->next
)
1360 die(_("Failed to find exact merge base"));
1362 rev
[i
] = merge_base
->item
;
1366 rev
[i
] = rev
[2 * i
];
1367 rev_nr
= DIV_ROUND_UP(rev_nr
, 2);
1370 if (!in_merge_bases(base
, rev
[0]))
1371 die(_("base commit should be the ancestor of revision list"));
1373 for (i
= 0; i
< total
; i
++) {
1374 if (base
== list
[i
])
1375 die(_("base commit shouldn't be in revision list"));
1382 define_commit_slab(commit_base
, int);
1384 static void prepare_bases(struct base_tree_info
*bases
,
1385 struct commit
*base
,
1386 struct commit
**list
,
1389 struct commit
*commit
;
1390 struct rev_info revs
;
1391 struct diff_options diffopt
;
1392 struct commit_base commit_base
;
1398 init_commit_base(&commit_base
);
1399 repo_diff_setup(the_repository
, &diffopt
);
1400 diffopt
.flags
.recursive
= 1;
1401 diff_setup_done(&diffopt
);
1403 oidcpy(&bases
->base_commit
, &base
->object
.oid
);
1405 repo_init_revisions(the_repository
, &revs
, NULL
);
1406 revs
.max_parents
= 1;
1407 revs
.topo_order
= 1;
1408 for (i
= 0; i
< total
; i
++) {
1409 list
[i
]->object
.flags
&= ~UNINTERESTING
;
1410 add_pending_object(&revs
, &list
[i
]->object
, "rev_list");
1411 *commit_base_at(&commit_base
, list
[i
]) = 1;
1413 base
->object
.flags
|= UNINTERESTING
;
1414 add_pending_object(&revs
, &base
->object
, "base");
1416 if (prepare_revision_walk(&revs
))
1417 die(_("revision walk setup failed"));
1419 * Traverse the commits list, get prerequisite patch ids
1420 * and stuff them in bases structure.
1422 while ((commit
= get_revision(&revs
)) != NULL
) {
1423 struct object_id oid
;
1424 struct object_id
*patch_id
;
1425 if (*commit_base_at(&commit_base
, commit
))
1427 if (commit_patch_id(commit
, &diffopt
, &oid
, 0))
1428 die(_("cannot get patch id"));
1429 ALLOC_GROW(bases
->patch_id
, bases
->nr_patch_id
+ 1, bases
->alloc_patch_id
);
1430 patch_id
= bases
->patch_id
+ bases
->nr_patch_id
;
1431 oidcpy(patch_id
, &oid
);
1432 bases
->nr_patch_id
++;
1434 clear_commit_base(&commit_base
);
1437 static void print_bases(struct base_tree_info
*bases
, FILE *file
)
1441 /* Only do this once, either for the cover or for the first one */
1442 if (is_null_oid(&bases
->base_commit
))
1445 /* Show the base commit */
1446 fprintf(file
, "\nbase-commit: %s\n", oid_to_hex(&bases
->base_commit
));
1448 /* Show the prerequisite patches */
1449 for (i
= bases
->nr_patch_id
- 1; i
>= 0; i
--)
1450 fprintf(file
, "prerequisite-patch-id: %s\n", oid_to_hex(&bases
->patch_id
[i
]));
1452 free(bases
->patch_id
);
1453 bases
->nr_patch_id
= 0;
1454 bases
->alloc_patch_id
= 0;
1455 oidclr(&bases
->base_commit
);
1458 static const char *diff_title(struct strbuf
*sb
, int reroll_count
,
1459 const char *generic
, const char *rerolled
)
1461 if (reroll_count
<= 0)
1462 strbuf_addstr(sb
, generic
);
1463 else /* RFC may be v0, so allow -v1 to diff against v0 */
1464 strbuf_addf(sb
, rerolled
, reroll_count
- 1);
1468 static void infer_range_diff_ranges(struct strbuf
*r1
,
1471 struct commit
*origin
,
1472 struct commit
*head
)
1474 const char *head_oid
= oid_to_hex(&head
->object
.oid
);
1476 if (!strstr(prev
, "..")) {
1477 strbuf_addf(r1
, "%s..%s", head_oid
, prev
);
1478 strbuf_addf(r2
, "%s..%s", prev
, head_oid
);
1479 } else if (!origin
) {
1480 die(_("failed to infer range-diff ranges"));
1482 strbuf_addstr(r1
, prev
);
1483 strbuf_addf(r2
, "%s..%s",
1484 oid_to_hex(&origin
->object
.oid
), head_oid
);
1488 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
1490 struct commit
*commit
;
1491 struct commit
**list
= NULL
;
1492 struct rev_info rev
;
1493 struct setup_revision_opt s_r_opt
;
1494 int nr
= 0, total
, i
;
1496 int start_number
= -1;
1497 int just_numbers
= 0;
1498 int ignore_if_in_upstream
= 0;
1499 int cover_letter
= -1;
1500 int boundary_count
= 0;
1501 int no_binary_diff
= 0;
1502 int zero_commit
= 0;
1503 struct commit
*origin
= NULL
;
1504 const char *in_reply_to
= NULL
;
1505 struct patch_ids ids
;
1506 struct strbuf buf
= STRBUF_INIT
;
1507 int use_patch_format
= 0;
1509 int reroll_count
= -1;
1510 char *branch_name
= NULL
;
1511 char *base_commit
= NULL
;
1512 struct base_tree_info bases
;
1513 int show_progress
= 0;
1514 struct progress
*progress
= NULL
;
1515 struct oid_array idiff_prev
= OID_ARRAY_INIT
;
1516 struct strbuf idiff_title
= STRBUF_INIT
;
1517 const char *rdiff_prev
= NULL
;
1518 struct strbuf rdiff1
= STRBUF_INIT
;
1519 struct strbuf rdiff2
= STRBUF_INIT
;
1520 struct strbuf rdiff_title
= STRBUF_INIT
;
1521 int creation_factor
= -1;
1523 const struct option builtin_format_patch_options
[] = {
1524 { OPTION_CALLBACK
, 'n', "numbered", &numbered
, NULL
,
1525 N_("use [PATCH n/m] even with a single patch"),
1526 PARSE_OPT_NOARG
, numbered_callback
},
1527 { OPTION_CALLBACK
, 'N', "no-numbered", &numbered
, NULL
,
1528 N_("use [PATCH] even with multiple patches"),
1529 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, no_numbered_callback
},
1530 OPT_BOOL('s', "signoff", &do_signoff
, N_("add Signed-off-by:")),
1531 OPT_BOOL(0, "stdout", &use_stdout
,
1532 N_("print patches to standard out")),
1533 OPT_BOOL(0, "cover-letter", &cover_letter
,
1534 N_("generate a cover letter")),
1535 OPT_BOOL(0, "numbered-files", &just_numbers
,
1536 N_("use simple number sequence for output file names")),
1537 OPT_STRING(0, "suffix", &fmt_patch_suffix
, N_("sfx"),
1538 N_("use <sfx> instead of '.patch'")),
1539 OPT_INTEGER(0, "start-number", &start_number
,
1540 N_("start numbering patches at <n> instead of 1")),
1541 OPT_INTEGER('v', "reroll-count", &reroll_count
,
1542 N_("mark the series as Nth re-roll")),
1543 { OPTION_CALLBACK
, 0, "rfc", &rev
, NULL
,
1544 N_("Use [RFC PATCH] instead of [PATCH]"),
1545 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, rfc_callback
},
1546 { OPTION_CALLBACK
, 0, "subject-prefix", &rev
, N_("prefix"),
1547 N_("Use [<prefix>] instead of [PATCH]"),
1548 PARSE_OPT_NONEG
, subject_prefix_callback
},
1549 { OPTION_CALLBACK
, 'o', "output-directory", &output_directory
,
1550 N_("dir"), N_("store resulting files in <dir>"),
1551 PARSE_OPT_NONEG
, output_directory_callback
},
1552 { OPTION_CALLBACK
, 'k', "keep-subject", &rev
, NULL
,
1553 N_("don't strip/add [PATCH]"),
1554 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, keep_callback
},
1555 OPT_BOOL(0, "no-binary", &no_binary_diff
,
1556 N_("don't output binary diffs")),
1557 OPT_BOOL(0, "zero-commit", &zero_commit
,
1558 N_("output all-zero hash in From header")),
1559 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream
,
1560 N_("don't include a patch matching a commit upstream")),
1561 OPT_SET_INT_F('p', "no-stat", &use_patch_format
,
1562 N_("show patch format instead of default (patch + stat)"),
1563 1, PARSE_OPT_NONEG
),
1564 OPT_GROUP(N_("Messaging")),
1565 { OPTION_CALLBACK
, 0, "add-header", NULL
, N_("header"),
1566 N_("add email header"), 0, header_callback
},
1567 { OPTION_CALLBACK
, 0, "to", NULL
, N_("email"), N_("add To: header"),
1569 { OPTION_CALLBACK
, 0, "cc", NULL
, N_("email"), N_("add Cc: header"),
1571 { OPTION_CALLBACK
, 0, "from", &from
, N_("ident"),
1572 N_("set From address to <ident> (or committer ident if absent)"),
1573 PARSE_OPT_OPTARG
, from_callback
},
1574 OPT_STRING(0, "in-reply-to", &in_reply_to
, N_("message-id"),
1575 N_("make first mail a reply to <message-id>")),
1576 { OPTION_CALLBACK
, 0, "attach", &rev
, N_("boundary"),
1577 N_("attach the patch"), PARSE_OPT_OPTARG
,
1579 { OPTION_CALLBACK
, 0, "inline", &rev
, N_("boundary"),
1580 N_("inline the patch"),
1581 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
,
1583 { OPTION_CALLBACK
, 0, "thread", &thread
, N_("style"),
1584 N_("enable message threading, styles: shallow, deep"),
1585 PARSE_OPT_OPTARG
, thread_callback
},
1586 OPT_STRING(0, "signature", &signature
, N_("signature"),
1587 N_("add a signature")),
1588 OPT_STRING(0, "base", &base_commit
, N_("base-commit"),
1589 N_("add prerequisite tree info to the patch series")),
1590 OPT_FILENAME(0, "signature-file", &signature_file
,
1591 N_("add a signature from a file")),
1592 OPT__QUIET(&quiet
, N_("don't print the patch filenames")),
1593 OPT_BOOL(0, "progress", &show_progress
,
1594 N_("show progress while generating patches")),
1595 OPT_CALLBACK(0, "interdiff", &idiff_prev
, N_("rev"),
1596 N_("show changes against <rev> in cover letter or single patch"),
1597 parse_opt_object_name
),
1598 OPT_STRING(0, "range-diff", &rdiff_prev
, N_("refspec"),
1599 N_("show changes against <refspec> in cover letter or single patch")),
1600 OPT_INTEGER(0, "creation-factor", &creation_factor
,
1601 N_("percentage by which creation is weighted")),
1605 extra_hdr
.strdup_strings
= 1;
1606 extra_to
.strdup_strings
= 1;
1607 extra_cc
.strdup_strings
= 1;
1608 init_log_defaults();
1609 git_config(git_format_config
, NULL
);
1610 repo_init_revisions(the_repository
, &rev
, prefix
);
1611 rev
.commit_format
= CMIT_FMT_EMAIL
;
1612 rev
.expand_tabs_in_log_default
= 0;
1613 rev
.verbose_header
= 1;
1615 rev
.max_parents
= 1;
1616 rev
.diffopt
.flags
.recursive
= 1;
1617 rev
.subject_prefix
= fmt_patch_subject_prefix
;
1618 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
1619 s_r_opt
.def
= "HEAD";
1620 s_r_opt
.revarg_opt
= REVARG_COMMITTISH
;
1622 if (default_attach
) {
1623 rev
.mime_boundary
= default_attach
;
1628 * Parse the arguments before setup_revisions(), or something
1629 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1630 * possibly a valid SHA1.
1632 argc
= parse_options(argc
, argv
, prefix
, builtin_format_patch_options
,
1633 builtin_format_patch_usage
,
1634 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
1635 PARSE_OPT_KEEP_DASHDASH
);
1637 if (0 < reroll_count
) {
1638 struct strbuf sprefix
= STRBUF_INIT
;
1639 strbuf_addf(&sprefix
, "%s v%d",
1640 rev
.subject_prefix
, reroll_count
);
1641 rev
.reroll_count
= reroll_count
;
1642 rev
.subject_prefix
= strbuf_detach(&sprefix
, NULL
);
1645 for (i
= 0; i
< extra_hdr
.nr
; i
++) {
1646 strbuf_addstr(&buf
, extra_hdr
.items
[i
].string
);
1647 strbuf_addch(&buf
, '\n');
1651 strbuf_addstr(&buf
, "To: ");
1652 for (i
= 0; i
< extra_to
.nr
; i
++) {
1654 strbuf_addstr(&buf
, " ");
1655 strbuf_addstr(&buf
, extra_to
.items
[i
].string
);
1656 if (i
+ 1 < extra_to
.nr
)
1657 strbuf_addch(&buf
, ',');
1658 strbuf_addch(&buf
, '\n');
1662 strbuf_addstr(&buf
, "Cc: ");
1663 for (i
= 0; i
< extra_cc
.nr
; i
++) {
1665 strbuf_addstr(&buf
, " ");
1666 strbuf_addstr(&buf
, extra_cc
.items
[i
].string
);
1667 if (i
+ 1 < extra_cc
.nr
)
1668 strbuf_addch(&buf
, ',');
1669 strbuf_addch(&buf
, '\n');
1672 rev
.extra_headers
= strbuf_detach(&buf
, NULL
);
1675 if (split_ident_line(&rev
.from_ident
, from
, strlen(from
)))
1676 die(_("invalid ident line: %s"), from
);
1679 if (start_number
< 0)
1683 * If numbered is set solely due to format.numbered in config,
1684 * and it would conflict with --keep-subject (-k) from the
1685 * command line, reset "numbered".
1687 if (numbered
&& keep_subject
&& !numbered_cmdline_opt
)
1690 if (numbered
&& keep_subject
)
1691 die(_("-n and -k are mutually exclusive"));
1692 if (keep_subject
&& subject_prefix
)
1693 die(_("--subject-prefix/--rfc and -k are mutually exclusive"));
1694 rev
.preserve_subject
= keep_subject
;
1696 argc
= setup_revisions(argc
, argv
, &rev
, &s_r_opt
);
1698 die(_("unrecognized argument: %s"), argv
[1]);
1700 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME
)
1701 die(_("--name-only does not make sense"));
1702 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME_STATUS
)
1703 die(_("--name-status does not make sense"));
1704 if (rev
.diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
)
1705 die(_("--check does not make sense"));
1707 if (!use_patch_format
&&
1708 (!rev
.diffopt
.output_format
||
1709 rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
))
1710 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
;
1711 if (!rev
.diffopt
.stat_width
)
1712 rev
.diffopt
.stat_width
= MAIL_DEFAULT_WRAP
;
1714 /* Always generate a patch */
1715 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
1717 rev
.zero_commit
= zero_commit
;
1719 if (!rev
.diffopt
.flags
.text
&& !no_binary_diff
)
1720 rev
.diffopt
.flags
.binary
= 1;
1723 init_display_notes(&rev
.notes_opt
);
1725 if (!output_directory
&& !use_stdout
)
1726 output_directory
= config_output_directory
;
1729 output_directory
= set_outdir(prefix
, output_directory
);
1733 if (output_directory
) {
1734 if (rev
.diffopt
.use_color
!= GIT_COLOR_ALWAYS
)
1735 rev
.diffopt
.use_color
= GIT_COLOR_NEVER
;
1737 die(_("standard output, or directory, which one?"));
1738 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
1739 die_errno(_("Could not create directory '%s'"),
1743 if (rev
.pending
.nr
== 1) {
1746 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
1748 * This is traditional behaviour of "git format-patch
1749 * origin" that prepares what the origin side still
1752 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
1753 add_head_to_pending(&rev
);
1757 * Otherwise, it is "format-patch -22 HEAD", and/or
1758 * "format-patch --root HEAD". The user wants
1759 * get_revision() to do the usual traversal.
1762 if (!strcmp(rev
.pending
.objects
[0].name
, "HEAD"))
1766 const char *ref
, *v
;
1767 ref
= resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
,
1769 if (ref
&& skip_prefix(ref
, "refs/heads/", &v
))
1770 branch_name
= xstrdup(v
);
1772 branch_name
= xstrdup(""); /* no branch */
1777 * We cannot move this anywhere earlier because we do want to
1778 * know if --root was given explicitly from the command line.
1780 rev
.show_root_diff
= 1;
1782 if (ignore_if_in_upstream
) {
1783 /* Don't say anything if head and upstream are the same. */
1784 if (rev
.pending
.nr
== 2) {
1785 struct object_array_entry
*o
= rev
.pending
.objects
;
1786 if (oideq(&o
[0].item
->oid
, &o
[1].item
->oid
))
1789 get_patch_ids(&rev
, &ids
);
1792 if (prepare_revision_walk(&rev
))
1793 die(_("revision walk setup failed"));
1795 while ((commit
= get_revision(&rev
)) != NULL
) {
1796 if (commit
->object
.flags
& BOUNDARY
) {
1798 origin
= (boundary_count
== 1) ? commit
: NULL
;
1802 if (ignore_if_in_upstream
&& has_commit_patch_id(commit
, &ids
))
1806 REALLOC_ARRAY(list
, nr
);
1807 list
[nr
- 1] = commit
;
1813 if (cover_letter
== -1) {
1814 if (config_cover_letter
== COVER_AUTO
)
1815 cover_letter
= (total
> 1);
1817 cover_letter
= (config_cover_letter
== COVER_ON
);
1819 if (!keep_subject
&& auto_number
&& (total
> 1 || cover_letter
))
1822 rev
.total
= total
+ start_number
- 1;
1824 if (idiff_prev
.nr
) {
1825 if (!cover_letter
&& total
!= 1)
1826 die(_("--interdiff requires --cover-letter or single patch"));
1827 rev
.idiff_oid1
= &idiff_prev
.oid
[idiff_prev
.nr
- 1];
1828 rev
.idiff_oid2
= get_commit_tree_oid(list
[0]);
1829 rev
.idiff_title
= diff_title(&idiff_title
, reroll_count
,
1831 _("Interdiff against v%d:"));
1834 if (creation_factor
< 0)
1835 creation_factor
= RANGE_DIFF_CREATION_FACTOR_DEFAULT
;
1836 else if (!rdiff_prev
)
1837 die(_("--creation-factor requires --range-diff"));
1840 if (!cover_letter
&& total
!= 1)
1841 die(_("--range-diff requires --cover-letter or single patch"));
1843 infer_range_diff_ranges(&rdiff1
, &rdiff2
, rdiff_prev
,
1845 rev
.rdiff1
= rdiff1
.buf
;
1846 rev
.rdiff2
= rdiff2
.buf
;
1847 rev
.creation_factor
= creation_factor
;
1848 rev
.rdiff_title
= diff_title(&rdiff_title
, reroll_count
,
1850 _("Range-diff against v%d:"));
1854 ; /* --no-signature inhibits all signatures */
1855 } else if (signature
&& signature
!= git_version_string
) {
1856 ; /* non-default signature already set */
1857 } else if (signature_file
) {
1858 struct strbuf buf
= STRBUF_INIT
;
1860 if (strbuf_read_file(&buf
, signature_file
, 128) < 0)
1861 die_errno(_("unable to read signature file '%s'"), signature_file
);
1862 signature
= strbuf_detach(&buf
, NULL
);
1865 memset(&bases
, 0, sizeof(bases
));
1866 if (base_commit
|| base_auto
) {
1867 struct commit
*base
= get_base_commit(base_commit
, list
, nr
);
1868 reset_revision_walk();
1869 clear_object_flags(UNINTERESTING
);
1870 prepare_bases(&bases
, base
, list
, nr
);
1873 if (in_reply_to
|| thread
|| cover_letter
)
1874 rev
.ref_message_ids
= xcalloc(1, sizeof(struct string_list
));
1876 const char *msgid
= clean_message_id(in_reply_to
);
1877 string_list_append(rev
.ref_message_ids
, msgid
);
1879 rev
.numbered_files
= just_numbers
;
1880 rev
.patch_suffix
= fmt_patch_suffix
;
1883 gen_message_id(&rev
, "cover");
1884 make_cover_letter(&rev
, use_stdout
,
1885 origin
, nr
, list
, branch_name
, quiet
);
1886 print_bases(&bases
, rev
.diffopt
.file
);
1887 print_signature(rev
.diffopt
.file
);
1890 /* interdiff/range-diff in cover-letter; omit from patches */
1891 rev
.idiff_oid1
= NULL
;
1894 rev
.add_signoff
= do_signoff
;
1897 progress
= start_delayed_progress(_("Generating patches"), total
);
1900 display_progress(progress
, total
- nr
);
1902 rev
.nr
= total
- nr
+ (start_number
- 1);
1903 /* Make the second and subsequent mails replies to the first */
1905 /* Have we already had a message ID? */
1906 if (rev
.message_id
) {
1908 * For deep threading: make every mail
1909 * a reply to the previous one, no
1910 * matter what other options are set.
1912 * For shallow threading:
1914 * Without --cover-letter and
1915 * --in-reply-to, make every mail a
1916 * reply to the one before.
1918 * With --in-reply-to but no
1919 * --cover-letter, make every mail a
1920 * reply to the <reply-to>.
1922 * With --cover-letter, make every
1923 * mail but the cover letter a reply
1924 * to the cover letter. The cover
1925 * letter is a reply to the
1926 * --in-reply-to, if specified.
1928 if (thread
== THREAD_SHALLOW
1929 && rev
.ref_message_ids
->nr
> 0
1930 && (!cover_letter
|| rev
.nr
> 1))
1931 free(rev
.message_id
);
1933 string_list_append(rev
.ref_message_ids
,
1936 gen_message_id(&rev
, oid_to_hex(&commit
->object
.oid
));
1940 open_next_file(rev
.numbered_files
? NULL
: commit
, NULL
, &rev
, quiet
))
1941 die(_("Failed to create output files"));
1942 shown
= log_tree_commit(&rev
, commit
);
1943 free_commit_buffer(commit
);
1945 /* We put one extra blank line between formatted
1946 * patches and this flag is used by log-tree code
1947 * to see if it needs to emit a LF before showing
1948 * the log; when using one file per patch, we do
1949 * not want the extra blank line.
1954 print_bases(&bases
, rev
.diffopt
.file
);
1955 if (rev
.mime_boundary
)
1956 fprintf(rev
.diffopt
.file
, "\n--%s%s--\n\n\n",
1957 mime_boundary_leader
,
1960 print_signature(rev
.diffopt
.file
);
1963 fclose(rev
.diffopt
.file
);
1965 stop_progress(&progress
);
1968 string_list_clear(&extra_to
, 0);
1969 string_list_clear(&extra_cc
, 0);
1970 string_list_clear(&extra_hdr
, 0);
1971 if (ignore_if_in_upstream
)
1972 free_patch_ids(&ids
);
1975 oid_array_clear(&idiff_prev
);
1976 strbuf_release(&idiff_title
);
1977 strbuf_release(&rdiff1
);
1978 strbuf_release(&rdiff2
);
1979 strbuf_release(&rdiff_title
);
1983 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1985 struct object_id oid
;
1986 if (get_oid(arg
, &oid
) == 0) {
1987 struct commit
*commit
= lookup_commit_reference(the_repository
,
1990 commit
->object
.flags
|= flags
;
1991 add_pending_object(revs
, &commit
->object
, arg
);
1998 static const char * const cherry_usage
[] = {
1999 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
2003 static void print_commit(char sign
, struct commit
*commit
, int verbose
,
2004 int abbrev
, FILE *file
)
2007 fprintf(file
, "%c %s\n", sign
,
2008 find_unique_abbrev(&commit
->object
.oid
, abbrev
));
2010 struct strbuf buf
= STRBUF_INIT
;
2011 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &buf
);
2012 fprintf(file
, "%c %s %s\n", sign
,
2013 find_unique_abbrev(&commit
->object
.oid
, abbrev
),
2015 strbuf_release(&buf
);
2019 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
2021 struct rev_info revs
;
2022 struct patch_ids ids
;
2023 struct commit
*commit
;
2024 struct commit_list
*list
= NULL
;
2025 struct branch
*current_branch
;
2026 const char *upstream
;
2027 const char *head
= "HEAD";
2028 const char *limit
= NULL
;
2029 int verbose
= 0, abbrev
= 0;
2031 struct option options
[] = {
2032 OPT__ABBREV(&abbrev
),
2033 OPT__VERBOSE(&verbose
, N_("be verbose")),
2037 argc
= parse_options(argc
, argv
, prefix
, options
, cherry_usage
, 0);
2050 current_branch
= branch_get(NULL
);
2051 upstream
= branch_get_upstream(current_branch
, NULL
);
2053 fprintf(stderr
, _("Could not find a tracked"
2054 " remote branch, please"
2055 " specify <upstream> manually.\n"));
2056 usage_with_options(cherry_usage
, options
);
2060 repo_init_revisions(the_repository
, &revs
, prefix
);
2061 revs
.max_parents
= 1;
2063 if (add_pending_commit(head
, &revs
, 0))
2064 die(_("Unknown commit %s"), head
);
2065 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
2066 die(_("Unknown commit %s"), upstream
);
2068 /* Don't say anything if head and upstream are the same. */
2069 if (revs
.pending
.nr
== 2) {
2070 struct object_array_entry
*o
= revs
.pending
.objects
;
2071 if (oideq(&o
[0].item
->oid
, &o
[1].item
->oid
))
2075 get_patch_ids(&revs
, &ids
);
2077 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
2078 die(_("Unknown commit %s"), limit
);
2080 /* reverse the list of commits */
2081 if (prepare_revision_walk(&revs
))
2082 die(_("revision walk setup failed"));
2083 while ((commit
= get_revision(&revs
)) != NULL
) {
2084 commit_list_insert(commit
, &list
);
2090 commit
= list
->item
;
2091 if (has_commit_patch_id(commit
, &ids
))
2093 print_commit(sign
, commit
, verbose
, abbrev
, revs
.diffopt
.file
);
2097 free_patch_ids(&ids
);