2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
16 #include "reflog-walk.h"
17 #include "patch-ids.h"
18 #include "run-command.h"
21 #include "string-list.h"
22 #include "parse-options.h"
25 #include "streaming.h"
28 #include "gpg-interface.h"
30 /* Set a default date-time format for git log ("log.date" config variable) */
31 static const char *default_date_mode
= NULL
;
33 static int default_abbrev_commit
;
34 static int default_show_root
= 1;
35 static int default_follow
;
36 static int default_show_signature
;
37 static int decoration_style
;
38 static int decoration_given
;
39 static int use_mailmap_config
;
40 static const char *fmt_patch_subject_prefix
= "PATCH";
41 static const char *fmt_pretty
;
43 static const char * const builtin_log_usage
[] = {
44 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
45 N_("git show [<options>] <object>..."),
49 struct line_opt_callback_data
{
52 struct string_list args
;
55 static int auto_decoration_style(void)
57 return (isatty(1) || pager_in_use()) ? DECORATE_SHORT_REFS
: 0;
60 static int parse_decoration_style(const char *var
, const char *value
)
62 switch (git_config_maybe_bool(var
, value
)) {
64 return DECORATE_SHORT_REFS
;
70 if (!strcmp(value
, "full"))
71 return DECORATE_FULL_REFS
;
72 else if (!strcmp(value
, "short"))
73 return DECORATE_SHORT_REFS
;
74 else if (!strcmp(value
, "auto"))
75 return auto_decoration_style();
79 static int decorate_callback(const struct option
*opt
, const char *arg
, int unset
)
84 decoration_style
= parse_decoration_style("command line", arg
);
86 decoration_style
= DECORATE_SHORT_REFS
;
88 if (decoration_style
< 0)
89 die(_("invalid --decorate option: %s"), arg
);
96 static int log_line_range_callback(const struct option
*option
, const char *arg
, int unset
)
98 struct line_opt_callback_data
*data
= option
->value
;
103 data
->rev
->line_level_traverse
= 1;
104 string_list_append(&data
->args
, arg
);
109 static void init_log_defaults(void)
111 init_grep_defaults();
112 init_diff_ui_defaults();
115 static void cmd_log_init_defaults(struct rev_info
*rev
)
118 get_commit_format(fmt_pretty
, rev
);
120 DIFF_OPT_SET(&rev
->diffopt
, DEFAULT_FOLLOW_RENAMES
);
121 rev
->verbose_header
= 1;
122 DIFF_OPT_SET(&rev
->diffopt
, RECURSIVE
);
123 rev
->diffopt
.stat_width
= -1; /* use full terminal width */
124 rev
->diffopt
.stat_graph_width
= -1; /* respect statGraphWidth config */
125 rev
->abbrev_commit
= default_abbrev_commit
;
126 rev
->show_root_diff
= default_show_root
;
127 rev
->subject_prefix
= fmt_patch_subject_prefix
;
128 rev
->show_signature
= default_show_signature
;
129 DIFF_OPT_SET(&rev
->diffopt
, ALLOW_TEXTCONV
);
131 if (default_date_mode
)
132 parse_date_format(default_date_mode
, &rev
->date_mode
);
133 rev
->diffopt
.touched_flags
= 0;
136 static void cmd_log_init_finish(int argc
, const char **argv
, const char *prefix
,
137 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
139 struct userformat_want w
;
140 int quiet
= 0, source
= 0, mailmap
= 0;
141 static struct line_opt_callback_data line_cb
= {NULL
, NULL
, STRING_LIST_INIT_DUP
};
143 const struct option builtin_log_options
[] = {
144 OPT__QUIET(&quiet
, N_("suppress diff output")),
145 OPT_BOOL(0, "source", &source
, N_("show source")),
146 OPT_BOOL(0, "use-mailmap", &mailmap
, N_("Use mail map file")),
147 { OPTION_CALLBACK
, 0, "decorate", NULL
, NULL
, N_("decorate options"),
148 PARSE_OPT_OPTARG
, decorate_callback
},
149 OPT_CALLBACK('L', NULL
, &line_cb
, "n,m:file",
150 N_("Process line range n,m in file, counting from 1"),
151 log_line_range_callback
),
156 line_cb
.prefix
= prefix
;
158 mailmap
= use_mailmap_config
;
159 argc
= parse_options(argc
, argv
, prefix
,
160 builtin_log_options
, builtin_log_usage
,
161 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
162 PARSE_OPT_KEEP_DASHDASH
);
165 rev
->diffopt
.output_format
|= DIFF_FORMAT_NO_OUTPUT
;
166 argc
= setup_revisions(argc
, argv
, rev
, opt
);
168 /* Any arguments at this point are not recognized */
170 die(_("unrecognized argument: %s"), argv
[1]);
172 memset(&w
, 0, sizeof(w
));
173 userformat_find_requirements(NULL
, &w
);
175 if (!rev
->show_notes_given
&& (!rev
->pretty_given
|| w
.notes
))
178 init_display_notes(&rev
->notes_opt
);
180 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
||
181 DIFF_OPT_TST(&rev
->diffopt
, FOLLOW_RENAMES
))
182 rev
->always_show_header
= 0;
185 rev
->show_source
= 1;
188 rev
->mailmap
= xcalloc(1, sizeof(struct string_list
));
189 read_mailmap(rev
->mailmap
, NULL
);
192 if (rev
->pretty_given
&& rev
->commit_format
== CMIT_FMT_RAW
) {
194 * "log --pretty=raw" is special; ignore UI oriented
195 * configuration variables such as decoration.
197 if (!decoration_given
)
198 decoration_style
= 0;
199 if (!rev
->abbrev_commit_given
)
200 rev
->abbrev_commit
= 0;
203 if (decoration_style
) {
204 rev
->show_decorations
= 1;
205 load_ref_decorations(decoration_style
);
208 if (rev
->line_level_traverse
)
209 line_log_init(rev
, line_cb
.prefix
, &line_cb
.args
);
214 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
215 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
217 cmd_log_init_defaults(rev
);
218 cmd_log_init_finish(argc
, argv
, prefix
, rev
, opt
);
222 * This gives a rough estimate for how many commits we
223 * will print out in the list.
225 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
230 struct commit
*commit
= list
->item
;
231 unsigned int flags
= commit
->object
.flags
;
233 if (!(flags
& (TREESAME
| UNINTERESTING
)))
239 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
241 if (rev
->shown_one
) {
243 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
244 putchar(rev
->diffopt
.line_termination
);
246 fprintf(rev
->diffopt
.file
, _("Final output: %d %s\n"), nr
, stage
);
249 static struct itimerval early_output_timer
;
251 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
253 int i
= revs
->early_output
, close_file
= revs
->diffopt
.close_file
;
256 revs
->diffopt
.close_file
= 0;
257 sort_in_topological_order(&list
, revs
->sort_order
);
259 struct commit
*commit
= list
->item
;
260 switch (simplify_commit(revs
, commit
)) {
263 int n
= estimate_commit_count(revs
, list
);
264 show_early_header(revs
, "incomplete", n
);
267 log_tree_commit(revs
, commit
);
274 fclose(revs
->diffopt
.file
);
280 /* Did we already get enough commits for the early output? */
283 fclose(revs
->diffopt
.file
);
288 * ..if no, then repeat it twice a second until we
291 * NOTE! We don't use "it_interval", because if the
292 * reader isn't listening, we want our output to be
293 * throttled by the writing, and not have the timer
294 * trigger every second even if we're blocked on a
297 early_output_timer
.it_value
.tv_sec
= 0;
298 early_output_timer
.it_value
.tv_usec
= 500000;
299 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
302 static void early_output(int signal
)
304 show_early_output
= log_show_early
;
307 static void setup_early_output(struct rev_info
*rev
)
312 * Set up the signal handler, minimally intrusively:
313 * we only set a single volatile integer word (not
314 * using sigatomic_t - trying to avoid unnecessary
315 * system dependencies and headers), and using
318 memset(&sa
, 0, sizeof(sa
));
319 sa
.sa_handler
= early_output
;
320 sigemptyset(&sa
.sa_mask
);
321 sa
.sa_flags
= SA_RESTART
;
322 sigaction(SIGALRM
, &sa
, NULL
);
325 * If we can get the whole output in less than a
326 * tenth of a second, don't even bother doing the
327 * early-output thing..
329 * This is a one-time-only trigger.
331 early_output_timer
.it_value
.tv_sec
= 0;
332 early_output_timer
.it_value
.tv_usec
= 100000;
333 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
336 static void finish_early_output(struct rev_info
*rev
)
338 int n
= estimate_commit_count(rev
, rev
->commits
);
339 signal(SIGALRM
, SIG_IGN
);
340 show_early_header(rev
, "done", n
);
343 static int cmd_log_walk(struct rev_info
*rev
)
345 struct commit
*commit
;
347 int saved_dcctc
= 0, close_file
= rev
->diffopt
.close_file
;
349 if (rev
->early_output
)
350 setup_early_output(rev
);
352 if (prepare_revision_walk(rev
))
353 die(_("revision walk setup failed"));
355 if (rev
->early_output
)
356 finish_early_output(rev
);
359 * For --check and --exit-code, the exit code is based on CHECK_FAILED
360 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
361 * retain that state information if replacing rev->diffopt in this loop
363 rev
->diffopt
.close_file
= 0;
364 while ((commit
= get_revision(rev
)) != NULL
) {
365 if (!log_tree_commit(rev
, commit
) && rev
->max_count
>= 0)
367 * We decremented max_count in get_revision,
368 * but we didn't actually show the commit.
371 if (!rev
->reflog_info
) {
372 /* we allow cycles in reflog ancestry */
373 free_commit_buffer(commit
);
375 free_commit_list(commit
->parents
);
376 commit
->parents
= NULL
;
377 if (saved_nrl
< rev
->diffopt
.needed_rename_limit
)
378 saved_nrl
= rev
->diffopt
.needed_rename_limit
;
379 if (rev
->diffopt
.degraded_cc_to_c
)
382 rev
->diffopt
.degraded_cc_to_c
= saved_dcctc
;
383 rev
->diffopt
.needed_rename_limit
= saved_nrl
;
385 fclose(rev
->diffopt
.file
);
387 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
388 DIFF_OPT_TST(&rev
->diffopt
, CHECK_FAILED
)) {
391 return diff_result_code(&rev
->diffopt
, 0);
394 static int git_log_config(const char *var
, const char *value
, void *cb
)
396 const char *slot_name
;
398 if (!strcmp(var
, "format.pretty"))
399 return git_config_string(&fmt_pretty
, var
, value
);
400 if (!strcmp(var
, "format.subjectprefix"))
401 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
402 if (!strcmp(var
, "log.abbrevcommit")) {
403 default_abbrev_commit
= git_config_bool(var
, value
);
406 if (!strcmp(var
, "log.date"))
407 return git_config_string(&default_date_mode
, var
, value
);
408 if (!strcmp(var
, "log.decorate")) {
409 decoration_style
= parse_decoration_style(var
, value
);
410 if (decoration_style
< 0)
411 decoration_style
= 0; /* maybe warn? */
414 decoration_style
= auto_decoration_style();
416 if (!strcmp(var
, "log.showroot")) {
417 default_show_root
= git_config_bool(var
, value
);
420 if (!strcmp(var
, "log.follow")) {
421 default_follow
= git_config_bool(var
, value
);
424 if (skip_prefix(var
, "color.decorate.", &slot_name
))
425 return parse_decorate_color_config(var
, slot_name
, value
);
426 if (!strcmp(var
, "log.mailmap")) {
427 use_mailmap_config
= git_config_bool(var
, value
);
430 if (!strcmp(var
, "log.showsignature")) {
431 default_show_signature
= git_config_bool(var
, value
);
435 if (grep_config(var
, value
, cb
) < 0)
437 if (git_gpg_config(var
, value
, cb
) < 0)
439 return git_diff_ui_config(var
, value
, cb
);
442 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
445 struct setup_revision_opt opt
;
448 git_config(git_log_config
, NULL
);
450 init_revisions(&rev
, prefix
);
452 rev
.simplify_history
= 0;
453 memset(&opt
, 0, sizeof(opt
));
455 opt
.revarg_opt
= REVARG_COMMITTISH
;
456 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
457 if (!rev
.diffopt
.output_format
)
458 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
459 return cmd_log_walk(&rev
);
462 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
464 struct strbuf out
= STRBUF_INIT
;
465 struct pretty_print_context pp
= {0};
467 pp
.fmt
= rev
->commit_format
;
468 pp
.date_mode
= rev
->date_mode
;
469 pp_user_info(&pp
, "Tagger", &out
, buf
, get_log_output_encoding());
470 fprintf(rev
->diffopt
.file
, "%s", out
.buf
);
471 strbuf_release(&out
);
474 static int show_blob_object(const struct object_id
*oid
, struct rev_info
*rev
, const char *obj_name
)
476 struct object_id oidc
;
477 struct object_context obj_context
;
481 fflush(rev
->diffopt
.file
);
482 if (!DIFF_OPT_TOUCHED(&rev
->diffopt
, ALLOW_TEXTCONV
) ||
483 !DIFF_OPT_TST(&rev
->diffopt
, ALLOW_TEXTCONV
))
484 return stream_blob_to_fd(1, oid
, NULL
, 0);
486 if (get_sha1_with_context(obj_name
, 0, oidc
.hash
, &obj_context
))
487 die(_("Not a valid object name %s"), obj_name
);
488 if (!obj_context
.path
[0] ||
489 !textconv_object(obj_context
.path
, obj_context
.mode
, &oidc
, 1, &buf
, &size
))
490 return stream_blob_to_fd(1, oid
, NULL
, 0);
493 die(_("git show %s: bad file"), obj_name
);
495 write_or_die(1, buf
, size
);
499 static int show_tag_object(const struct object_id
*oid
, struct rev_info
*rev
)
502 enum object_type type
;
503 char *buf
= read_sha1_file(oid
->hash
, &type
, &size
);
507 return error(_("Could not read object %s"), oid_to_hex(oid
));
509 assert(type
== OBJ_TAG
);
510 while (offset
< size
&& buf
[offset
] != '\n') {
511 int new_offset
= offset
+ 1;
512 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
514 if (starts_with(buf
+ offset
, "tagger "))
515 show_tagger(buf
+ offset
+ 7,
516 new_offset
- offset
- 7, rev
);
521 fwrite(buf
+ offset
, size
- offset
, 1, rev
->diffopt
.file
);
526 static int show_tree_object(const unsigned char *sha1
,
528 const char *pathname
, unsigned mode
, int stage
, void *context
)
530 FILE *file
= context
;
531 fprintf(file
, "%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
535 static void show_setup_revisions_tweak(struct rev_info
*rev
,
536 struct setup_revision_opt
*opt
)
538 if (rev
->ignore_merges
) {
539 /* There was no "-m" on the command line */
540 rev
->ignore_merges
= 0;
541 if (!rev
->first_parent_only
&& !rev
->combine_merges
) {
542 /* No "--first-parent", "-c", or "--cc" */
543 rev
->combine_merges
= 1;
544 rev
->dense_combined_merges
= 1;
547 if (!rev
->diffopt
.output_format
)
548 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
551 int cmd_show(int argc
, const char **argv
, const char *prefix
)
554 struct object_array_entry
*objects
;
555 struct setup_revision_opt opt
;
556 struct pathspec match_all
;
557 int i
, count
, ret
= 0;
560 git_config(git_log_config
, NULL
);
562 memset(&match_all
, 0, sizeof(match_all
));
563 init_revisions(&rev
, prefix
);
565 rev
.always_show_header
= 1;
566 rev
.no_walk
= REVISION_WALK_NO_WALK_SORTED
;
567 rev
.diffopt
.stat_width
= -1; /* Scale to real terminal size */
569 memset(&opt
, 0, sizeof(opt
));
571 opt
.tweak
= show_setup_revisions_tweak
;
572 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
575 return cmd_log_walk(&rev
);
577 count
= rev
.pending
.nr
;
578 objects
= rev
.pending
.objects
;
579 for (i
= 0; i
< count
&& !ret
; i
++) {
580 struct object
*o
= objects
[i
].item
;
581 const char *name
= objects
[i
].name
;
584 ret
= show_blob_object(&o
->oid
, &rev
, name
);
587 struct tag
*t
= (struct tag
*)o
;
591 fprintf(rev
.diffopt
.file
, "%stag %s%s\n",
592 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
594 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
595 ret
= show_tag_object(&o
->oid
, &rev
);
599 o
= parse_object(t
->tagged
->oid
.hash
);
601 ret
= error(_("Could not read object %s"),
602 oid_to_hex(&t
->tagged
->oid
));
610 fprintf(rev
.diffopt
.file
, "%stree %s%s\n\n",
611 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
613 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
614 read_tree_recursive((struct tree
*)o
, "", 0, 0, &match_all
,
615 show_tree_object
, rev
.diffopt
.file
);
619 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
620 rev
.pending
.objects
= NULL
;
621 add_object_array(o
, name
, &rev
.pending
);
622 ret
= cmd_log_walk(&rev
);
625 ret
= error(_("Unknown type: %d"), o
->type
);
633 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
635 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
638 struct setup_revision_opt opt
;
641 git_config(git_log_config
, NULL
);
643 init_revisions(&rev
, prefix
);
644 init_reflog_walk(&rev
.reflog_info
);
645 rev
.verbose_header
= 1;
646 memset(&opt
, 0, sizeof(opt
));
648 cmd_log_init_defaults(&rev
);
649 rev
.abbrev_commit
= 1;
650 rev
.commit_format
= CMIT_FMT_ONELINE
;
651 rev
.use_terminator
= 1;
652 rev
.always_show_header
= 1;
653 cmd_log_init_finish(argc
, argv
, prefix
, &rev
, &opt
);
655 return cmd_log_walk(&rev
);
658 static void log_setup_revisions_tweak(struct rev_info
*rev
,
659 struct setup_revision_opt
*opt
)
661 if (DIFF_OPT_TST(&rev
->diffopt
, DEFAULT_FOLLOW_RENAMES
) &&
662 rev
->prune_data
.nr
== 1)
663 DIFF_OPT_SET(&rev
->diffopt
, FOLLOW_RENAMES
);
665 /* Turn --cc/-c into -p --cc/-c when -p was not given */
666 if (!rev
->diffopt
.output_format
&& rev
->combine_merges
)
667 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
669 /* Turn -m on when --cc/-c was given */
670 if (rev
->combine_merges
)
671 rev
->ignore_merges
= 0;
674 int cmd_log(int argc
, const char **argv
, const char *prefix
)
677 struct setup_revision_opt opt
;
680 git_config(git_log_config
, NULL
);
682 init_revisions(&rev
, prefix
);
683 rev
.always_show_header
= 1;
684 memset(&opt
, 0, sizeof(opt
));
686 opt
.revarg_opt
= REVARG_COMMITTISH
;
687 opt
.tweak
= log_setup_revisions_tweak
;
688 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
689 return cmd_log_walk(&rev
);
694 static const char *fmt_patch_suffix
= ".patch";
695 static int numbered
= 0;
696 static int auto_number
= 1;
698 static char *default_attach
= NULL
;
700 static struct string_list extra_hdr
= STRING_LIST_INIT_NODUP
;
701 static struct string_list extra_to
= STRING_LIST_INIT_NODUP
;
702 static struct string_list extra_cc
= STRING_LIST_INIT_NODUP
;
704 static void add_header(const char *value
)
706 struct string_list_item
*item
;
707 int len
= strlen(value
);
708 while (len
&& value
[len
- 1] == '\n')
711 if (!strncasecmp(value
, "to: ", 4)) {
712 item
= string_list_append(&extra_to
, value
+ 4);
714 } else if (!strncasecmp(value
, "cc: ", 4)) {
715 item
= string_list_append(&extra_cc
, value
+ 4);
718 item
= string_list_append(&extra_hdr
, value
);
721 item
->string
[len
] = '\0';
724 #define THREAD_SHALLOW 1
725 #define THREAD_DEEP 2
727 static int do_signoff
;
728 static int base_auto
;
730 static const char *signature
= git_version_string
;
731 static const char *signature_file
;
732 static int config_cover_letter
;
733 static const char *config_output_directory
;
742 static int git_format_config(const char *var
, const char *value
, void *cb
)
744 if (!strcmp(var
, "format.headers")) {
746 die(_("format.headers without value"));
750 if (!strcmp(var
, "format.suffix"))
751 return git_config_string(&fmt_patch_suffix
, var
, value
);
752 if (!strcmp(var
, "format.to")) {
754 return config_error_nonbool(var
);
755 string_list_append(&extra_to
, value
);
758 if (!strcmp(var
, "format.cc")) {
760 return config_error_nonbool(var
);
761 string_list_append(&extra_cc
, value
);
764 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff") ||
765 !strcmp(var
, "color.ui") || !strcmp(var
, "diff.submodule")) {
768 if (!strcmp(var
, "format.numbered")) {
769 if (value
&& !strcasecmp(value
, "auto")) {
773 numbered
= git_config_bool(var
, value
);
774 auto_number
= auto_number
&& numbered
;
777 if (!strcmp(var
, "format.attach")) {
779 default_attach
= xstrdup(value
);
781 default_attach
= xstrdup(git_version_string
);
784 if (!strcmp(var
, "format.thread")) {
785 if (value
&& !strcasecmp(value
, "deep")) {
786 thread
= THREAD_DEEP
;
789 if (value
&& !strcasecmp(value
, "shallow")) {
790 thread
= THREAD_SHALLOW
;
793 thread
= git_config_bool(var
, value
) && THREAD_SHALLOW
;
796 if (!strcmp(var
, "format.signoff")) {
797 do_signoff
= git_config_bool(var
, value
);
800 if (!strcmp(var
, "format.signature"))
801 return git_config_string(&signature
, var
, value
);
802 if (!strcmp(var
, "format.signaturefile"))
803 return git_config_pathname(&signature_file
, var
, value
);
804 if (!strcmp(var
, "format.coverletter")) {
805 if (value
&& !strcasecmp(value
, "auto")) {
806 config_cover_letter
= COVER_AUTO
;
809 config_cover_letter
= git_config_bool(var
, value
) ? COVER_ON
: COVER_OFF
;
812 if (!strcmp(var
, "format.outputdirectory"))
813 return git_config_string(&config_output_directory
, var
, value
);
814 if (!strcmp(var
, "format.useautobase")) {
815 base_auto
= git_config_bool(var
, value
);
818 if (!strcmp(var
, "format.from")) {
819 int b
= git_config_maybe_bool(var
, value
);
822 from
= xstrdup(value
);
824 from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
830 return git_log_config(var
, value
, cb
);
833 static const char *output_directory
= NULL
;
834 static int outdir_offset
;
836 static int open_next_file(struct commit
*commit
, const char *subject
,
837 struct rev_info
*rev
, int quiet
)
839 struct strbuf filename
= STRBUF_INIT
;
840 int suffix_len
= strlen(rev
->patch_suffix
) + 1;
842 if (output_directory
) {
843 strbuf_addstr(&filename
, output_directory
);
845 PATH_MAX
- FORMAT_PATCH_NAME_MAX
- suffix_len
)
846 return error(_("name of output directory is too long"));
847 strbuf_complete(&filename
, '/');
850 if (rev
->numbered_files
)
851 strbuf_addf(&filename
, "%d", rev
->nr
);
853 fmt_output_commit(&filename
, commit
, rev
);
855 fmt_output_subject(&filename
, subject
, rev
);
858 printf("%s\n", filename
.buf
+ outdir_offset
);
860 if ((rev
->diffopt
.file
= fopen(filename
.buf
, "w")) == NULL
)
861 return error(_("Cannot open patch file %s"), filename
.buf
);
863 strbuf_release(&filename
);
867 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
)
869 struct rev_info check_rev
;
870 struct commit
*commit
, *c1
, *c2
;
871 struct object
*o1
, *o2
;
872 unsigned flags1
, flags2
;
874 if (rev
->pending
.nr
!= 2)
875 die(_("Need exactly one range."));
877 o1
= rev
->pending
.objects
[0].item
;
878 o2
= rev
->pending
.objects
[1].item
;
881 c1
= lookup_commit_reference(o1
->oid
.hash
);
882 c2
= lookup_commit_reference(o2
->oid
.hash
);
884 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
885 die(_("Not a range."));
889 /* given a range a..b get all patch ids for b..a */
890 init_revisions(&check_rev
, rev
->prefix
);
891 check_rev
.max_parents
= 1;
892 o1
->flags
^= UNINTERESTING
;
893 o2
->flags
^= UNINTERESTING
;
894 add_pending_object(&check_rev
, o1
, "o1");
895 add_pending_object(&check_rev
, o2
, "o2");
896 if (prepare_revision_walk(&check_rev
))
897 die(_("revision walk setup failed"));
899 while ((commit
= get_revision(&check_rev
)) != NULL
) {
900 add_commit_patch_id(commit
, ids
);
903 /* reset for next revision walk */
904 clear_commit_marks(c1
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
905 clear_commit_marks(c2
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
910 static void gen_message_id(struct rev_info
*info
, char *base
)
912 struct strbuf buf
= STRBUF_INIT
;
913 strbuf_addf(&buf
, "%s.%lu.git.%s", base
,
914 (unsigned long) time(NULL
),
915 git_committer_info(IDENT_NO_NAME
|IDENT_NO_DATE
|IDENT_STRICT
));
916 info
->message_id
= strbuf_detach(&buf
, NULL
);
919 static void print_signature(FILE *file
)
921 if (!signature
|| !*signature
)
924 fprintf(file
, "-- \n%s", signature
);
925 if (signature
[strlen(signature
)-1] != '\n')
930 static void add_branch_description(struct strbuf
*buf
, const char *branch_name
)
932 struct strbuf desc
= STRBUF_INIT
;
933 if (!branch_name
|| !*branch_name
)
935 read_branch_desc(&desc
, branch_name
);
937 strbuf_addch(buf
, '\n');
938 strbuf_addbuf(buf
, &desc
);
939 strbuf_addch(buf
, '\n');
941 strbuf_release(&desc
);
944 static char *find_branch_name(struct rev_info
*rev
)
946 int i
, positive
= -1;
947 struct object_id branch_oid
;
948 const struct object_id
*tip_oid
;
950 char *full_ref
, *branch
= NULL
;
952 for (i
= 0; i
< rev
->cmdline
.nr
; i
++) {
953 if (rev
->cmdline
.rev
[i
].flags
& UNINTERESTING
)
962 ref
= rev
->cmdline
.rev
[positive
].name
;
963 tip_oid
= &rev
->cmdline
.rev
[positive
].item
->oid
;
964 if (dwim_ref(ref
, strlen(ref
), branch_oid
.hash
, &full_ref
) &&
965 skip_prefix(full_ref
, "refs/heads/", &v
) &&
966 !oidcmp(tip_oid
, &branch_oid
))
972 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
973 struct commit
*origin
,
974 int nr
, struct commit
**list
,
975 const char *branch_name
,
978 const char *committer
;
979 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
982 struct strbuf sb
= STRBUF_INIT
;
984 const char *encoding
= "UTF-8";
985 struct diff_options opts
;
986 int need_8bit_cte
= 0;
987 struct pretty_print_context pp
= {0};
988 struct commit
*head
= list
[0];
990 if (!cmit_fmt_is_mail(rev
->commit_format
))
991 die(_("Cover letter needs email format"));
993 committer
= git_committer_info(0);
996 open_next_file(NULL
, rev
->numbered_files
? NULL
: "cover-letter", rev
, quiet
))
999 log_write_email_headers(rev
, head
, &pp
.after_subject
, &need_8bit_cte
);
1001 for (i
= 0; !need_8bit_cte
&& i
< nr
; i
++) {
1002 const char *buf
= get_commit_buffer(list
[i
], NULL
);
1003 if (has_non_ascii(buf
))
1005 unuse_commit_buffer(list
[i
], buf
);
1009 branch_name
= find_branch_name(rev
);
1012 pp
.fmt
= CMIT_FMT_EMAIL
;
1013 pp
.date_mode
.type
= DATE_RFC2822
;
1015 pp
.print_email_subject
= 1;
1016 pp_user_info(&pp
, NULL
, &sb
, committer
, encoding
);
1017 pp_title_line(&pp
, &msg
, &sb
, encoding
, need_8bit_cte
);
1018 pp_remainder(&pp
, &msg
, &sb
, 0);
1019 add_branch_description(&sb
, branch_name
);
1020 fprintf(rev
->diffopt
.file
, "%s\n", sb
.buf
);
1022 strbuf_release(&sb
);
1024 shortlog_init(&log
);
1029 log
.file
= rev
->diffopt
.file
;
1030 for (i
= 0; i
< nr
; i
++)
1031 shortlog_add_commit(&log
, list
[i
]);
1033 shortlog_output(&log
);
1036 * We can only do diffstat with a unique reference point
1041 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
1042 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
1044 diff_setup_done(&opts
);
1046 diff_tree_sha1(origin
->tree
->object
.oid
.hash
,
1047 head
->tree
->object
.oid
.hash
,
1049 diffcore_std(&opts
);
1052 fprintf(rev
->diffopt
.file
, "\n");
1055 static const char *clean_message_id(const char *msg_id
)
1058 const char *a
, *z
, *m
;
1061 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
1066 if (!isspace(ch
) && (ch
!= '>'))
1071 die(_("insane in-reply-to: %s"), msg_id
);
1074 return xmemdupz(a
, z
- a
);
1077 static const char *set_outdir(const char *prefix
, const char *output_directory
)
1079 if (output_directory
&& is_absolute_path(output_directory
))
1080 return output_directory
;
1082 if (!prefix
|| !*prefix
) {
1083 if (output_directory
)
1084 return output_directory
;
1085 /* The user did not explicitly ask for "./" */
1090 outdir_offset
= strlen(prefix
);
1091 if (!output_directory
)
1094 return xstrdup(prefix_filename(prefix
, outdir_offset
,
1098 static const char * const builtin_format_patch_usage
[] = {
1099 N_("git format-patch [<options>] [<since> | <revision-range>]"),
1103 static int keep_subject
= 0;
1105 static int keep_callback(const struct option
*opt
, const char *arg
, int unset
)
1107 ((struct rev_info
*)opt
->value
)->total
= -1;
1112 static int subject_prefix
= 0;
1114 static int subject_prefix_callback(const struct option
*opt
, const char *arg
,
1118 ((struct rev_info
*)opt
->value
)->subject_prefix
= arg
;
1122 static int rfc_callback(const struct option
*opt
, const char *arg
, int unset
)
1124 return subject_prefix_callback(opt
, "RFC PATCH", unset
);
1127 static int numbered_cmdline_opt
= 0;
1129 static int numbered_callback(const struct option
*opt
, const char *arg
,
1132 *(int *)opt
->value
= numbered_cmdline_opt
= unset
? 0 : 1;
1138 static int no_numbered_callback(const struct option
*opt
, const char *arg
,
1141 return numbered_callback(opt
, arg
, 1);
1144 static int output_directory_callback(const struct option
*opt
, const char *arg
,
1147 const char **dir
= (const char **)opt
->value
;
1149 die(_("Two output directories?"));
1154 static int thread_callback(const struct option
*opt
, const char *arg
, int unset
)
1156 int *thread
= (int *)opt
->value
;
1159 else if (!arg
|| !strcmp(arg
, "shallow"))
1160 *thread
= THREAD_SHALLOW
;
1161 else if (!strcmp(arg
, "deep"))
1162 *thread
= THREAD_DEEP
;
1168 static int attach_callback(const struct option
*opt
, const char *arg
, int unset
)
1170 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1172 rev
->mime_boundary
= NULL
;
1174 rev
->mime_boundary
= arg
;
1176 rev
->mime_boundary
= git_version_string
;
1177 rev
->no_inline
= unset
? 0 : 1;
1181 static int inline_callback(const struct option
*opt
, const char *arg
, int unset
)
1183 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1185 rev
->mime_boundary
= NULL
;
1187 rev
->mime_boundary
= arg
;
1189 rev
->mime_boundary
= git_version_string
;
1194 static int header_callback(const struct option
*opt
, const char *arg
, int unset
)
1197 string_list_clear(&extra_hdr
, 0);
1198 string_list_clear(&extra_to
, 0);
1199 string_list_clear(&extra_cc
, 0);
1206 static int to_callback(const struct option
*opt
, const char *arg
, int unset
)
1209 string_list_clear(&extra_to
, 0);
1211 string_list_append(&extra_to
, arg
);
1215 static int cc_callback(const struct option
*opt
, const char *arg
, int unset
)
1218 string_list_clear(&extra_cc
, 0);
1220 string_list_append(&extra_cc
, arg
);
1224 static int from_callback(const struct option
*opt
, const char *arg
, int unset
)
1226 char **from
= opt
->value
;
1233 *from
= xstrdup(arg
);
1235 *from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
1239 struct base_tree_info
{
1240 struct object_id base_commit
;
1241 int nr_patch_id
, alloc_patch_id
;
1242 struct object_id
*patch_id
;
1245 static struct commit
*get_base_commit(const char *base_commit
,
1246 struct commit
**list
,
1249 struct commit
*base
= NULL
;
1250 struct commit
**rev
;
1251 int i
= 0, rev_nr
= 0;
1253 if (base_commit
&& strcmp(base_commit
, "auto")) {
1254 base
= lookup_commit_reference_by_name(base_commit
);
1256 die(_("Unknown commit %s"), base_commit
);
1257 } else if ((base_commit
&& !strcmp(base_commit
, "auto")) || base_auto
) {
1258 struct branch
*curr_branch
= branch_get(NULL
);
1259 const char *upstream
= branch_get_upstream(curr_branch
, NULL
);
1261 struct commit_list
*base_list
;
1262 struct commit
*commit
;
1263 struct object_id oid
;
1265 if (get_oid(upstream
, &oid
))
1266 die(_("Failed to resolve '%s' as a valid ref."), upstream
);
1267 commit
= lookup_commit_or_die(oid
.hash
, "upstream base");
1268 base_list
= get_merge_bases_many(commit
, total
, list
);
1269 /* There should be one and only one merge base. */
1270 if (!base_list
|| base_list
->next
)
1271 die(_("Could not find exact merge base."));
1272 base
= base_list
->item
;
1273 free_commit_list(base_list
);
1275 die(_("Failed to get upstream, if you want to record base commit automatically,\n"
1276 "please use git branch --set-upstream-to to track a remote branch.\n"
1277 "Or you could specify base commit by --base=<base-commit-id> manually."));
1281 ALLOC_ARRAY(rev
, total
);
1282 for (i
= 0; i
< total
; i
++)
1287 * Get merge base through pair-wise computations
1288 * and store it in rev[0].
1290 while (rev_nr
> 1) {
1291 for (i
= 0; i
< rev_nr
/ 2; i
++) {
1292 struct commit_list
*merge_base
;
1293 merge_base
= get_merge_bases(rev
[2 * i
], rev
[2 * i
+ 1]);
1294 if (!merge_base
|| merge_base
->next
)
1295 die(_("Failed to find exact merge base"));
1297 rev
[i
] = merge_base
->item
;
1301 rev
[i
] = rev
[2 * i
];
1302 rev_nr
= (rev_nr
+ 1) / 2;
1305 if (!in_merge_bases(base
, rev
[0]))
1306 die(_("base commit should be the ancestor of revision list"));
1308 for (i
= 0; i
< total
; i
++) {
1309 if (base
== list
[i
])
1310 die(_("base commit shouldn't be in revision list"));
1317 static void prepare_bases(struct base_tree_info
*bases
,
1318 struct commit
*base
,
1319 struct commit
**list
,
1322 struct commit
*commit
;
1323 struct rev_info revs
;
1324 struct diff_options diffopt
;
1330 diff_setup(&diffopt
);
1331 DIFF_OPT_SET(&diffopt
, RECURSIVE
);
1332 diff_setup_done(&diffopt
);
1334 oidcpy(&bases
->base_commit
, &base
->object
.oid
);
1336 init_revisions(&revs
, NULL
);
1337 revs
.max_parents
= 1;
1338 revs
.topo_order
= 1;
1339 for (i
= 0; i
< total
; i
++) {
1340 list
[i
]->object
.flags
&= ~UNINTERESTING
;
1341 add_pending_object(&revs
, &list
[i
]->object
, "rev_list");
1342 list
[i
]->util
= (void *)1;
1344 base
->object
.flags
|= UNINTERESTING
;
1345 add_pending_object(&revs
, &base
->object
, "base");
1347 if (prepare_revision_walk(&revs
))
1348 die(_("revision walk setup failed"));
1350 * Traverse the commits list, get prerequisite patch ids
1351 * and stuff them in bases structure.
1353 while ((commit
= get_revision(&revs
)) != NULL
) {
1354 struct object_id oid
;
1355 struct object_id
*patch_id
;
1358 if (commit_patch_id(commit
, &diffopt
, oid
.hash
, 0))
1359 die(_("cannot get patch id"));
1360 ALLOC_GROW(bases
->patch_id
, bases
->nr_patch_id
+ 1, bases
->alloc_patch_id
);
1361 patch_id
= bases
->patch_id
+ bases
->nr_patch_id
;
1362 oidcpy(patch_id
, &oid
);
1363 bases
->nr_patch_id
++;
1367 static void print_bases(struct base_tree_info
*bases
, FILE *file
)
1371 /* Only do this once, either for the cover or for the first one */
1372 if (is_null_oid(&bases
->base_commit
))
1375 /* Show the base commit */
1376 fprintf(file
, "\nbase-commit: %s\n", oid_to_hex(&bases
->base_commit
));
1378 /* Show the prerequisite patches */
1379 for (i
= bases
->nr_patch_id
- 1; i
>= 0; i
--)
1380 fprintf(file
, "prerequisite-patch-id: %s\n", oid_to_hex(&bases
->patch_id
[i
]));
1382 free(bases
->patch_id
);
1383 bases
->nr_patch_id
= 0;
1384 bases
->alloc_patch_id
= 0;
1385 oidclr(&bases
->base_commit
);
1388 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
1390 struct commit
*commit
;
1391 struct commit
**list
= NULL
;
1392 struct rev_info rev
;
1393 struct setup_revision_opt s_r_opt
;
1394 int nr
= 0, total
, i
;
1396 int start_number
= -1;
1397 int just_numbers
= 0;
1398 int ignore_if_in_upstream
= 0;
1399 int cover_letter
= -1;
1400 int boundary_count
= 0;
1401 int no_binary_diff
= 0;
1402 int zero_commit
= 0;
1403 struct commit
*origin
= NULL
;
1404 const char *in_reply_to
= NULL
;
1405 struct patch_ids ids
;
1406 struct strbuf buf
= STRBUF_INIT
;
1407 int use_patch_format
= 0;
1409 int reroll_count
= -1;
1410 char *branch_name
= NULL
;
1411 char *base_commit
= NULL
;
1412 struct base_tree_info bases
;
1414 const struct option builtin_format_patch_options
[] = {
1415 { OPTION_CALLBACK
, 'n', "numbered", &numbered
, NULL
,
1416 N_("use [PATCH n/m] even with a single patch"),
1417 PARSE_OPT_NOARG
, numbered_callback
},
1418 { OPTION_CALLBACK
, 'N', "no-numbered", &numbered
, NULL
,
1419 N_("use [PATCH] even with multiple patches"),
1420 PARSE_OPT_NOARG
, no_numbered_callback
},
1421 OPT_BOOL('s', "signoff", &do_signoff
, N_("add Signed-off-by:")),
1422 OPT_BOOL(0, "stdout", &use_stdout
,
1423 N_("print patches to standard out")),
1424 OPT_BOOL(0, "cover-letter", &cover_letter
,
1425 N_("generate a cover letter")),
1426 OPT_BOOL(0, "numbered-files", &just_numbers
,
1427 N_("use simple number sequence for output file names")),
1428 OPT_STRING(0, "suffix", &fmt_patch_suffix
, N_("sfx"),
1429 N_("use <sfx> instead of '.patch'")),
1430 OPT_INTEGER(0, "start-number", &start_number
,
1431 N_("start numbering patches at <n> instead of 1")),
1432 OPT_INTEGER('v', "reroll-count", &reroll_count
,
1433 N_("mark the series as Nth re-roll")),
1434 { OPTION_CALLBACK
, 0, "rfc", &rev
, NULL
,
1435 N_("Use [RFC PATCH] instead of [PATCH]"),
1436 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, rfc_callback
},
1437 { OPTION_CALLBACK
, 0, "subject-prefix", &rev
, N_("prefix"),
1438 N_("Use [<prefix>] instead of [PATCH]"),
1439 PARSE_OPT_NONEG
, subject_prefix_callback
},
1440 { OPTION_CALLBACK
, 'o', "output-directory", &output_directory
,
1441 N_("dir"), N_("store resulting files in <dir>"),
1442 PARSE_OPT_NONEG
, output_directory_callback
},
1443 { OPTION_CALLBACK
, 'k', "keep-subject", &rev
, NULL
,
1444 N_("don't strip/add [PATCH]"),
1445 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, keep_callback
},
1446 OPT_BOOL(0, "no-binary", &no_binary_diff
,
1447 N_("don't output binary diffs")),
1448 OPT_BOOL(0, "zero-commit", &zero_commit
,
1449 N_("output all-zero hash in From header")),
1450 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream
,
1451 N_("don't include a patch matching a commit upstream")),
1452 { OPTION_SET_INT
, 'p', "no-stat", &use_patch_format
, NULL
,
1453 N_("show patch format instead of default (patch + stat)"),
1454 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
, NULL
, 1},
1455 OPT_GROUP(N_("Messaging")),
1456 { OPTION_CALLBACK
, 0, "add-header", NULL
, N_("header"),
1457 N_("add email header"), 0, header_callback
},
1458 { OPTION_CALLBACK
, 0, "to", NULL
, N_("email"), N_("add To: header"),
1460 { OPTION_CALLBACK
, 0, "cc", NULL
, N_("email"), N_("add Cc: header"),
1462 { OPTION_CALLBACK
, 0, "from", &from
, N_("ident"),
1463 N_("set From address to <ident> (or committer ident if absent)"),
1464 PARSE_OPT_OPTARG
, from_callback
},
1465 OPT_STRING(0, "in-reply-to", &in_reply_to
, N_("message-id"),
1466 N_("make first mail a reply to <message-id>")),
1467 { OPTION_CALLBACK
, 0, "attach", &rev
, N_("boundary"),
1468 N_("attach the patch"), PARSE_OPT_OPTARG
,
1470 { OPTION_CALLBACK
, 0, "inline", &rev
, N_("boundary"),
1471 N_("inline the patch"),
1472 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
,
1474 { OPTION_CALLBACK
, 0, "thread", &thread
, N_("style"),
1475 N_("enable message threading, styles: shallow, deep"),
1476 PARSE_OPT_OPTARG
, thread_callback
},
1477 OPT_STRING(0, "signature", &signature
, N_("signature"),
1478 N_("add a signature")),
1479 OPT_STRING(0, "base", &base_commit
, N_("base-commit"),
1480 N_("add prerequisite tree info to the patch series")),
1481 OPT_FILENAME(0, "signature-file", &signature_file
,
1482 N_("add a signature from a file")),
1483 OPT__QUIET(&quiet
, N_("don't print the patch filenames")),
1487 extra_hdr
.strdup_strings
= 1;
1488 extra_to
.strdup_strings
= 1;
1489 extra_cc
.strdup_strings
= 1;
1490 init_log_defaults();
1491 git_config(git_format_config
, NULL
);
1492 init_revisions(&rev
, prefix
);
1493 rev
.commit_format
= CMIT_FMT_EMAIL
;
1494 rev
.expand_tabs_in_log_default
= 0;
1495 rev
.verbose_header
= 1;
1497 rev
.max_parents
= 1;
1498 DIFF_OPT_SET(&rev
.diffopt
, RECURSIVE
);
1499 rev
.subject_prefix
= fmt_patch_subject_prefix
;
1500 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
1501 s_r_opt
.def
= "HEAD";
1502 s_r_opt
.revarg_opt
= REVARG_COMMITTISH
;
1504 if (default_attach
) {
1505 rev
.mime_boundary
= default_attach
;
1510 * Parse the arguments before setup_revisions(), or something
1511 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1512 * possibly a valid SHA1.
1514 argc
= parse_options(argc
, argv
, prefix
, builtin_format_patch_options
,
1515 builtin_format_patch_usage
,
1516 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
1517 PARSE_OPT_KEEP_DASHDASH
);
1519 if (0 < reroll_count
) {
1520 struct strbuf sprefix
= STRBUF_INIT
;
1521 strbuf_addf(&sprefix
, "%s v%d",
1522 rev
.subject_prefix
, reroll_count
);
1523 rev
.reroll_count
= reroll_count
;
1524 rev
.subject_prefix
= strbuf_detach(&sprefix
, NULL
);
1527 for (i
= 0; i
< extra_hdr
.nr
; i
++) {
1528 strbuf_addstr(&buf
, extra_hdr
.items
[i
].string
);
1529 strbuf_addch(&buf
, '\n');
1533 strbuf_addstr(&buf
, "To: ");
1534 for (i
= 0; i
< extra_to
.nr
; i
++) {
1536 strbuf_addstr(&buf
, " ");
1537 strbuf_addstr(&buf
, extra_to
.items
[i
].string
);
1538 if (i
+ 1 < extra_to
.nr
)
1539 strbuf_addch(&buf
, ',');
1540 strbuf_addch(&buf
, '\n');
1544 strbuf_addstr(&buf
, "Cc: ");
1545 for (i
= 0; i
< extra_cc
.nr
; i
++) {
1547 strbuf_addstr(&buf
, " ");
1548 strbuf_addstr(&buf
, extra_cc
.items
[i
].string
);
1549 if (i
+ 1 < extra_cc
.nr
)
1550 strbuf_addch(&buf
, ',');
1551 strbuf_addch(&buf
, '\n');
1554 rev
.extra_headers
= strbuf_detach(&buf
, NULL
);
1557 if (split_ident_line(&rev
.from_ident
, from
, strlen(from
)))
1558 die(_("invalid ident line: %s"), from
);
1561 if (start_number
< 0)
1565 * If numbered is set solely due to format.numbered in config,
1566 * and it would conflict with --keep-subject (-k) from the
1567 * command line, reset "numbered".
1569 if (numbered
&& keep_subject
&& !numbered_cmdline_opt
)
1572 if (numbered
&& keep_subject
)
1573 die (_("-n and -k are mutually exclusive."));
1574 if (keep_subject
&& subject_prefix
)
1575 die (_("--subject-prefix/--rfc and -k are mutually exclusive."));
1576 rev
.preserve_subject
= keep_subject
;
1578 argc
= setup_revisions(argc
, argv
, &rev
, &s_r_opt
);
1580 die (_("unrecognized argument: %s"), argv
[1]);
1582 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME
)
1583 die(_("--name-only does not make sense"));
1584 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME_STATUS
)
1585 die(_("--name-status does not make sense"));
1586 if (rev
.diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
)
1587 die(_("--check does not make sense"));
1589 if (!use_patch_format
&&
1590 (!rev
.diffopt
.output_format
||
1591 rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
))
1592 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
;
1594 /* Always generate a patch */
1595 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
1597 rev
.zero_commit
= zero_commit
;
1599 if (!DIFF_OPT_TST(&rev
.diffopt
, TEXT
) && !no_binary_diff
)
1600 DIFF_OPT_SET(&rev
.diffopt
, BINARY
);
1603 init_display_notes(&rev
.notes_opt
);
1605 if (!output_directory
&& !use_stdout
)
1606 output_directory
= config_output_directory
;
1609 output_directory
= set_outdir(prefix
, output_directory
);
1613 if (output_directory
) {
1614 if (rev
.diffopt
.use_color
!= GIT_COLOR_ALWAYS
)
1615 rev
.diffopt
.use_color
= GIT_COLOR_NEVER
;
1617 die(_("standard output, or directory, which one?"));
1618 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
1619 die_errno(_("Could not create directory '%s'"),
1623 if (rev
.pending
.nr
== 1) {
1626 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
1628 * This is traditional behaviour of "git format-patch
1629 * origin" that prepares what the origin side still
1632 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
1633 add_head_to_pending(&rev
);
1637 * Otherwise, it is "format-patch -22 HEAD", and/or
1638 * "format-patch --root HEAD". The user wants
1639 * get_revision() to do the usual traversal.
1642 if (!strcmp(rev
.pending
.objects
[0].name
, "HEAD"))
1646 struct object_id oid
;
1647 const char *ref
, *v
;
1648 ref
= resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
,
1650 if (ref
&& skip_prefix(ref
, "refs/heads/", &v
))
1651 branch_name
= xstrdup(v
);
1653 branch_name
= xstrdup(""); /* no branch */
1658 * We cannot move this anywhere earlier because we do want to
1659 * know if --root was given explicitly from the command line.
1661 rev
.show_root_diff
= 1;
1663 if (ignore_if_in_upstream
) {
1664 /* Don't say anything if head and upstream are the same. */
1665 if (rev
.pending
.nr
== 2) {
1666 struct object_array_entry
*o
= rev
.pending
.objects
;
1667 if (oidcmp(&o
[0].item
->oid
, &o
[1].item
->oid
) == 0)
1670 get_patch_ids(&rev
, &ids
);
1673 if (prepare_revision_walk(&rev
))
1674 die(_("revision walk setup failed"));
1676 while ((commit
= get_revision(&rev
)) != NULL
) {
1677 if (commit
->object
.flags
& BOUNDARY
) {
1679 origin
= (boundary_count
== 1) ? commit
: NULL
;
1683 if (ignore_if_in_upstream
&& has_commit_patch_id(commit
, &ids
))
1687 REALLOC_ARRAY(list
, nr
);
1688 list
[nr
- 1] = commit
;
1694 if (cover_letter
== -1) {
1695 if (config_cover_letter
== COVER_AUTO
)
1696 cover_letter
= (total
> 1);
1698 cover_letter
= (config_cover_letter
== COVER_ON
);
1700 if (!keep_subject
&& auto_number
&& (total
> 1 || cover_letter
))
1703 rev
.total
= total
+ start_number
- 1;
1706 ; /* --no-signature inhibits all signatures */
1707 } else if (signature
&& signature
!= git_version_string
) {
1708 ; /* non-default signature already set */
1709 } else if (signature_file
) {
1710 struct strbuf buf
= STRBUF_INIT
;
1712 if (strbuf_read_file(&buf
, signature_file
, 128) < 0)
1713 die_errno(_("unable to read signature file '%s'"), signature_file
);
1714 signature
= strbuf_detach(&buf
, NULL
);
1717 memset(&bases
, 0, sizeof(bases
));
1718 if (base_commit
|| base_auto
) {
1719 struct commit
*base
= get_base_commit(base_commit
, list
, nr
);
1720 reset_revision_walk();
1721 prepare_bases(&bases
, base
, list
, nr
);
1724 if (in_reply_to
|| thread
|| cover_letter
)
1725 rev
.ref_message_ids
= xcalloc(1, sizeof(struct string_list
));
1727 const char *msgid
= clean_message_id(in_reply_to
);
1728 string_list_append(rev
.ref_message_ids
, msgid
);
1730 rev
.numbered_files
= just_numbers
;
1731 rev
.patch_suffix
= fmt_patch_suffix
;
1734 gen_message_id(&rev
, "cover");
1735 make_cover_letter(&rev
, use_stdout
,
1736 origin
, nr
, list
, branch_name
, quiet
);
1737 print_bases(&bases
, rev
.diffopt
.file
);
1738 print_signature(rev
.diffopt
.file
);
1742 rev
.add_signoff
= do_signoff
;
1746 rev
.nr
= total
- nr
+ (start_number
- 1);
1747 /* Make the second and subsequent mails replies to the first */
1749 /* Have we already had a message ID? */
1750 if (rev
.message_id
) {
1752 * For deep threading: make every mail
1753 * a reply to the previous one, no
1754 * matter what other options are set.
1756 * For shallow threading:
1758 * Without --cover-letter and
1759 * --in-reply-to, make every mail a
1760 * reply to the one before.
1762 * With --in-reply-to but no
1763 * --cover-letter, make every mail a
1764 * reply to the <reply-to>.
1766 * With --cover-letter, make every
1767 * mail but the cover letter a reply
1768 * to the cover letter. The cover
1769 * letter is a reply to the
1770 * --in-reply-to, if specified.
1772 if (thread
== THREAD_SHALLOW
1773 && rev
.ref_message_ids
->nr
> 0
1774 && (!cover_letter
|| rev
.nr
> 1))
1775 free(rev
.message_id
);
1777 string_list_append(rev
.ref_message_ids
,
1780 gen_message_id(&rev
, oid_to_hex(&commit
->object
.oid
));
1784 open_next_file(rev
.numbered_files
? NULL
: commit
, NULL
, &rev
, quiet
))
1785 die(_("Failed to create output files"));
1786 shown
= log_tree_commit(&rev
, commit
);
1787 free_commit_buffer(commit
);
1789 /* We put one extra blank line between formatted
1790 * patches and this flag is used by log-tree code
1791 * to see if it needs to emit a LF before showing
1792 * the log; when using one file per patch, we do
1793 * not want the extra blank line.
1798 print_bases(&bases
, rev
.diffopt
.file
);
1799 if (rev
.mime_boundary
)
1800 fprintf(rev
.diffopt
.file
, "\n--%s%s--\n\n\n",
1801 mime_boundary_leader
,
1804 print_signature(rev
.diffopt
.file
);
1807 fclose(rev
.diffopt
.file
);
1811 string_list_clear(&extra_to
, 0);
1812 string_list_clear(&extra_cc
, 0);
1813 string_list_clear(&extra_hdr
, 0);
1814 if (ignore_if_in_upstream
)
1815 free_patch_ids(&ids
);
1819 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1821 struct object_id oid
;
1822 if (get_oid(arg
, &oid
) == 0) {
1823 struct commit
*commit
= lookup_commit_reference(oid
.hash
);
1825 commit
->object
.flags
|= flags
;
1826 add_pending_object(revs
, &commit
->object
, arg
);
1833 static const char * const cherry_usage
[] = {
1834 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
1838 static void print_commit(char sign
, struct commit
*commit
, int verbose
,
1839 int abbrev
, FILE *file
)
1842 fprintf(file
, "%c %s\n", sign
,
1843 find_unique_abbrev(commit
->object
.oid
.hash
, abbrev
));
1845 struct strbuf buf
= STRBUF_INIT
;
1846 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &buf
);
1847 fprintf(file
, "%c %s %s\n", sign
,
1848 find_unique_abbrev(commit
->object
.oid
.hash
, abbrev
),
1850 strbuf_release(&buf
);
1854 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
1856 struct rev_info revs
;
1857 struct patch_ids ids
;
1858 struct commit
*commit
;
1859 struct commit_list
*list
= NULL
;
1860 struct branch
*current_branch
;
1861 const char *upstream
;
1862 const char *head
= "HEAD";
1863 const char *limit
= NULL
;
1864 int verbose
= 0, abbrev
= 0;
1866 struct option options
[] = {
1867 OPT__ABBREV(&abbrev
),
1868 OPT__VERBOSE(&verbose
, N_("be verbose")),
1872 argc
= parse_options(argc
, argv
, prefix
, options
, cherry_usage
, 0);
1885 current_branch
= branch_get(NULL
);
1886 upstream
= branch_get_upstream(current_branch
, NULL
);
1888 fprintf(stderr
, _("Could not find a tracked"
1889 " remote branch, please"
1890 " specify <upstream> manually.\n"));
1891 usage_with_options(cherry_usage
, options
);
1895 init_revisions(&revs
, prefix
);
1896 revs
.max_parents
= 1;
1898 if (add_pending_commit(head
, &revs
, 0))
1899 die(_("Unknown commit %s"), head
);
1900 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
1901 die(_("Unknown commit %s"), upstream
);
1903 /* Don't say anything if head and upstream are the same. */
1904 if (revs
.pending
.nr
== 2) {
1905 struct object_array_entry
*o
= revs
.pending
.objects
;
1906 if (oidcmp(&o
[0].item
->oid
, &o
[1].item
->oid
) == 0)
1910 get_patch_ids(&revs
, &ids
);
1912 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
1913 die(_("Unknown commit %s"), limit
);
1915 /* reverse the list of commits */
1916 if (prepare_revision_walk(&revs
))
1917 die(_("revision walk setup failed"));
1918 while ((commit
= get_revision(&revs
)) != NULL
) {
1919 commit_list_insert(commit
, &list
);
1925 commit
= list
->item
;
1926 if (has_commit_patch_id(commit
, &ids
))
1928 print_commit(sign
, commit
, verbose
, abbrev
, revs
.diffopt
.file
);
1932 free_patch_ids(&ids
);