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"
34 #define MAIL_DEFAULT_WRAP 72
36 /* Set a default date-time format for git log ("log.date" config variable) */
37 static const char *default_date_mode
= NULL
;
39 static int default_abbrev_commit
;
40 static int default_show_root
= 1;
41 static int default_follow
;
42 static int default_show_signature
;
43 static int decoration_style
;
44 static int decoration_given
;
45 static int use_mailmap_config
;
46 static const char *fmt_patch_subject_prefix
= "PATCH";
47 static const char *fmt_pretty
;
49 static const char * const builtin_log_usage
[] = {
50 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
51 N_("git show [<options>] <object>..."),
55 struct line_opt_callback_data
{
58 struct string_list args
;
61 static int auto_decoration_style(void)
63 return (isatty(1) || pager_in_use()) ? DECORATE_SHORT_REFS
: 0;
66 static int parse_decoration_style(const char *value
)
68 switch (git_parse_maybe_bool(value
)) {
70 return DECORATE_SHORT_REFS
;
76 if (!strcmp(value
, "full"))
77 return DECORATE_FULL_REFS
;
78 else if (!strcmp(value
, "short"))
79 return DECORATE_SHORT_REFS
;
80 else if (!strcmp(value
, "auto"))
81 return auto_decoration_style();
85 static int decorate_callback(const struct option
*opt
, const char *arg
, int unset
)
90 decoration_style
= parse_decoration_style(arg
);
92 decoration_style
= DECORATE_SHORT_REFS
;
94 if (decoration_style
< 0)
95 die(_("invalid --decorate option: %s"), arg
);
102 static int log_line_range_callback(const struct option
*option
, const char *arg
, int unset
)
104 struct line_opt_callback_data
*data
= option
->value
;
109 data
->rev
->line_level_traverse
= 1;
110 string_list_append(&data
->args
, arg
);
115 static void init_log_defaults(void)
117 init_grep_defaults();
118 init_diff_ui_defaults();
120 decoration_style
= auto_decoration_style();
123 static void cmd_log_init_defaults(struct rev_info
*rev
)
126 get_commit_format(fmt_pretty
, rev
);
128 rev
->diffopt
.flags
.default_follow_renames
= 1;
129 rev
->verbose_header
= 1;
130 rev
->diffopt
.flags
.recursive
= 1;
131 rev
->diffopt
.stat_width
= -1; /* use full terminal width */
132 rev
->diffopt
.stat_graph_width
= -1; /* respect statGraphWidth config */
133 rev
->abbrev_commit
= default_abbrev_commit
;
134 rev
->show_root_diff
= default_show_root
;
135 rev
->subject_prefix
= fmt_patch_subject_prefix
;
136 rev
->show_signature
= default_show_signature
;
137 rev
->diffopt
.flags
.allow_textconv
= 1;
139 if (default_date_mode
)
140 parse_date_format(default_date_mode
, &rev
->date_mode
);
143 static void cmd_log_init_finish(int argc
, const char **argv
, const char *prefix
,
144 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
146 struct userformat_want w
;
147 int quiet
= 0, source
= 0, mailmap
= 0;
148 static struct line_opt_callback_data line_cb
= {NULL
, NULL
, STRING_LIST_INIT_DUP
};
149 static struct string_list decorate_refs_exclude
= STRING_LIST_INIT_NODUP
;
150 static struct string_list decorate_refs_include
= STRING_LIST_INIT_NODUP
;
151 struct decoration_filter decoration_filter
= {&decorate_refs_include
,
152 &decorate_refs_exclude
};
153 static struct revision_sources revision_sources
;
155 const struct option builtin_log_options
[] = {
156 OPT__QUIET(&quiet
, N_("suppress diff output")),
157 OPT_BOOL(0, "source", &source
, N_("show source")),
158 OPT_BOOL(0, "use-mailmap", &mailmap
, N_("Use mail map file")),
159 OPT_STRING_LIST(0, "decorate-refs", &decorate_refs_include
,
160 N_("pattern"), N_("only decorate refs that match <pattern>")),
161 OPT_STRING_LIST(0, "decorate-refs-exclude", &decorate_refs_exclude
,
162 N_("pattern"), N_("do not decorate refs that match <pattern>")),
163 { OPTION_CALLBACK
, 0, "decorate", NULL
, NULL
, N_("decorate options"),
164 PARSE_OPT_OPTARG
, decorate_callback
},
165 OPT_CALLBACK('L', NULL
, &line_cb
, "n,m:file",
166 N_("Process line range n,m in file, counting from 1"),
167 log_line_range_callback
),
172 line_cb
.prefix
= prefix
;
174 mailmap
= use_mailmap_config
;
175 argc
= parse_options(argc
, argv
, prefix
,
176 builtin_log_options
, builtin_log_usage
,
177 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
178 PARSE_OPT_KEEP_DASHDASH
);
181 rev
->diffopt
.output_format
|= DIFF_FORMAT_NO_OUTPUT
;
182 argc
= setup_revisions(argc
, argv
, rev
, opt
);
184 /* Any arguments at this point are not recognized */
186 die(_("unrecognized argument: %s"), argv
[1]);
188 memset(&w
, 0, sizeof(w
));
189 userformat_find_requirements(NULL
, &w
);
191 if (!rev
->show_notes_given
&& (!rev
->pretty_given
|| w
.notes
))
194 init_display_notes(&rev
->notes_opt
);
196 if ((rev
->diffopt
.pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
) ||
197 rev
->diffopt
.filter
|| rev
->diffopt
.flags
.follow_renames
)
198 rev
->always_show_header
= 0;
201 init_revision_sources(&revision_sources
);
202 rev
->sources
= &revision_sources
;
206 rev
->mailmap
= xcalloc(1, sizeof(struct string_list
));
207 read_mailmap(rev
->mailmap
, NULL
);
210 if (rev
->pretty_given
&& rev
->commit_format
== CMIT_FMT_RAW
) {
212 * "log --pretty=raw" is special; ignore UI oriented
213 * configuration variables such as decoration.
215 if (!decoration_given
)
216 decoration_style
= 0;
217 if (!rev
->abbrev_commit_given
)
218 rev
->abbrev_commit
= 0;
221 if (decoration_style
) {
222 rev
->show_decorations
= 1;
223 load_ref_decorations(&decoration_filter
, decoration_style
);
226 if (rev
->line_level_traverse
)
227 line_log_init(rev
, line_cb
.prefix
, &line_cb
.args
);
232 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
233 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
235 cmd_log_init_defaults(rev
);
236 cmd_log_init_finish(argc
, argv
, prefix
, rev
, opt
);
240 * This gives a rough estimate for how many commits we
241 * will print out in the list.
243 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
248 struct commit
*commit
= list
->item
;
249 unsigned int flags
= commit
->object
.flags
;
251 if (!(flags
& (TREESAME
| UNINTERESTING
)))
257 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
259 if (rev
->shown_one
) {
261 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
262 putchar(rev
->diffopt
.line_termination
);
264 fprintf(rev
->diffopt
.file
, _("Final output: %d %s\n"), nr
, stage
);
267 static struct itimerval early_output_timer
;
269 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
271 int i
= revs
->early_output
, close_file
= revs
->diffopt
.close_file
;
274 revs
->diffopt
.close_file
= 0;
275 sort_in_topological_order(&list
, revs
->sort_order
);
277 struct commit
*commit
= list
->item
;
278 switch (simplify_commit(revs
, commit
)) {
281 int n
= estimate_commit_count(revs
, list
);
282 show_early_header(revs
, "incomplete", n
);
285 log_tree_commit(revs
, commit
);
292 fclose(revs
->diffopt
.file
);
298 /* Did we already get enough commits for the early output? */
301 fclose(revs
->diffopt
.file
);
306 * ..if no, then repeat it twice a second until we
309 * NOTE! We don't use "it_interval", because if the
310 * reader isn't listening, we want our output to be
311 * throttled by the writing, and not have the timer
312 * trigger every second even if we're blocked on a
315 early_output_timer
.it_value
.tv_sec
= 0;
316 early_output_timer
.it_value
.tv_usec
= 500000;
317 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
320 static void early_output(int signal
)
322 show_early_output
= log_show_early
;
325 static void setup_early_output(struct rev_info
*rev
)
330 * Set up the signal handler, minimally intrusively:
331 * we only set a single volatile integer word (not
332 * using sigatomic_t - trying to avoid unnecessary
333 * system dependencies and headers), and using
336 memset(&sa
, 0, sizeof(sa
));
337 sa
.sa_handler
= early_output
;
338 sigemptyset(&sa
.sa_mask
);
339 sa
.sa_flags
= SA_RESTART
;
340 sigaction(SIGALRM
, &sa
, NULL
);
343 * If we can get the whole output in less than a
344 * tenth of a second, don't even bother doing the
345 * early-output thing..
347 * This is a one-time-only trigger.
349 early_output_timer
.it_value
.tv_sec
= 0;
350 early_output_timer
.it_value
.tv_usec
= 100000;
351 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
354 static void finish_early_output(struct rev_info
*rev
)
356 int n
= estimate_commit_count(rev
, rev
->commits
);
357 signal(SIGALRM
, SIG_IGN
);
358 show_early_header(rev
, "done", n
);
361 static int cmd_log_walk(struct rev_info
*rev
)
363 struct commit
*commit
;
365 int saved_dcctc
= 0, close_file
= rev
->diffopt
.close_file
;
367 if (rev
->early_output
)
368 setup_early_output(rev
);
370 if (prepare_revision_walk(rev
))
371 die(_("revision walk setup failed"));
373 if (rev
->early_output
)
374 finish_early_output(rev
);
377 * For --check and --exit-code, the exit code is based on CHECK_FAILED
378 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
379 * retain that state information if replacing rev->diffopt in this loop
381 rev
->diffopt
.close_file
= 0;
382 while ((commit
= get_revision(rev
)) != NULL
) {
383 if (!log_tree_commit(rev
, commit
) && rev
->max_count
>= 0)
385 * We decremented max_count in get_revision,
386 * but we didn't actually show the commit.
389 if (!rev
->reflog_info
) {
391 * We may show a given commit multiple times when
392 * walking the reflogs.
394 free_commit_buffer(commit
);
395 free_commit_list(commit
->parents
);
396 commit
->parents
= NULL
;
398 if (saved_nrl
< rev
->diffopt
.needed_rename_limit
)
399 saved_nrl
= rev
->diffopt
.needed_rename_limit
;
400 if (rev
->diffopt
.degraded_cc_to_c
)
403 rev
->diffopt
.degraded_cc_to_c
= saved_dcctc
;
404 rev
->diffopt
.needed_rename_limit
= saved_nrl
;
406 fclose(rev
->diffopt
.file
);
408 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
409 rev
->diffopt
.flags
.check_failed
) {
412 return diff_result_code(&rev
->diffopt
, 0);
415 static int git_log_config(const char *var
, const char *value
, void *cb
)
417 const char *slot_name
;
419 if (!strcmp(var
, "format.pretty"))
420 return git_config_string(&fmt_pretty
, var
, value
);
421 if (!strcmp(var
, "format.subjectprefix"))
422 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
423 if (!strcmp(var
, "log.abbrevcommit")) {
424 default_abbrev_commit
= git_config_bool(var
, value
);
427 if (!strcmp(var
, "log.date"))
428 return git_config_string(&default_date_mode
, var
, value
);
429 if (!strcmp(var
, "log.decorate")) {
430 decoration_style
= parse_decoration_style(value
);
431 if (decoration_style
< 0)
432 decoration_style
= 0; /* maybe warn? */
435 if (!strcmp(var
, "log.showroot")) {
436 default_show_root
= git_config_bool(var
, value
);
439 if (!strcmp(var
, "log.follow")) {
440 default_follow
= git_config_bool(var
, value
);
443 if (skip_prefix(var
, "color.decorate.", &slot_name
))
444 return parse_decorate_color_config(var
, slot_name
, value
);
445 if (!strcmp(var
, "log.mailmap")) {
446 use_mailmap_config
= git_config_bool(var
, value
);
449 if (!strcmp(var
, "log.showsignature")) {
450 default_show_signature
= git_config_bool(var
, value
);
454 if (grep_config(var
, value
, cb
) < 0)
456 if (git_gpg_config(var
, value
, cb
) < 0)
458 return git_diff_ui_config(var
, value
, cb
);
461 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
464 struct setup_revision_opt opt
;
467 git_config(git_log_config
, NULL
);
469 init_revisions(&rev
, prefix
);
471 rev
.simplify_history
= 0;
472 memset(&opt
, 0, sizeof(opt
));
474 opt
.revarg_opt
= REVARG_COMMITTISH
;
475 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
476 if (!rev
.diffopt
.output_format
)
477 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
478 return cmd_log_walk(&rev
);
481 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
483 struct strbuf out
= STRBUF_INIT
;
484 struct pretty_print_context pp
= {0};
486 pp
.fmt
= rev
->commit_format
;
487 pp
.date_mode
= rev
->date_mode
;
488 pp_user_info(&pp
, "Tagger", &out
, buf
, get_log_output_encoding());
489 fprintf(rev
->diffopt
.file
, "%s", out
.buf
);
490 strbuf_release(&out
);
493 static int show_blob_object(const struct object_id
*oid
, struct rev_info
*rev
, const char *obj_name
)
495 struct object_id oidc
;
496 struct object_context obj_context
;
500 fflush(rev
->diffopt
.file
);
501 if (!rev
->diffopt
.flags
.textconv_set_via_cmdline
||
502 !rev
->diffopt
.flags
.allow_textconv
)
503 return stream_blob_to_fd(1, oid
, NULL
, 0);
505 if (get_oid_with_context(obj_name
, GET_OID_RECORD_PATH
,
506 &oidc
, &obj_context
))
507 die(_("Not a valid object name %s"), obj_name
);
508 if (!obj_context
.path
||
509 !textconv_object(obj_context
.path
, obj_context
.mode
, &oidc
, 1, &buf
, &size
)) {
510 free(obj_context
.path
);
511 return stream_blob_to_fd(1, oid
, NULL
, 0);
515 die(_("git show %s: bad file"), obj_name
);
517 write_or_die(1, buf
, size
);
518 free(obj_context
.path
);
522 static int show_tag_object(const struct object_id
*oid
, struct rev_info
*rev
)
525 enum object_type type
;
526 char *buf
= read_object_file(oid
, &type
, &size
);
530 return error(_("Could not read object %s"), oid_to_hex(oid
));
532 assert(type
== OBJ_TAG
);
533 while (offset
< size
&& buf
[offset
] != '\n') {
534 int new_offset
= offset
+ 1;
535 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
537 if (starts_with(buf
+ offset
, "tagger "))
538 show_tagger(buf
+ offset
+ 7,
539 new_offset
- offset
- 7, rev
);
544 fwrite(buf
+ offset
, size
- offset
, 1, rev
->diffopt
.file
);
549 static int show_tree_object(const struct object_id
*oid
,
551 const char *pathname
, unsigned mode
, int stage
, void *context
)
553 FILE *file
= context
;
554 fprintf(file
, "%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
558 static void show_setup_revisions_tweak(struct rev_info
*rev
,
559 struct setup_revision_opt
*opt
)
561 if (rev
->ignore_merges
) {
562 /* There was no "-m" on the command line */
563 rev
->ignore_merges
= 0;
564 if (!rev
->first_parent_only
&& !rev
->combine_merges
) {
565 /* No "--first-parent", "-c", or "--cc" */
566 rev
->combine_merges
= 1;
567 rev
->dense_combined_merges
= 1;
570 if (!rev
->diffopt
.output_format
)
571 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
574 int cmd_show(int argc
, const char **argv
, const char *prefix
)
577 struct object_array_entry
*objects
;
578 struct setup_revision_opt opt
;
579 struct pathspec match_all
;
580 int i
, count
, ret
= 0;
583 git_config(git_log_config
, NULL
);
585 memset(&match_all
, 0, sizeof(match_all
));
586 init_revisions(&rev
, prefix
);
588 rev
.always_show_header
= 1;
589 rev
.no_walk
= REVISION_WALK_NO_WALK_SORTED
;
590 rev
.diffopt
.stat_width
= -1; /* Scale to real terminal size */
592 memset(&opt
, 0, sizeof(opt
));
594 opt
.tweak
= show_setup_revisions_tweak
;
595 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
598 return cmd_log_walk(&rev
);
600 count
= rev
.pending
.nr
;
601 objects
= rev
.pending
.objects
;
602 for (i
= 0; i
< count
&& !ret
; i
++) {
603 struct object
*o
= objects
[i
].item
;
604 const char *name
= objects
[i
].name
;
607 ret
= show_blob_object(&o
->oid
, &rev
, name
);
610 struct tag
*t
= (struct tag
*)o
;
614 fprintf(rev
.diffopt
.file
, "%stag %s%s\n",
615 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
617 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
618 ret
= show_tag_object(&o
->oid
, &rev
);
622 o
= parse_object(&t
->tagged
->oid
);
624 ret
= error(_("Could not read object %s"),
625 oid_to_hex(&t
->tagged
->oid
));
633 fprintf(rev
.diffopt
.file
, "%stree %s%s\n\n",
634 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
636 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
637 read_tree_recursive((struct tree
*)o
, "", 0, 0, &match_all
,
638 show_tree_object
, rev
.diffopt
.file
);
642 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
643 rev
.pending
.objects
= NULL
;
644 add_object_array(o
, name
, &rev
.pending
);
645 ret
= cmd_log_walk(&rev
);
648 ret
= error(_("Unknown type: %d"), o
->type
);
656 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
658 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
661 struct setup_revision_opt opt
;
664 git_config(git_log_config
, NULL
);
666 init_revisions(&rev
, prefix
);
667 init_reflog_walk(&rev
.reflog_info
);
668 rev
.verbose_header
= 1;
669 memset(&opt
, 0, sizeof(opt
));
671 cmd_log_init_defaults(&rev
);
672 rev
.abbrev_commit
= 1;
673 rev
.commit_format
= CMIT_FMT_ONELINE
;
674 rev
.use_terminator
= 1;
675 rev
.always_show_header
= 1;
676 cmd_log_init_finish(argc
, argv
, prefix
, &rev
, &opt
);
678 return cmd_log_walk(&rev
);
681 static void log_setup_revisions_tweak(struct rev_info
*rev
,
682 struct setup_revision_opt
*opt
)
684 if (rev
->diffopt
.flags
.default_follow_renames
&&
685 rev
->prune_data
.nr
== 1)
686 rev
->diffopt
.flags
.follow_renames
= 1;
688 /* Turn --cc/-c into -p --cc/-c when -p was not given */
689 if (!rev
->diffopt
.output_format
&& rev
->combine_merges
)
690 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
692 /* Turn -m on when --cc/-c was given */
693 if (rev
->combine_merges
)
694 rev
->ignore_merges
= 0;
697 int cmd_log(int argc
, const char **argv
, const char *prefix
)
700 struct setup_revision_opt opt
;
703 git_config(git_log_config
, NULL
);
705 init_revisions(&rev
, prefix
);
706 rev
.always_show_header
= 1;
707 memset(&opt
, 0, sizeof(opt
));
709 opt
.revarg_opt
= REVARG_COMMITTISH
;
710 opt
.tweak
= log_setup_revisions_tweak
;
711 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
712 return cmd_log_walk(&rev
);
717 static const char *fmt_patch_suffix
= ".patch";
718 static int numbered
= 0;
719 static int auto_number
= 1;
721 static char *default_attach
= NULL
;
723 static struct string_list extra_hdr
= STRING_LIST_INIT_NODUP
;
724 static struct string_list extra_to
= STRING_LIST_INIT_NODUP
;
725 static struct string_list extra_cc
= STRING_LIST_INIT_NODUP
;
727 static void add_header(const char *value
)
729 struct string_list_item
*item
;
730 int len
= strlen(value
);
731 while (len
&& value
[len
- 1] == '\n')
734 if (!strncasecmp(value
, "to: ", 4)) {
735 item
= string_list_append(&extra_to
, value
+ 4);
737 } else if (!strncasecmp(value
, "cc: ", 4)) {
738 item
= string_list_append(&extra_cc
, value
+ 4);
741 item
= string_list_append(&extra_hdr
, value
);
744 item
->string
[len
] = '\0';
747 #define THREAD_SHALLOW 1
748 #define THREAD_DEEP 2
750 static int do_signoff
;
751 static int base_auto
;
753 static const char *signature
= git_version_string
;
754 static const char *signature_file
;
755 static int config_cover_letter
;
756 static const char *config_output_directory
;
765 static int git_format_config(const char *var
, const char *value
, void *cb
)
767 if (!strcmp(var
, "format.headers")) {
769 die(_("format.headers without value"));
773 if (!strcmp(var
, "format.suffix"))
774 return git_config_string(&fmt_patch_suffix
, var
, value
);
775 if (!strcmp(var
, "format.to")) {
777 return config_error_nonbool(var
);
778 string_list_append(&extra_to
, value
);
781 if (!strcmp(var
, "format.cc")) {
783 return config_error_nonbool(var
);
784 string_list_append(&extra_cc
, value
);
787 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff") ||
788 !strcmp(var
, "color.ui") || !strcmp(var
, "diff.submodule")) {
791 if (!strcmp(var
, "format.numbered")) {
792 if (value
&& !strcasecmp(value
, "auto")) {
796 numbered
= git_config_bool(var
, value
);
797 auto_number
= auto_number
&& numbered
;
800 if (!strcmp(var
, "format.attach")) {
802 default_attach
= xstrdup(value
);
804 default_attach
= xstrdup(git_version_string
);
807 if (!strcmp(var
, "format.thread")) {
808 if (value
&& !strcasecmp(value
, "deep")) {
809 thread
= THREAD_DEEP
;
812 if (value
&& !strcasecmp(value
, "shallow")) {
813 thread
= THREAD_SHALLOW
;
816 thread
= git_config_bool(var
, value
) && THREAD_SHALLOW
;
819 if (!strcmp(var
, "format.signoff")) {
820 do_signoff
= git_config_bool(var
, value
);
823 if (!strcmp(var
, "format.signature"))
824 return git_config_string(&signature
, var
, value
);
825 if (!strcmp(var
, "format.signaturefile"))
826 return git_config_pathname(&signature_file
, var
, value
);
827 if (!strcmp(var
, "format.coverletter")) {
828 if (value
&& !strcasecmp(value
, "auto")) {
829 config_cover_letter
= COVER_AUTO
;
832 config_cover_letter
= git_config_bool(var
, value
) ? COVER_ON
: COVER_OFF
;
835 if (!strcmp(var
, "format.outputdirectory"))
836 return git_config_string(&config_output_directory
, var
, value
);
837 if (!strcmp(var
, "format.useautobase")) {
838 base_auto
= git_config_bool(var
, value
);
841 if (!strcmp(var
, "format.from")) {
842 int b
= git_parse_maybe_bool(value
);
845 from
= xstrdup(value
);
847 from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
853 return git_log_config(var
, value
, cb
);
856 static const char *output_directory
= NULL
;
857 static int outdir_offset
;
859 static int open_next_file(struct commit
*commit
, const char *subject
,
860 struct rev_info
*rev
, int quiet
)
862 struct strbuf filename
= STRBUF_INIT
;
863 int suffix_len
= strlen(rev
->patch_suffix
) + 1;
865 if (output_directory
) {
866 strbuf_addstr(&filename
, output_directory
);
868 PATH_MAX
- FORMAT_PATCH_NAME_MAX
- suffix_len
) {
869 strbuf_release(&filename
);
870 return error(_("name of output directory is too long"));
872 strbuf_complete(&filename
, '/');
875 if (rev
->numbered_files
)
876 strbuf_addf(&filename
, "%d", rev
->nr
);
878 fmt_output_commit(&filename
, commit
, rev
);
880 fmt_output_subject(&filename
, subject
, rev
);
883 printf("%s\n", filename
.buf
+ outdir_offset
);
885 if ((rev
->diffopt
.file
= fopen(filename
.buf
, "w")) == NULL
) {
886 error_errno(_("Cannot open patch file %s"), filename
.buf
);
887 strbuf_release(&filename
);
891 strbuf_release(&filename
);
895 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
)
897 struct rev_info check_rev
;
898 struct commit
*commit
, *c1
, *c2
;
899 struct object
*o1
, *o2
;
900 unsigned flags1
, flags2
;
902 if (rev
->pending
.nr
!= 2)
903 die(_("Need exactly one range."));
905 o1
= rev
->pending
.objects
[0].item
;
906 o2
= rev
->pending
.objects
[1].item
;
909 c1
= lookup_commit_reference(&o1
->oid
);
910 c2
= lookup_commit_reference(&o2
->oid
);
912 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
913 die(_("Not a range."));
917 /* given a range a..b get all patch ids for b..a */
918 init_revisions(&check_rev
, rev
->prefix
);
919 check_rev
.max_parents
= 1;
920 o1
->flags
^= UNINTERESTING
;
921 o2
->flags
^= UNINTERESTING
;
922 add_pending_object(&check_rev
, o1
, "o1");
923 add_pending_object(&check_rev
, o2
, "o2");
924 if (prepare_revision_walk(&check_rev
))
925 die(_("revision walk setup failed"));
927 while ((commit
= get_revision(&check_rev
)) != NULL
) {
928 add_commit_patch_id(commit
, ids
);
931 /* reset for next revision walk */
932 clear_commit_marks(c1
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
933 clear_commit_marks(c2
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
938 static void gen_message_id(struct rev_info
*info
, char *base
)
940 struct strbuf buf
= STRBUF_INIT
;
941 strbuf_addf(&buf
, "%s.%"PRItime
".git.%s", base
,
942 (timestamp_t
) time(NULL
),
943 git_committer_info(IDENT_NO_NAME
|IDENT_NO_DATE
|IDENT_STRICT
));
944 info
->message_id
= strbuf_detach(&buf
, NULL
);
947 static void print_signature(FILE *file
)
949 if (!signature
|| !*signature
)
952 fprintf(file
, "-- \n%s", signature
);
953 if (signature
[strlen(signature
)-1] != '\n')
958 static void add_branch_description(struct strbuf
*buf
, const char *branch_name
)
960 struct strbuf desc
= STRBUF_INIT
;
961 if (!branch_name
|| !*branch_name
)
963 read_branch_desc(&desc
, branch_name
);
965 strbuf_addch(buf
, '\n');
966 strbuf_addbuf(buf
, &desc
);
967 strbuf_addch(buf
, '\n');
969 strbuf_release(&desc
);
972 static char *find_branch_name(struct rev_info
*rev
)
974 int i
, positive
= -1;
975 struct object_id branch_oid
;
976 const struct object_id
*tip_oid
;
978 char *full_ref
, *branch
= NULL
;
980 for (i
= 0; i
< rev
->cmdline
.nr
; i
++) {
981 if (rev
->cmdline
.rev
[i
].flags
& UNINTERESTING
)
990 ref
= rev
->cmdline
.rev
[positive
].name
;
991 tip_oid
= &rev
->cmdline
.rev
[positive
].item
->oid
;
992 if (dwim_ref(ref
, strlen(ref
), &branch_oid
, &full_ref
) &&
993 skip_prefix(full_ref
, "refs/heads/", &v
) &&
994 !oidcmp(tip_oid
, &branch_oid
))
1000 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
1001 struct commit
*origin
,
1002 int nr
, struct commit
**list
,
1003 const char *branch_name
,
1006 const char *committer
;
1007 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
1009 struct shortlog log
;
1010 struct strbuf sb
= STRBUF_INIT
;
1012 const char *encoding
= "UTF-8";
1013 struct diff_options opts
;
1014 int need_8bit_cte
= 0;
1015 struct pretty_print_context pp
= {0};
1016 struct commit
*head
= list
[0];
1018 if (!cmit_fmt_is_mail(rev
->commit_format
))
1019 die(_("Cover letter needs email format"));
1021 committer
= git_committer_info(0);
1024 open_next_file(NULL
, rev
->numbered_files
? NULL
: "cover-letter", rev
, quiet
))
1027 log_write_email_headers(rev
, head
, &pp
.after_subject
, &need_8bit_cte
, 0);
1029 for (i
= 0; !need_8bit_cte
&& i
< nr
; i
++) {
1030 const char *buf
= get_commit_buffer(list
[i
], NULL
);
1031 if (has_non_ascii(buf
))
1033 unuse_commit_buffer(list
[i
], buf
);
1037 branch_name
= find_branch_name(rev
);
1040 pp
.fmt
= CMIT_FMT_EMAIL
;
1041 pp
.date_mode
.type
= DATE_RFC2822
;
1043 pp
.print_email_subject
= 1;
1044 pp_user_info(&pp
, NULL
, &sb
, committer
, encoding
);
1045 pp_title_line(&pp
, &msg
, &sb
, encoding
, need_8bit_cte
);
1046 pp_remainder(&pp
, &msg
, &sb
, 0);
1047 add_branch_description(&sb
, branch_name
);
1048 fprintf(rev
->diffopt
.file
, "%s\n", sb
.buf
);
1050 strbuf_release(&sb
);
1052 shortlog_init(&log
);
1054 log
.wrap
= MAIL_DEFAULT_WRAP
;
1057 log
.file
= rev
->diffopt
.file
;
1058 for (i
= 0; i
< nr
; i
++)
1059 shortlog_add_commit(&log
, list
[i
]);
1061 shortlog_output(&log
);
1064 * We can only do diffstat with a unique reference point
1069 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
1070 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
1071 opts
.stat_width
= MAIL_DEFAULT_WRAP
;
1073 diff_setup_done(&opts
);
1075 diff_tree_oid(get_commit_tree_oid(origin
),
1076 get_commit_tree_oid(head
),
1078 diffcore_std(&opts
);
1081 fprintf(rev
->diffopt
.file
, "\n");
1084 static const char *clean_message_id(const char *msg_id
)
1087 const char *a
, *z
, *m
;
1090 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
1095 if (!isspace(ch
) && (ch
!= '>'))
1100 die(_("insane in-reply-to: %s"), msg_id
);
1103 return xmemdupz(a
, z
- a
);
1106 static const char *set_outdir(const char *prefix
, const char *output_directory
)
1108 if (output_directory
&& is_absolute_path(output_directory
))
1109 return output_directory
;
1111 if (!prefix
|| !*prefix
) {
1112 if (output_directory
)
1113 return output_directory
;
1114 /* The user did not explicitly ask for "./" */
1119 outdir_offset
= strlen(prefix
);
1120 if (!output_directory
)
1123 return prefix_filename(prefix
, output_directory
);
1126 static const char * const builtin_format_patch_usage
[] = {
1127 N_("git format-patch [<options>] [<since> | <revision-range>]"),
1131 static int keep_subject
= 0;
1133 static int keep_callback(const struct option
*opt
, const char *arg
, int unset
)
1135 ((struct rev_info
*)opt
->value
)->total
= -1;
1140 static int subject_prefix
= 0;
1142 static int subject_prefix_callback(const struct option
*opt
, const char *arg
,
1146 ((struct rev_info
*)opt
->value
)->subject_prefix
= arg
;
1150 static int rfc_callback(const struct option
*opt
, const char *arg
, int unset
)
1152 return subject_prefix_callback(opt
, "RFC PATCH", unset
);
1155 static int numbered_cmdline_opt
= 0;
1157 static int numbered_callback(const struct option
*opt
, const char *arg
,
1160 *(int *)opt
->value
= numbered_cmdline_opt
= unset
? 0 : 1;
1166 static int no_numbered_callback(const struct option
*opt
, const char *arg
,
1169 return numbered_callback(opt
, arg
, 1);
1172 static int output_directory_callback(const struct option
*opt
, const char *arg
,
1175 const char **dir
= (const char **)opt
->value
;
1177 die(_("Two output directories?"));
1182 static int thread_callback(const struct option
*opt
, const char *arg
, int unset
)
1184 int *thread
= (int *)opt
->value
;
1187 else if (!arg
|| !strcmp(arg
, "shallow"))
1188 *thread
= THREAD_SHALLOW
;
1189 else if (!strcmp(arg
, "deep"))
1190 *thread
= THREAD_DEEP
;
1196 static int attach_callback(const struct option
*opt
, const char *arg
, int unset
)
1198 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1200 rev
->mime_boundary
= NULL
;
1202 rev
->mime_boundary
= arg
;
1204 rev
->mime_boundary
= git_version_string
;
1205 rev
->no_inline
= unset
? 0 : 1;
1209 static int inline_callback(const struct option
*opt
, const char *arg
, int unset
)
1211 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1213 rev
->mime_boundary
= NULL
;
1215 rev
->mime_boundary
= arg
;
1217 rev
->mime_boundary
= git_version_string
;
1222 static int header_callback(const struct option
*opt
, const char *arg
, int unset
)
1225 string_list_clear(&extra_hdr
, 0);
1226 string_list_clear(&extra_to
, 0);
1227 string_list_clear(&extra_cc
, 0);
1234 static int to_callback(const struct option
*opt
, const char *arg
, int unset
)
1237 string_list_clear(&extra_to
, 0);
1239 string_list_append(&extra_to
, arg
);
1243 static int cc_callback(const struct option
*opt
, const char *arg
, int unset
)
1246 string_list_clear(&extra_cc
, 0);
1248 string_list_append(&extra_cc
, arg
);
1252 static int from_callback(const struct option
*opt
, const char *arg
, int unset
)
1254 char **from
= opt
->value
;
1261 *from
= xstrdup(arg
);
1263 *from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
1267 struct base_tree_info
{
1268 struct object_id base_commit
;
1269 int nr_patch_id
, alloc_patch_id
;
1270 struct object_id
*patch_id
;
1273 static struct commit
*get_base_commit(const char *base_commit
,
1274 struct commit
**list
,
1277 struct commit
*base
= NULL
;
1278 struct commit
**rev
;
1279 int i
= 0, rev_nr
= 0;
1281 if (base_commit
&& strcmp(base_commit
, "auto")) {
1282 base
= lookup_commit_reference_by_name(base_commit
);
1284 die(_("Unknown commit %s"), base_commit
);
1285 } else if ((base_commit
&& !strcmp(base_commit
, "auto")) || base_auto
) {
1286 struct branch
*curr_branch
= branch_get(NULL
);
1287 const char *upstream
= branch_get_upstream(curr_branch
, NULL
);
1289 struct commit_list
*base_list
;
1290 struct commit
*commit
;
1291 struct object_id oid
;
1293 if (get_oid(upstream
, &oid
))
1294 die(_("Failed to resolve '%s' as a valid ref."), upstream
);
1295 commit
= lookup_commit_or_die(&oid
, "upstream base");
1296 base_list
= get_merge_bases_many(commit
, total
, list
);
1297 /* There should be one and only one merge base. */
1298 if (!base_list
|| base_list
->next
)
1299 die(_("Could not find exact merge base."));
1300 base
= base_list
->item
;
1301 free_commit_list(base_list
);
1303 die(_("Failed to get upstream, if you want to record base commit automatically,\n"
1304 "please use git branch --set-upstream-to to track a remote branch.\n"
1305 "Or you could specify base commit by --base=<base-commit-id> manually."));
1309 ALLOC_ARRAY(rev
, total
);
1310 for (i
= 0; i
< total
; i
++)
1315 * Get merge base through pair-wise computations
1316 * and store it in rev[0].
1318 while (rev_nr
> 1) {
1319 for (i
= 0; i
< rev_nr
/ 2; i
++) {
1320 struct commit_list
*merge_base
;
1321 merge_base
= get_merge_bases(rev
[2 * i
], rev
[2 * i
+ 1]);
1322 if (!merge_base
|| merge_base
->next
)
1323 die(_("Failed to find exact merge base"));
1325 rev
[i
] = merge_base
->item
;
1329 rev
[i
] = rev
[2 * i
];
1330 rev_nr
= DIV_ROUND_UP(rev_nr
, 2);
1333 if (!in_merge_bases(base
, rev
[0]))
1334 die(_("base commit should be the ancestor of revision list"));
1336 for (i
= 0; i
< total
; i
++) {
1337 if (base
== list
[i
])
1338 die(_("base commit shouldn't be in revision list"));
1345 define_commit_slab(commit_base
, int);
1347 static void prepare_bases(struct base_tree_info
*bases
,
1348 struct commit
*base
,
1349 struct commit
**list
,
1352 struct commit
*commit
;
1353 struct rev_info revs
;
1354 struct diff_options diffopt
;
1355 struct commit_base commit_base
;
1361 init_commit_base(&commit_base
);
1362 diff_setup(&diffopt
);
1363 diffopt
.flags
.recursive
= 1;
1364 diff_setup_done(&diffopt
);
1366 oidcpy(&bases
->base_commit
, &base
->object
.oid
);
1368 init_revisions(&revs
, NULL
);
1369 revs
.max_parents
= 1;
1370 revs
.topo_order
= 1;
1371 for (i
= 0; i
< total
; i
++) {
1372 list
[i
]->object
.flags
&= ~UNINTERESTING
;
1373 add_pending_object(&revs
, &list
[i
]->object
, "rev_list");
1374 *commit_base_at(&commit_base
, list
[i
]) = 1;
1376 base
->object
.flags
|= UNINTERESTING
;
1377 add_pending_object(&revs
, &base
->object
, "base");
1379 if (prepare_revision_walk(&revs
))
1380 die(_("revision walk setup failed"));
1382 * Traverse the commits list, get prerequisite patch ids
1383 * and stuff them in bases structure.
1385 while ((commit
= get_revision(&revs
)) != NULL
) {
1386 struct object_id oid
;
1387 struct object_id
*patch_id
;
1388 if (*commit_base_at(&commit_base
, commit
))
1390 if (commit_patch_id(commit
, &diffopt
, &oid
, 0))
1391 die(_("cannot get patch id"));
1392 ALLOC_GROW(bases
->patch_id
, bases
->nr_patch_id
+ 1, bases
->alloc_patch_id
);
1393 patch_id
= bases
->patch_id
+ bases
->nr_patch_id
;
1394 oidcpy(patch_id
, &oid
);
1395 bases
->nr_patch_id
++;
1397 clear_commit_base(&commit_base
);
1400 static void print_bases(struct base_tree_info
*bases
, FILE *file
)
1404 /* Only do this once, either for the cover or for the first one */
1405 if (is_null_oid(&bases
->base_commit
))
1408 /* Show the base commit */
1409 fprintf(file
, "\nbase-commit: %s\n", oid_to_hex(&bases
->base_commit
));
1411 /* Show the prerequisite patches */
1412 for (i
= bases
->nr_patch_id
- 1; i
>= 0; i
--)
1413 fprintf(file
, "prerequisite-patch-id: %s\n", oid_to_hex(&bases
->patch_id
[i
]));
1415 free(bases
->patch_id
);
1416 bases
->nr_patch_id
= 0;
1417 bases
->alloc_patch_id
= 0;
1418 oidclr(&bases
->base_commit
);
1421 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
1423 struct commit
*commit
;
1424 struct commit
**list
= NULL
;
1425 struct rev_info rev
;
1426 struct setup_revision_opt s_r_opt
;
1427 int nr
= 0, total
, i
;
1429 int start_number
= -1;
1430 int just_numbers
= 0;
1431 int ignore_if_in_upstream
= 0;
1432 int cover_letter
= -1;
1433 int boundary_count
= 0;
1434 int no_binary_diff
= 0;
1435 int zero_commit
= 0;
1436 struct commit
*origin
= NULL
;
1437 const char *in_reply_to
= NULL
;
1438 struct patch_ids ids
;
1439 struct strbuf buf
= STRBUF_INIT
;
1440 int use_patch_format
= 0;
1442 int reroll_count
= -1;
1443 char *branch_name
= NULL
;
1444 char *base_commit
= NULL
;
1445 struct base_tree_info bases
;
1446 int show_progress
= 0;
1447 struct progress
*progress
= NULL
;
1449 const struct option builtin_format_patch_options
[] = {
1450 { OPTION_CALLBACK
, 'n', "numbered", &numbered
, NULL
,
1451 N_("use [PATCH n/m] even with a single patch"),
1452 PARSE_OPT_NOARG
, numbered_callback
},
1453 { OPTION_CALLBACK
, 'N', "no-numbered", &numbered
, NULL
,
1454 N_("use [PATCH] even with multiple patches"),
1455 PARSE_OPT_NOARG
, no_numbered_callback
},
1456 OPT_BOOL('s', "signoff", &do_signoff
, N_("add Signed-off-by:")),
1457 OPT_BOOL(0, "stdout", &use_stdout
,
1458 N_("print patches to standard out")),
1459 OPT_BOOL(0, "cover-letter", &cover_letter
,
1460 N_("generate a cover letter")),
1461 OPT_BOOL(0, "numbered-files", &just_numbers
,
1462 N_("use simple number sequence for output file names")),
1463 OPT_STRING(0, "suffix", &fmt_patch_suffix
, N_("sfx"),
1464 N_("use <sfx> instead of '.patch'")),
1465 OPT_INTEGER(0, "start-number", &start_number
,
1466 N_("start numbering patches at <n> instead of 1")),
1467 OPT_INTEGER('v', "reroll-count", &reroll_count
,
1468 N_("mark the series as Nth re-roll")),
1469 { OPTION_CALLBACK
, 0, "rfc", &rev
, NULL
,
1470 N_("Use [RFC PATCH] instead of [PATCH]"),
1471 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, rfc_callback
},
1472 { OPTION_CALLBACK
, 0, "subject-prefix", &rev
, N_("prefix"),
1473 N_("Use [<prefix>] instead of [PATCH]"),
1474 PARSE_OPT_NONEG
, subject_prefix_callback
},
1475 { OPTION_CALLBACK
, 'o', "output-directory", &output_directory
,
1476 N_("dir"), N_("store resulting files in <dir>"),
1477 PARSE_OPT_NONEG
, output_directory_callback
},
1478 { OPTION_CALLBACK
, 'k', "keep-subject", &rev
, NULL
,
1479 N_("don't strip/add [PATCH]"),
1480 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, keep_callback
},
1481 OPT_BOOL(0, "no-binary", &no_binary_diff
,
1482 N_("don't output binary diffs")),
1483 OPT_BOOL(0, "zero-commit", &zero_commit
,
1484 N_("output all-zero hash in From header")),
1485 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream
,
1486 N_("don't include a patch matching a commit upstream")),
1487 OPT_SET_INT_F('p', "no-stat", &use_patch_format
,
1488 N_("show patch format instead of default (patch + stat)"),
1489 1, PARSE_OPT_NONEG
),
1490 OPT_GROUP(N_("Messaging")),
1491 { OPTION_CALLBACK
, 0, "add-header", NULL
, N_("header"),
1492 N_("add email header"), 0, header_callback
},
1493 { OPTION_CALLBACK
, 0, "to", NULL
, N_("email"), N_("add To: header"),
1495 { OPTION_CALLBACK
, 0, "cc", NULL
, N_("email"), N_("add Cc: header"),
1497 { OPTION_CALLBACK
, 0, "from", &from
, N_("ident"),
1498 N_("set From address to <ident> (or committer ident if absent)"),
1499 PARSE_OPT_OPTARG
, from_callback
},
1500 OPT_STRING(0, "in-reply-to", &in_reply_to
, N_("message-id"),
1501 N_("make first mail a reply to <message-id>")),
1502 { OPTION_CALLBACK
, 0, "attach", &rev
, N_("boundary"),
1503 N_("attach the patch"), PARSE_OPT_OPTARG
,
1505 { OPTION_CALLBACK
, 0, "inline", &rev
, N_("boundary"),
1506 N_("inline the patch"),
1507 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
,
1509 { OPTION_CALLBACK
, 0, "thread", &thread
, N_("style"),
1510 N_("enable message threading, styles: shallow, deep"),
1511 PARSE_OPT_OPTARG
, thread_callback
},
1512 OPT_STRING(0, "signature", &signature
, N_("signature"),
1513 N_("add a signature")),
1514 OPT_STRING(0, "base", &base_commit
, N_("base-commit"),
1515 N_("add prerequisite tree info to the patch series")),
1516 OPT_FILENAME(0, "signature-file", &signature_file
,
1517 N_("add a signature from a file")),
1518 OPT__QUIET(&quiet
, N_("don't print the patch filenames")),
1519 OPT_BOOL(0, "progress", &show_progress
,
1520 N_("show progress while generating patches")),
1524 extra_hdr
.strdup_strings
= 1;
1525 extra_to
.strdup_strings
= 1;
1526 extra_cc
.strdup_strings
= 1;
1527 init_log_defaults();
1528 git_config(git_format_config
, NULL
);
1529 init_revisions(&rev
, prefix
);
1530 rev
.commit_format
= CMIT_FMT_EMAIL
;
1531 rev
.expand_tabs_in_log_default
= 0;
1532 rev
.verbose_header
= 1;
1534 rev
.max_parents
= 1;
1535 rev
.diffopt
.flags
.recursive
= 1;
1536 rev
.subject_prefix
= fmt_patch_subject_prefix
;
1537 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
1538 s_r_opt
.def
= "HEAD";
1539 s_r_opt
.revarg_opt
= REVARG_COMMITTISH
;
1541 if (default_attach
) {
1542 rev
.mime_boundary
= default_attach
;
1547 * Parse the arguments before setup_revisions(), or something
1548 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1549 * possibly a valid SHA1.
1551 argc
= parse_options(argc
, argv
, prefix
, builtin_format_patch_options
,
1552 builtin_format_patch_usage
,
1553 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
1554 PARSE_OPT_KEEP_DASHDASH
);
1556 if (0 < reroll_count
) {
1557 struct strbuf sprefix
= STRBUF_INIT
;
1558 strbuf_addf(&sprefix
, "%s v%d",
1559 rev
.subject_prefix
, reroll_count
);
1560 rev
.reroll_count
= reroll_count
;
1561 rev
.subject_prefix
= strbuf_detach(&sprefix
, NULL
);
1564 for (i
= 0; i
< extra_hdr
.nr
; i
++) {
1565 strbuf_addstr(&buf
, extra_hdr
.items
[i
].string
);
1566 strbuf_addch(&buf
, '\n');
1570 strbuf_addstr(&buf
, "To: ");
1571 for (i
= 0; i
< extra_to
.nr
; i
++) {
1573 strbuf_addstr(&buf
, " ");
1574 strbuf_addstr(&buf
, extra_to
.items
[i
].string
);
1575 if (i
+ 1 < extra_to
.nr
)
1576 strbuf_addch(&buf
, ',');
1577 strbuf_addch(&buf
, '\n');
1581 strbuf_addstr(&buf
, "Cc: ");
1582 for (i
= 0; i
< extra_cc
.nr
; i
++) {
1584 strbuf_addstr(&buf
, " ");
1585 strbuf_addstr(&buf
, extra_cc
.items
[i
].string
);
1586 if (i
+ 1 < extra_cc
.nr
)
1587 strbuf_addch(&buf
, ',');
1588 strbuf_addch(&buf
, '\n');
1591 rev
.extra_headers
= strbuf_detach(&buf
, NULL
);
1594 if (split_ident_line(&rev
.from_ident
, from
, strlen(from
)))
1595 die(_("invalid ident line: %s"), from
);
1598 if (start_number
< 0)
1602 * If numbered is set solely due to format.numbered in config,
1603 * and it would conflict with --keep-subject (-k) from the
1604 * command line, reset "numbered".
1606 if (numbered
&& keep_subject
&& !numbered_cmdline_opt
)
1609 if (numbered
&& keep_subject
)
1610 die (_("-n and -k are mutually exclusive."));
1611 if (keep_subject
&& subject_prefix
)
1612 die (_("--subject-prefix/--rfc and -k are mutually exclusive."));
1613 rev
.preserve_subject
= keep_subject
;
1615 argc
= setup_revisions(argc
, argv
, &rev
, &s_r_opt
);
1617 die (_("unrecognized argument: %s"), argv
[1]);
1619 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME
)
1620 die(_("--name-only does not make sense"));
1621 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME_STATUS
)
1622 die(_("--name-status does not make sense"));
1623 if (rev
.diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
)
1624 die(_("--check does not make sense"));
1626 if (!use_patch_format
&&
1627 (!rev
.diffopt
.output_format
||
1628 rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
))
1629 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
;
1630 if (!rev
.diffopt
.stat_width
)
1631 rev
.diffopt
.stat_width
= MAIL_DEFAULT_WRAP
;
1633 /* Always generate a patch */
1634 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
1636 rev
.zero_commit
= zero_commit
;
1638 if (!rev
.diffopt
.flags
.text
&& !no_binary_diff
)
1639 rev
.diffopt
.flags
.binary
= 1;
1642 init_display_notes(&rev
.notes_opt
);
1644 if (!output_directory
&& !use_stdout
)
1645 output_directory
= config_output_directory
;
1648 output_directory
= set_outdir(prefix
, output_directory
);
1652 if (output_directory
) {
1653 if (rev
.diffopt
.use_color
!= GIT_COLOR_ALWAYS
)
1654 rev
.diffopt
.use_color
= GIT_COLOR_NEVER
;
1656 die(_("standard output, or directory, which one?"));
1657 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
1658 die_errno(_("Could not create directory '%s'"),
1662 if (rev
.pending
.nr
== 1) {
1665 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
1667 * This is traditional behaviour of "git format-patch
1668 * origin" that prepares what the origin side still
1671 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
1672 add_head_to_pending(&rev
);
1676 * Otherwise, it is "format-patch -22 HEAD", and/or
1677 * "format-patch --root HEAD". The user wants
1678 * get_revision() to do the usual traversal.
1681 if (!strcmp(rev
.pending
.objects
[0].name
, "HEAD"))
1685 const char *ref
, *v
;
1686 ref
= resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
,
1688 if (ref
&& skip_prefix(ref
, "refs/heads/", &v
))
1689 branch_name
= xstrdup(v
);
1691 branch_name
= xstrdup(""); /* no branch */
1696 * We cannot move this anywhere earlier because we do want to
1697 * know if --root was given explicitly from the command line.
1699 rev
.show_root_diff
= 1;
1701 if (ignore_if_in_upstream
) {
1702 /* Don't say anything if head and upstream are the same. */
1703 if (rev
.pending
.nr
== 2) {
1704 struct object_array_entry
*o
= rev
.pending
.objects
;
1705 if (oidcmp(&o
[0].item
->oid
, &o
[1].item
->oid
) == 0)
1708 get_patch_ids(&rev
, &ids
);
1711 if (prepare_revision_walk(&rev
))
1712 die(_("revision walk setup failed"));
1714 while ((commit
= get_revision(&rev
)) != NULL
) {
1715 if (commit
->object
.flags
& BOUNDARY
) {
1717 origin
= (boundary_count
== 1) ? commit
: NULL
;
1721 if (ignore_if_in_upstream
&& has_commit_patch_id(commit
, &ids
))
1725 REALLOC_ARRAY(list
, nr
);
1726 list
[nr
- 1] = commit
;
1732 if (cover_letter
== -1) {
1733 if (config_cover_letter
== COVER_AUTO
)
1734 cover_letter
= (total
> 1);
1736 cover_letter
= (config_cover_letter
== COVER_ON
);
1738 if (!keep_subject
&& auto_number
&& (total
> 1 || cover_letter
))
1741 rev
.total
= total
+ start_number
- 1;
1744 ; /* --no-signature inhibits all signatures */
1745 } else if (signature
&& signature
!= git_version_string
) {
1746 ; /* non-default signature already set */
1747 } else if (signature_file
) {
1748 struct strbuf buf
= STRBUF_INIT
;
1750 if (strbuf_read_file(&buf
, signature_file
, 128) < 0)
1751 die_errno(_("unable to read signature file '%s'"), signature_file
);
1752 signature
= strbuf_detach(&buf
, NULL
);
1755 memset(&bases
, 0, sizeof(bases
));
1756 if (base_commit
|| base_auto
) {
1757 struct commit
*base
= get_base_commit(base_commit
, list
, nr
);
1758 reset_revision_walk();
1759 prepare_bases(&bases
, base
, list
, nr
);
1762 if (in_reply_to
|| thread
|| cover_letter
)
1763 rev
.ref_message_ids
= xcalloc(1, sizeof(struct string_list
));
1765 const char *msgid
= clean_message_id(in_reply_to
);
1766 string_list_append(rev
.ref_message_ids
, msgid
);
1768 rev
.numbered_files
= just_numbers
;
1769 rev
.patch_suffix
= fmt_patch_suffix
;
1772 gen_message_id(&rev
, "cover");
1773 make_cover_letter(&rev
, use_stdout
,
1774 origin
, nr
, list
, branch_name
, quiet
);
1775 print_bases(&bases
, rev
.diffopt
.file
);
1776 print_signature(rev
.diffopt
.file
);
1780 rev
.add_signoff
= do_signoff
;
1783 progress
= start_delayed_progress(_("Generating patches"), total
);
1786 display_progress(progress
, total
- nr
);
1788 rev
.nr
= total
- nr
+ (start_number
- 1);
1789 /* Make the second and subsequent mails replies to the first */
1791 /* Have we already had a message ID? */
1792 if (rev
.message_id
) {
1794 * For deep threading: make every mail
1795 * a reply to the previous one, no
1796 * matter what other options are set.
1798 * For shallow threading:
1800 * Without --cover-letter and
1801 * --in-reply-to, make every mail a
1802 * reply to the one before.
1804 * With --in-reply-to but no
1805 * --cover-letter, make every mail a
1806 * reply to the <reply-to>.
1808 * With --cover-letter, make every
1809 * mail but the cover letter a reply
1810 * to the cover letter. The cover
1811 * letter is a reply to the
1812 * --in-reply-to, if specified.
1814 if (thread
== THREAD_SHALLOW
1815 && rev
.ref_message_ids
->nr
> 0
1816 && (!cover_letter
|| rev
.nr
> 1))
1817 free(rev
.message_id
);
1819 string_list_append(rev
.ref_message_ids
,
1822 gen_message_id(&rev
, oid_to_hex(&commit
->object
.oid
));
1826 open_next_file(rev
.numbered_files
? NULL
: commit
, NULL
, &rev
, quiet
))
1827 die(_("Failed to create output files"));
1828 shown
= log_tree_commit(&rev
, commit
);
1829 free_commit_buffer(commit
);
1831 /* We put one extra blank line between formatted
1832 * patches and this flag is used by log-tree code
1833 * to see if it needs to emit a LF before showing
1834 * the log; when using one file per patch, we do
1835 * not want the extra blank line.
1840 print_bases(&bases
, rev
.diffopt
.file
);
1841 if (rev
.mime_boundary
)
1842 fprintf(rev
.diffopt
.file
, "\n--%s%s--\n\n\n",
1843 mime_boundary_leader
,
1846 print_signature(rev
.diffopt
.file
);
1849 fclose(rev
.diffopt
.file
);
1851 stop_progress(&progress
);
1854 string_list_clear(&extra_to
, 0);
1855 string_list_clear(&extra_cc
, 0);
1856 string_list_clear(&extra_hdr
, 0);
1857 if (ignore_if_in_upstream
)
1858 free_patch_ids(&ids
);
1862 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1864 struct object_id oid
;
1865 if (get_oid(arg
, &oid
) == 0) {
1866 struct commit
*commit
= lookup_commit_reference(&oid
);
1868 commit
->object
.flags
|= flags
;
1869 add_pending_object(revs
, &commit
->object
, arg
);
1876 static const char * const cherry_usage
[] = {
1877 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
1881 static void print_commit(char sign
, struct commit
*commit
, int verbose
,
1882 int abbrev
, FILE *file
)
1885 fprintf(file
, "%c %s\n", sign
,
1886 find_unique_abbrev(&commit
->object
.oid
, abbrev
));
1888 struct strbuf buf
= STRBUF_INIT
;
1889 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &buf
);
1890 fprintf(file
, "%c %s %s\n", sign
,
1891 find_unique_abbrev(&commit
->object
.oid
, abbrev
),
1893 strbuf_release(&buf
);
1897 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
1899 struct rev_info revs
;
1900 struct patch_ids ids
;
1901 struct commit
*commit
;
1902 struct commit_list
*list
= NULL
;
1903 struct branch
*current_branch
;
1904 const char *upstream
;
1905 const char *head
= "HEAD";
1906 const char *limit
= NULL
;
1907 int verbose
= 0, abbrev
= 0;
1909 struct option options
[] = {
1910 OPT__ABBREV(&abbrev
),
1911 OPT__VERBOSE(&verbose
, N_("be verbose")),
1915 argc
= parse_options(argc
, argv
, prefix
, options
, cherry_usage
, 0);
1928 current_branch
= branch_get(NULL
);
1929 upstream
= branch_get_upstream(current_branch
, NULL
);
1931 fprintf(stderr
, _("Could not find a tracked"
1932 " remote branch, please"
1933 " specify <upstream> manually.\n"));
1934 usage_with_options(cherry_usage
, options
);
1938 init_revisions(&revs
, prefix
);
1939 revs
.max_parents
= 1;
1941 if (add_pending_commit(head
, &revs
, 0))
1942 die(_("Unknown commit %s"), head
);
1943 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
1944 die(_("Unknown commit %s"), upstream
);
1946 /* Don't say anything if head and upstream are the same. */
1947 if (revs
.pending
.nr
== 2) {
1948 struct object_array_entry
*o
= revs
.pending
.objects
;
1949 if (oidcmp(&o
[0].item
->oid
, &o
[1].item
->oid
) == 0)
1953 get_patch_ids(&revs
, &ids
);
1955 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
1956 die(_("Unknown commit %s"), limit
);
1958 /* reverse the list of commits */
1959 if (prepare_revision_walk(&revs
))
1960 die(_("revision walk setup failed"));
1961 while ((commit
= get_revision(&revs
)) != NULL
) {
1962 commit_list_insert(commit
, &list
);
1968 commit
= list
->item
;
1969 if (has_commit_patch_id(commit
, &ids
))
1971 print_commit(sign
, commit
, verbose
, abbrev
, revs
.diffopt
.file
);
1975 free_patch_ids(&ids
);