2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
17 #include "reflog-walk.h"
18 #include "patch-ids.h"
19 #include "run-command.h"
22 #include "string-list.h"
23 #include "parse-options.h"
26 #include "streaming.h"
29 #include "gpg-interface.h"
31 /* Set a default date-time format for git log ("log.date" config variable) */
32 static const char *default_date_mode
= NULL
;
34 static int default_abbrev_commit
;
35 static int default_show_root
= 1;
36 static int default_follow
;
37 static int default_show_signature
;
38 static int decoration_style
;
39 static int decoration_given
;
40 static int use_mailmap_config
;
41 static const char *fmt_patch_subject_prefix
= "PATCH";
42 static const char *fmt_pretty
;
44 static const char * const builtin_log_usage
[] = {
45 N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
46 N_("git show [<options>] <object>..."),
50 struct line_opt_callback_data
{
53 struct string_list args
;
56 static int auto_decoration_style(void)
58 return (isatty(1) || pager_in_use()) ? DECORATE_SHORT_REFS
: 0;
61 static int parse_decoration_style(const char *var
, const char *value
)
63 switch (git_config_maybe_bool(var
, value
)) {
65 return DECORATE_SHORT_REFS
;
71 if (!strcmp(value
, "full"))
72 return DECORATE_FULL_REFS
;
73 else if (!strcmp(value
, "short"))
74 return DECORATE_SHORT_REFS
;
75 else if (!strcmp(value
, "auto"))
76 return auto_decoration_style();
80 static int decorate_callback(const struct option
*opt
, const char *arg
, int unset
)
85 decoration_style
= parse_decoration_style("command line", arg
);
87 decoration_style
= DECORATE_SHORT_REFS
;
89 if (decoration_style
< 0)
90 die(_("invalid --decorate option: %s"), arg
);
97 static int log_line_range_callback(const struct option
*option
, const char *arg
, int unset
)
99 struct line_opt_callback_data
*data
= option
->value
;
104 data
->rev
->line_level_traverse
= 1;
105 string_list_append(&data
->args
, arg
);
110 static void init_log_defaults(void)
112 init_grep_defaults();
113 init_diff_ui_defaults();
115 decoration_style
= auto_decoration_style();
118 static void cmd_log_init_defaults(struct rev_info
*rev
)
121 get_commit_format(fmt_pretty
, rev
);
123 DIFF_OPT_SET(&rev
->diffopt
, DEFAULT_FOLLOW_RENAMES
);
124 rev
->verbose_header
= 1;
125 DIFF_OPT_SET(&rev
->diffopt
, RECURSIVE
);
126 rev
->diffopt
.stat_width
= -1; /* use full terminal width */
127 rev
->diffopt
.stat_graph_width
= -1; /* respect statGraphWidth config */
128 rev
->abbrev_commit
= default_abbrev_commit
;
129 rev
->show_root_diff
= default_show_root
;
130 rev
->subject_prefix
= fmt_patch_subject_prefix
;
131 rev
->show_signature
= default_show_signature
;
132 DIFF_OPT_SET(&rev
->diffopt
, ALLOW_TEXTCONV
);
134 if (default_date_mode
)
135 parse_date_format(default_date_mode
, &rev
->date_mode
);
136 rev
->diffopt
.touched_flags
= 0;
139 static void cmd_log_init_finish(int argc
, const char **argv
, const char *prefix
,
140 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
142 struct userformat_want w
;
143 int quiet
= 0, source
= 0, mailmap
= 0;
144 static struct line_opt_callback_data line_cb
= {NULL
, NULL
, STRING_LIST_INIT_DUP
};
146 const struct option builtin_log_options
[] = {
147 OPT__QUIET(&quiet
, N_("suppress diff output")),
148 OPT_BOOL(0, "source", &source
, N_("show source")),
149 OPT_BOOL(0, "use-mailmap", &mailmap
, N_("Use mail map file")),
150 { OPTION_CALLBACK
, 0, "decorate", NULL
, NULL
, N_("decorate options"),
151 PARSE_OPT_OPTARG
, decorate_callback
},
152 OPT_CALLBACK('L', NULL
, &line_cb
, "n,m:file",
153 N_("Process line range n,m in file, counting from 1"),
154 log_line_range_callback
),
159 line_cb
.prefix
= prefix
;
161 mailmap
= use_mailmap_config
;
162 argc
= parse_options(argc
, argv
, prefix
,
163 builtin_log_options
, builtin_log_usage
,
164 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
165 PARSE_OPT_KEEP_DASHDASH
);
168 rev
->diffopt
.output_format
|= DIFF_FORMAT_NO_OUTPUT
;
169 argc
= setup_revisions(argc
, argv
, rev
, opt
);
171 /* Any arguments at this point are not recognized */
173 die(_("unrecognized argument: %s"), argv
[1]);
175 memset(&w
, 0, sizeof(w
));
176 userformat_find_requirements(NULL
, &w
);
178 if (!rev
->show_notes_given
&& (!rev
->pretty_given
|| w
.notes
))
181 init_display_notes(&rev
->notes_opt
);
183 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
||
184 DIFF_OPT_TST(&rev
->diffopt
, FOLLOW_RENAMES
))
185 rev
->always_show_header
= 0;
188 rev
->show_source
= 1;
191 rev
->mailmap
= xcalloc(1, sizeof(struct string_list
));
192 read_mailmap(rev
->mailmap
, NULL
);
195 if (rev
->pretty_given
&& rev
->commit_format
== CMIT_FMT_RAW
) {
197 * "log --pretty=raw" is special; ignore UI oriented
198 * configuration variables such as decoration.
200 if (!decoration_given
)
201 decoration_style
= 0;
202 if (!rev
->abbrev_commit_given
)
203 rev
->abbrev_commit
= 0;
206 if (decoration_style
) {
207 rev
->show_decorations
= 1;
208 load_ref_decorations(decoration_style
);
211 if (rev
->line_level_traverse
)
212 line_log_init(rev
, line_cb
.prefix
, &line_cb
.args
);
217 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
218 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
220 cmd_log_init_defaults(rev
);
221 cmd_log_init_finish(argc
, argv
, prefix
, rev
, opt
);
225 * This gives a rough estimate for how many commits we
226 * will print out in the list.
228 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
233 struct commit
*commit
= list
->item
;
234 unsigned int flags
= commit
->object
.flags
;
236 if (!(flags
& (TREESAME
| UNINTERESTING
)))
242 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
244 if (rev
->shown_one
) {
246 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
247 putchar(rev
->diffopt
.line_termination
);
249 fprintf(rev
->diffopt
.file
, _("Final output: %d %s\n"), nr
, stage
);
252 static struct itimerval early_output_timer
;
254 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
256 int i
= revs
->early_output
, close_file
= revs
->diffopt
.close_file
;
259 revs
->diffopt
.close_file
= 0;
260 sort_in_topological_order(&list
, revs
->sort_order
);
262 struct commit
*commit
= list
->item
;
263 switch (simplify_commit(revs
, commit
)) {
266 int n
= estimate_commit_count(revs
, list
);
267 show_early_header(revs
, "incomplete", n
);
270 log_tree_commit(revs
, commit
);
277 fclose(revs
->diffopt
.file
);
283 /* Did we already get enough commits for the early output? */
286 fclose(revs
->diffopt
.file
);
291 * ..if no, then repeat it twice a second until we
294 * NOTE! We don't use "it_interval", because if the
295 * reader isn't listening, we want our output to be
296 * throttled by the writing, and not have the timer
297 * trigger every second even if we're blocked on a
300 early_output_timer
.it_value
.tv_sec
= 0;
301 early_output_timer
.it_value
.tv_usec
= 500000;
302 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
305 static void early_output(int signal
)
307 show_early_output
= log_show_early
;
310 static void setup_early_output(struct rev_info
*rev
)
315 * Set up the signal handler, minimally intrusively:
316 * we only set a single volatile integer word (not
317 * using sigatomic_t - trying to avoid unnecessary
318 * system dependencies and headers), and using
321 memset(&sa
, 0, sizeof(sa
));
322 sa
.sa_handler
= early_output
;
323 sigemptyset(&sa
.sa_mask
);
324 sa
.sa_flags
= SA_RESTART
;
325 sigaction(SIGALRM
, &sa
, NULL
);
328 * If we can get the whole output in less than a
329 * tenth of a second, don't even bother doing the
330 * early-output thing..
332 * This is a one-time-only trigger.
334 early_output_timer
.it_value
.tv_sec
= 0;
335 early_output_timer
.it_value
.tv_usec
= 100000;
336 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
339 static void finish_early_output(struct rev_info
*rev
)
341 int n
= estimate_commit_count(rev
, rev
->commits
);
342 signal(SIGALRM
, SIG_IGN
);
343 show_early_header(rev
, "done", n
);
346 static int cmd_log_walk(struct rev_info
*rev
)
348 struct commit
*commit
;
350 int saved_dcctc
= 0, close_file
= rev
->diffopt
.close_file
;
352 if (rev
->early_output
)
353 setup_early_output(rev
);
355 if (prepare_revision_walk(rev
))
356 die(_("revision walk setup failed"));
358 if (rev
->early_output
)
359 finish_early_output(rev
);
362 * For --check and --exit-code, the exit code is based on CHECK_FAILED
363 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
364 * retain that state information if replacing rev->diffopt in this loop
366 rev
->diffopt
.close_file
= 0;
367 while ((commit
= get_revision(rev
)) != NULL
) {
368 if (!log_tree_commit(rev
, commit
) && rev
->max_count
>= 0)
370 * We decremented max_count in get_revision,
371 * but we didn't actually show the commit.
374 if (!rev
->reflog_info
) {
376 * We may show a given commit multiple times when
377 * walking the reflogs.
379 free_commit_buffer(commit
);
380 free_commit_list(commit
->parents
);
381 commit
->parents
= NULL
;
383 if (saved_nrl
< rev
->diffopt
.needed_rename_limit
)
384 saved_nrl
= rev
->diffopt
.needed_rename_limit
;
385 if (rev
->diffopt
.degraded_cc_to_c
)
388 rev
->diffopt
.degraded_cc_to_c
= saved_dcctc
;
389 rev
->diffopt
.needed_rename_limit
= saved_nrl
;
391 fclose(rev
->diffopt
.file
);
393 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
394 DIFF_OPT_TST(&rev
->diffopt
, CHECK_FAILED
)) {
397 return diff_result_code(&rev
->diffopt
, 0);
400 static int git_log_config(const char *var
, const char *value
, void *cb
)
402 const char *slot_name
;
404 if (!strcmp(var
, "format.pretty"))
405 return git_config_string(&fmt_pretty
, var
, value
);
406 if (!strcmp(var
, "format.subjectprefix"))
407 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
408 if (!strcmp(var
, "log.abbrevcommit")) {
409 default_abbrev_commit
= git_config_bool(var
, value
);
412 if (!strcmp(var
, "log.date"))
413 return git_config_string(&default_date_mode
, var
, value
);
414 if (!strcmp(var
, "log.decorate")) {
415 decoration_style
= parse_decoration_style(var
, value
);
416 if (decoration_style
< 0)
417 decoration_style
= 0; /* maybe warn? */
420 if (!strcmp(var
, "log.showroot")) {
421 default_show_root
= git_config_bool(var
, value
);
424 if (!strcmp(var
, "log.follow")) {
425 default_follow
= git_config_bool(var
, value
);
428 if (skip_prefix(var
, "color.decorate.", &slot_name
))
429 return parse_decorate_color_config(var
, slot_name
, value
);
430 if (!strcmp(var
, "log.mailmap")) {
431 use_mailmap_config
= git_config_bool(var
, value
);
434 if (!strcmp(var
, "log.showsignature")) {
435 default_show_signature
= git_config_bool(var
, value
);
439 if (grep_config(var
, value
, cb
) < 0)
441 if (git_gpg_config(var
, value
, cb
) < 0)
443 return git_diff_ui_config(var
, value
, cb
);
446 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
449 struct setup_revision_opt opt
;
452 git_config(git_log_config
, NULL
);
454 init_revisions(&rev
, prefix
);
456 rev
.simplify_history
= 0;
457 memset(&opt
, 0, sizeof(opt
));
459 opt
.revarg_opt
= REVARG_COMMITTISH
;
460 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
461 if (!rev
.diffopt
.output_format
)
462 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
463 return cmd_log_walk(&rev
);
466 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
468 struct strbuf out
= STRBUF_INIT
;
469 struct pretty_print_context pp
= {0};
471 pp
.fmt
= rev
->commit_format
;
472 pp
.date_mode
= rev
->date_mode
;
473 pp_user_info(&pp
, "Tagger", &out
, buf
, get_log_output_encoding());
474 fprintf(rev
->diffopt
.file
, "%s", out
.buf
);
475 strbuf_release(&out
);
478 static int show_blob_object(const struct object_id
*oid
, struct rev_info
*rev
, const char *obj_name
)
480 struct object_id oidc
;
481 struct object_context obj_context
;
485 fflush(rev
->diffopt
.file
);
486 if (!DIFF_OPT_TOUCHED(&rev
->diffopt
, ALLOW_TEXTCONV
) ||
487 !DIFF_OPT_TST(&rev
->diffopt
, ALLOW_TEXTCONV
))
488 return stream_blob_to_fd(1, oid
, NULL
, 0);
490 if (get_sha1_with_context(obj_name
, GET_SHA1_RECORD_PATH
,
491 oidc
.hash
, &obj_context
))
492 die(_("Not a valid object name %s"), obj_name
);
493 if (!obj_context
.path
||
494 !textconv_object(obj_context
.path
, obj_context
.mode
, &oidc
, 1, &buf
, &size
)) {
495 free(obj_context
.path
);
496 return stream_blob_to_fd(1, oid
, NULL
, 0);
500 die(_("git show %s: bad file"), obj_name
);
502 write_or_die(1, buf
, size
);
503 free(obj_context
.path
);
507 static int show_tag_object(const struct object_id
*oid
, struct rev_info
*rev
)
510 enum object_type type
;
511 char *buf
= read_sha1_file(oid
->hash
, &type
, &size
);
515 return error(_("Could not read object %s"), oid_to_hex(oid
));
517 assert(type
== OBJ_TAG
);
518 while (offset
< size
&& buf
[offset
] != '\n') {
519 int new_offset
= offset
+ 1;
520 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
522 if (starts_with(buf
+ offset
, "tagger "))
523 show_tagger(buf
+ offset
+ 7,
524 new_offset
- offset
- 7, rev
);
529 fwrite(buf
+ offset
, size
- offset
, 1, rev
->diffopt
.file
);
534 static int show_tree_object(const unsigned char *sha1
,
536 const char *pathname
, unsigned mode
, int stage
, void *context
)
538 FILE *file
= context
;
539 fprintf(file
, "%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
543 static void show_setup_revisions_tweak(struct rev_info
*rev
,
544 struct setup_revision_opt
*opt
)
546 if (rev
->ignore_merges
) {
547 /* There was no "-m" on the command line */
548 rev
->ignore_merges
= 0;
549 if (!rev
->first_parent_only
&& !rev
->combine_merges
) {
550 /* No "--first-parent", "-c", or "--cc" */
551 rev
->combine_merges
= 1;
552 rev
->dense_combined_merges
= 1;
555 if (!rev
->diffopt
.output_format
)
556 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
559 int cmd_show(int argc
, const char **argv
, const char *prefix
)
562 struct object_array_entry
*objects
;
563 struct setup_revision_opt opt
;
564 struct pathspec match_all
;
565 int i
, count
, ret
= 0;
568 git_config(git_log_config
, NULL
);
570 memset(&match_all
, 0, sizeof(match_all
));
571 init_revisions(&rev
, prefix
);
573 rev
.always_show_header
= 1;
574 rev
.no_walk
= REVISION_WALK_NO_WALK_SORTED
;
575 rev
.diffopt
.stat_width
= -1; /* Scale to real terminal size */
577 memset(&opt
, 0, sizeof(opt
));
579 opt
.tweak
= show_setup_revisions_tweak
;
580 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
583 return cmd_log_walk(&rev
);
585 count
= rev
.pending
.nr
;
586 objects
= rev
.pending
.objects
;
587 for (i
= 0; i
< count
&& !ret
; i
++) {
588 struct object
*o
= objects
[i
].item
;
589 const char *name
= objects
[i
].name
;
592 ret
= show_blob_object(&o
->oid
, &rev
, name
);
595 struct tag
*t
= (struct tag
*)o
;
599 fprintf(rev
.diffopt
.file
, "%stag %s%s\n",
600 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
602 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
603 ret
= show_tag_object(&o
->oid
, &rev
);
607 o
= parse_object(&t
->tagged
->oid
);
609 ret
= error(_("Could not read object %s"),
610 oid_to_hex(&t
->tagged
->oid
));
618 fprintf(rev
.diffopt
.file
, "%stree %s%s\n\n",
619 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
621 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
622 read_tree_recursive((struct tree
*)o
, "", 0, 0, &match_all
,
623 show_tree_object
, rev
.diffopt
.file
);
627 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
628 rev
.pending
.objects
= NULL
;
629 add_object_array(o
, name
, &rev
.pending
);
630 ret
= cmd_log_walk(&rev
);
633 ret
= error(_("Unknown type: %d"), o
->type
);
641 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
643 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
646 struct setup_revision_opt opt
;
649 git_config(git_log_config
, NULL
);
651 init_revisions(&rev
, prefix
);
652 init_reflog_walk(&rev
.reflog_info
);
653 rev
.verbose_header
= 1;
654 memset(&opt
, 0, sizeof(opt
));
656 cmd_log_init_defaults(&rev
);
657 rev
.abbrev_commit
= 1;
658 rev
.commit_format
= CMIT_FMT_ONELINE
;
659 rev
.use_terminator
= 1;
660 rev
.always_show_header
= 1;
661 cmd_log_init_finish(argc
, argv
, prefix
, &rev
, &opt
);
663 return cmd_log_walk(&rev
);
666 static void log_setup_revisions_tweak(struct rev_info
*rev
,
667 struct setup_revision_opt
*opt
)
669 if (DIFF_OPT_TST(&rev
->diffopt
, DEFAULT_FOLLOW_RENAMES
) &&
670 rev
->prune_data
.nr
== 1)
671 DIFF_OPT_SET(&rev
->diffopt
, FOLLOW_RENAMES
);
673 /* Turn --cc/-c into -p --cc/-c when -p was not given */
674 if (!rev
->diffopt
.output_format
&& rev
->combine_merges
)
675 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
677 /* Turn -m on when --cc/-c was given */
678 if (rev
->combine_merges
)
679 rev
->ignore_merges
= 0;
682 int cmd_log(int argc
, const char **argv
, const char *prefix
)
685 struct setup_revision_opt opt
;
688 git_config(git_log_config
, NULL
);
690 init_revisions(&rev
, prefix
);
691 rev
.always_show_header
= 1;
692 memset(&opt
, 0, sizeof(opt
));
694 opt
.revarg_opt
= REVARG_COMMITTISH
;
695 opt
.tweak
= log_setup_revisions_tweak
;
696 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
697 return cmd_log_walk(&rev
);
702 static const char *fmt_patch_suffix
= ".patch";
703 static int numbered
= 0;
704 static int auto_number
= 1;
706 static char *default_attach
= NULL
;
708 static struct string_list extra_hdr
= STRING_LIST_INIT_NODUP
;
709 static struct string_list extra_to
= STRING_LIST_INIT_NODUP
;
710 static struct string_list extra_cc
= STRING_LIST_INIT_NODUP
;
712 static void add_header(const char *value
)
714 struct string_list_item
*item
;
715 int len
= strlen(value
);
716 while (len
&& value
[len
- 1] == '\n')
719 if (!strncasecmp(value
, "to: ", 4)) {
720 item
= string_list_append(&extra_to
, value
+ 4);
722 } else if (!strncasecmp(value
, "cc: ", 4)) {
723 item
= string_list_append(&extra_cc
, value
+ 4);
726 item
= string_list_append(&extra_hdr
, value
);
729 item
->string
[len
] = '\0';
732 #define THREAD_SHALLOW 1
733 #define THREAD_DEEP 2
735 static int do_signoff
;
736 static int base_auto
;
738 static const char *signature
= git_version_string
;
739 static const char *signature_file
;
740 static int config_cover_letter
;
741 static const char *config_output_directory
;
750 static int git_format_config(const char *var
, const char *value
, void *cb
)
752 if (!strcmp(var
, "format.headers")) {
754 die(_("format.headers without value"));
758 if (!strcmp(var
, "format.suffix"))
759 return git_config_string(&fmt_patch_suffix
, var
, value
);
760 if (!strcmp(var
, "format.to")) {
762 return config_error_nonbool(var
);
763 string_list_append(&extra_to
, value
);
766 if (!strcmp(var
, "format.cc")) {
768 return config_error_nonbool(var
);
769 string_list_append(&extra_cc
, value
);
772 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff") ||
773 !strcmp(var
, "color.ui") || !strcmp(var
, "diff.submodule")) {
776 if (!strcmp(var
, "format.numbered")) {
777 if (value
&& !strcasecmp(value
, "auto")) {
781 numbered
= git_config_bool(var
, value
);
782 auto_number
= auto_number
&& numbered
;
785 if (!strcmp(var
, "format.attach")) {
787 default_attach
= xstrdup(value
);
789 default_attach
= xstrdup(git_version_string
);
792 if (!strcmp(var
, "format.thread")) {
793 if (value
&& !strcasecmp(value
, "deep")) {
794 thread
= THREAD_DEEP
;
797 if (value
&& !strcasecmp(value
, "shallow")) {
798 thread
= THREAD_SHALLOW
;
801 thread
= git_config_bool(var
, value
) && THREAD_SHALLOW
;
804 if (!strcmp(var
, "format.signoff")) {
805 do_signoff
= git_config_bool(var
, value
);
808 if (!strcmp(var
, "format.signature"))
809 return git_config_string(&signature
, var
, value
);
810 if (!strcmp(var
, "format.signaturefile"))
811 return git_config_pathname(&signature_file
, var
, value
);
812 if (!strcmp(var
, "format.coverletter")) {
813 if (value
&& !strcasecmp(value
, "auto")) {
814 config_cover_letter
= COVER_AUTO
;
817 config_cover_letter
= git_config_bool(var
, value
) ? COVER_ON
: COVER_OFF
;
820 if (!strcmp(var
, "format.outputdirectory"))
821 return git_config_string(&config_output_directory
, var
, value
);
822 if (!strcmp(var
, "format.useautobase")) {
823 base_auto
= git_config_bool(var
, value
);
826 if (!strcmp(var
, "format.from")) {
827 int b
= git_config_maybe_bool(var
, value
);
830 from
= xstrdup(value
);
832 from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
838 return git_log_config(var
, value
, cb
);
841 static const char *output_directory
= NULL
;
842 static int outdir_offset
;
844 static int open_next_file(struct commit
*commit
, const char *subject
,
845 struct rev_info
*rev
, int quiet
)
847 struct strbuf filename
= STRBUF_INIT
;
848 int suffix_len
= strlen(rev
->patch_suffix
) + 1;
850 if (output_directory
) {
851 strbuf_addstr(&filename
, output_directory
);
853 PATH_MAX
- FORMAT_PATCH_NAME_MAX
- suffix_len
) {
854 strbuf_release(&filename
);
855 return error(_("name of output directory is too long"));
857 strbuf_complete(&filename
, '/');
860 if (rev
->numbered_files
)
861 strbuf_addf(&filename
, "%d", rev
->nr
);
863 fmt_output_commit(&filename
, commit
, rev
);
865 fmt_output_subject(&filename
, subject
, rev
);
868 printf("%s\n", filename
.buf
+ outdir_offset
);
870 if ((rev
->diffopt
.file
= fopen(filename
.buf
, "w")) == NULL
) {
871 error_errno(_("Cannot open patch file %s"), filename
.buf
);
872 strbuf_release(&filename
);
876 strbuf_release(&filename
);
880 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
)
882 struct rev_info check_rev
;
883 struct commit
*commit
, *c1
, *c2
;
884 struct object
*o1
, *o2
;
885 unsigned flags1
, flags2
;
887 if (rev
->pending
.nr
!= 2)
888 die(_("Need exactly one range."));
890 o1
= rev
->pending
.objects
[0].item
;
891 o2
= rev
->pending
.objects
[1].item
;
894 c1
= lookup_commit_reference(&o1
->oid
);
895 c2
= lookup_commit_reference(&o2
->oid
);
897 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
898 die(_("Not a range."));
902 /* given a range a..b get all patch ids for b..a */
903 init_revisions(&check_rev
, rev
->prefix
);
904 check_rev
.max_parents
= 1;
905 o1
->flags
^= UNINTERESTING
;
906 o2
->flags
^= UNINTERESTING
;
907 add_pending_object(&check_rev
, o1
, "o1");
908 add_pending_object(&check_rev
, o2
, "o2");
909 if (prepare_revision_walk(&check_rev
))
910 die(_("revision walk setup failed"));
912 while ((commit
= get_revision(&check_rev
)) != NULL
) {
913 add_commit_patch_id(commit
, ids
);
916 /* reset for next revision walk */
917 clear_commit_marks(c1
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
918 clear_commit_marks(c2
, SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
923 static void gen_message_id(struct rev_info
*info
, char *base
)
925 struct strbuf buf
= STRBUF_INIT
;
926 strbuf_addf(&buf
, "%s.%"PRItime
".git.%s", base
,
927 (timestamp_t
) time(NULL
),
928 git_committer_info(IDENT_NO_NAME
|IDENT_NO_DATE
|IDENT_STRICT
));
929 info
->message_id
= strbuf_detach(&buf
, NULL
);
932 static void print_signature(FILE *file
)
934 if (!signature
|| !*signature
)
937 fprintf(file
, "-- \n%s", signature
);
938 if (signature
[strlen(signature
)-1] != '\n')
943 static void add_branch_description(struct strbuf
*buf
, const char *branch_name
)
945 struct strbuf desc
= STRBUF_INIT
;
946 if (!branch_name
|| !*branch_name
)
948 read_branch_desc(&desc
, branch_name
);
950 strbuf_addch(buf
, '\n');
951 strbuf_addbuf(buf
, &desc
);
952 strbuf_addch(buf
, '\n');
954 strbuf_release(&desc
);
957 static char *find_branch_name(struct rev_info
*rev
)
959 int i
, positive
= -1;
960 struct object_id branch_oid
;
961 const struct object_id
*tip_oid
;
963 char *full_ref
, *branch
= NULL
;
965 for (i
= 0; i
< rev
->cmdline
.nr
; i
++) {
966 if (rev
->cmdline
.rev
[i
].flags
& UNINTERESTING
)
975 ref
= rev
->cmdline
.rev
[positive
].name
;
976 tip_oid
= &rev
->cmdline
.rev
[positive
].item
->oid
;
977 if (dwim_ref(ref
, strlen(ref
), branch_oid
.hash
, &full_ref
) &&
978 skip_prefix(full_ref
, "refs/heads/", &v
) &&
979 !oidcmp(tip_oid
, &branch_oid
))
985 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
986 struct commit
*origin
,
987 int nr
, struct commit
**list
,
988 const char *branch_name
,
991 const char *committer
;
992 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
995 struct strbuf sb
= STRBUF_INIT
;
997 const char *encoding
= "UTF-8";
998 struct diff_options opts
;
999 int need_8bit_cte
= 0;
1000 struct pretty_print_context pp
= {0};
1001 struct commit
*head
= list
[0];
1003 if (!cmit_fmt_is_mail(rev
->commit_format
))
1004 die(_("Cover letter needs email format"));
1006 committer
= git_committer_info(0);
1009 open_next_file(NULL
, rev
->numbered_files
? NULL
: "cover-letter", rev
, quiet
))
1012 log_write_email_headers(rev
, head
, &pp
.after_subject
, &need_8bit_cte
);
1014 for (i
= 0; !need_8bit_cte
&& i
< nr
; i
++) {
1015 const char *buf
= get_commit_buffer(list
[i
], NULL
);
1016 if (has_non_ascii(buf
))
1018 unuse_commit_buffer(list
[i
], buf
);
1022 branch_name
= find_branch_name(rev
);
1025 pp
.fmt
= CMIT_FMT_EMAIL
;
1026 pp
.date_mode
.type
= DATE_RFC2822
;
1028 pp
.print_email_subject
= 1;
1029 pp_user_info(&pp
, NULL
, &sb
, committer
, encoding
);
1030 pp_title_line(&pp
, &msg
, &sb
, encoding
, need_8bit_cte
);
1031 pp_remainder(&pp
, &msg
, &sb
, 0);
1032 add_branch_description(&sb
, branch_name
);
1033 fprintf(rev
->diffopt
.file
, "%s\n", sb
.buf
);
1035 strbuf_release(&sb
);
1037 shortlog_init(&log
);
1042 log
.file
= rev
->diffopt
.file
;
1043 for (i
= 0; i
< nr
; i
++)
1044 shortlog_add_commit(&log
, list
[i
]);
1046 shortlog_output(&log
);
1049 * We can only do diffstat with a unique reference point
1054 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
1055 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
1057 diff_setup_done(&opts
);
1059 diff_tree_oid(&origin
->tree
->object
.oid
,
1060 &head
->tree
->object
.oid
,
1062 diffcore_std(&opts
);
1065 fprintf(rev
->diffopt
.file
, "\n");
1068 static const char *clean_message_id(const char *msg_id
)
1071 const char *a
, *z
, *m
;
1074 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
1079 if (!isspace(ch
) && (ch
!= '>'))
1084 die(_("insane in-reply-to: %s"), msg_id
);
1087 return xmemdupz(a
, z
- a
);
1090 static const char *set_outdir(const char *prefix
, const char *output_directory
)
1092 if (output_directory
&& is_absolute_path(output_directory
))
1093 return output_directory
;
1095 if (!prefix
|| !*prefix
) {
1096 if (output_directory
)
1097 return output_directory
;
1098 /* The user did not explicitly ask for "./" */
1103 outdir_offset
= strlen(prefix
);
1104 if (!output_directory
)
1107 return prefix_filename(prefix
, output_directory
);
1110 static const char * const builtin_format_patch_usage
[] = {
1111 N_("git format-patch [<options>] [<since> | <revision-range>]"),
1115 static int keep_subject
= 0;
1117 static int keep_callback(const struct option
*opt
, const char *arg
, int unset
)
1119 ((struct rev_info
*)opt
->value
)->total
= -1;
1124 static int subject_prefix
= 0;
1126 static int subject_prefix_callback(const struct option
*opt
, const char *arg
,
1130 ((struct rev_info
*)opt
->value
)->subject_prefix
= arg
;
1134 static int rfc_callback(const struct option
*opt
, const char *arg
, int unset
)
1136 return subject_prefix_callback(opt
, "RFC PATCH", unset
);
1139 static int numbered_cmdline_opt
= 0;
1141 static int numbered_callback(const struct option
*opt
, const char *arg
,
1144 *(int *)opt
->value
= numbered_cmdline_opt
= unset
? 0 : 1;
1150 static int no_numbered_callback(const struct option
*opt
, const char *arg
,
1153 return numbered_callback(opt
, arg
, 1);
1156 static int output_directory_callback(const struct option
*opt
, const char *arg
,
1159 const char **dir
= (const char **)opt
->value
;
1161 die(_("Two output directories?"));
1166 static int thread_callback(const struct option
*opt
, const char *arg
, int unset
)
1168 int *thread
= (int *)opt
->value
;
1171 else if (!arg
|| !strcmp(arg
, "shallow"))
1172 *thread
= THREAD_SHALLOW
;
1173 else if (!strcmp(arg
, "deep"))
1174 *thread
= THREAD_DEEP
;
1180 static int attach_callback(const struct option
*opt
, const char *arg
, int unset
)
1182 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1184 rev
->mime_boundary
= NULL
;
1186 rev
->mime_boundary
= arg
;
1188 rev
->mime_boundary
= git_version_string
;
1189 rev
->no_inline
= unset
? 0 : 1;
1193 static int inline_callback(const struct option
*opt
, const char *arg
, int unset
)
1195 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
1197 rev
->mime_boundary
= NULL
;
1199 rev
->mime_boundary
= arg
;
1201 rev
->mime_boundary
= git_version_string
;
1206 static int header_callback(const struct option
*opt
, const char *arg
, int unset
)
1209 string_list_clear(&extra_hdr
, 0);
1210 string_list_clear(&extra_to
, 0);
1211 string_list_clear(&extra_cc
, 0);
1218 static int to_callback(const struct option
*opt
, const char *arg
, int unset
)
1221 string_list_clear(&extra_to
, 0);
1223 string_list_append(&extra_to
, arg
);
1227 static int cc_callback(const struct option
*opt
, const char *arg
, int unset
)
1230 string_list_clear(&extra_cc
, 0);
1232 string_list_append(&extra_cc
, arg
);
1236 static int from_callback(const struct option
*opt
, const char *arg
, int unset
)
1238 char **from
= opt
->value
;
1245 *from
= xstrdup(arg
);
1247 *from
= xstrdup(git_committer_info(IDENT_NO_DATE
));
1251 struct base_tree_info
{
1252 struct object_id base_commit
;
1253 int nr_patch_id
, alloc_patch_id
;
1254 struct object_id
*patch_id
;
1257 static struct commit
*get_base_commit(const char *base_commit
,
1258 struct commit
**list
,
1261 struct commit
*base
= NULL
;
1262 struct commit
**rev
;
1263 int i
= 0, rev_nr
= 0;
1265 if (base_commit
&& strcmp(base_commit
, "auto")) {
1266 base
= lookup_commit_reference_by_name(base_commit
);
1268 die(_("Unknown commit %s"), base_commit
);
1269 } else if ((base_commit
&& !strcmp(base_commit
, "auto")) || base_auto
) {
1270 struct branch
*curr_branch
= branch_get(NULL
);
1271 const char *upstream
= branch_get_upstream(curr_branch
, NULL
);
1273 struct commit_list
*base_list
;
1274 struct commit
*commit
;
1275 struct object_id oid
;
1277 if (get_oid(upstream
, &oid
))
1278 die(_("Failed to resolve '%s' as a valid ref."), upstream
);
1279 commit
= lookup_commit_or_die(&oid
, "upstream base");
1280 base_list
= get_merge_bases_many(commit
, total
, list
);
1281 /* There should be one and only one merge base. */
1282 if (!base_list
|| base_list
->next
)
1283 die(_("Could not find exact merge base."));
1284 base
= base_list
->item
;
1285 free_commit_list(base_list
);
1287 die(_("Failed to get upstream, if you want to record base commit automatically,\n"
1288 "please use git branch --set-upstream-to to track a remote branch.\n"
1289 "Or you could specify base commit by --base=<base-commit-id> manually."));
1293 ALLOC_ARRAY(rev
, total
);
1294 for (i
= 0; i
< total
; i
++)
1299 * Get merge base through pair-wise computations
1300 * and store it in rev[0].
1302 while (rev_nr
> 1) {
1303 for (i
= 0; i
< rev_nr
/ 2; i
++) {
1304 struct commit_list
*merge_base
;
1305 merge_base
= get_merge_bases(rev
[2 * i
], rev
[2 * i
+ 1]);
1306 if (!merge_base
|| merge_base
->next
)
1307 die(_("Failed to find exact merge base"));
1309 rev
[i
] = merge_base
->item
;
1313 rev
[i
] = rev
[2 * i
];
1314 rev_nr
= DIV_ROUND_UP(rev_nr
, 2);
1317 if (!in_merge_bases(base
, rev
[0]))
1318 die(_("base commit should be the ancestor of revision list"));
1320 for (i
= 0; i
< total
; i
++) {
1321 if (base
== list
[i
])
1322 die(_("base commit shouldn't be in revision list"));
1329 static void prepare_bases(struct base_tree_info
*bases
,
1330 struct commit
*base
,
1331 struct commit
**list
,
1334 struct commit
*commit
;
1335 struct rev_info revs
;
1336 struct diff_options diffopt
;
1342 diff_setup(&diffopt
);
1343 DIFF_OPT_SET(&diffopt
, RECURSIVE
);
1344 diff_setup_done(&diffopt
);
1346 oidcpy(&bases
->base_commit
, &base
->object
.oid
);
1348 init_revisions(&revs
, NULL
);
1349 revs
.max_parents
= 1;
1350 revs
.topo_order
= 1;
1351 for (i
= 0; i
< total
; i
++) {
1352 list
[i
]->object
.flags
&= ~UNINTERESTING
;
1353 add_pending_object(&revs
, &list
[i
]->object
, "rev_list");
1354 list
[i
]->util
= (void *)1;
1356 base
->object
.flags
|= UNINTERESTING
;
1357 add_pending_object(&revs
, &base
->object
, "base");
1359 if (prepare_revision_walk(&revs
))
1360 die(_("revision walk setup failed"));
1362 * Traverse the commits list, get prerequisite patch ids
1363 * and stuff them in bases structure.
1365 while ((commit
= get_revision(&revs
)) != NULL
) {
1366 struct object_id oid
;
1367 struct object_id
*patch_id
;
1370 if (commit_patch_id(commit
, &diffopt
, &oid
, 0))
1371 die(_("cannot get patch id"));
1372 ALLOC_GROW(bases
->patch_id
, bases
->nr_patch_id
+ 1, bases
->alloc_patch_id
);
1373 patch_id
= bases
->patch_id
+ bases
->nr_patch_id
;
1374 oidcpy(patch_id
, &oid
);
1375 bases
->nr_patch_id
++;
1379 static void print_bases(struct base_tree_info
*bases
, FILE *file
)
1383 /* Only do this once, either for the cover or for the first one */
1384 if (is_null_oid(&bases
->base_commit
))
1387 /* Show the base commit */
1388 fprintf(file
, "\nbase-commit: %s\n", oid_to_hex(&bases
->base_commit
));
1390 /* Show the prerequisite patches */
1391 for (i
= bases
->nr_patch_id
- 1; i
>= 0; i
--)
1392 fprintf(file
, "prerequisite-patch-id: %s\n", oid_to_hex(&bases
->patch_id
[i
]));
1394 free(bases
->patch_id
);
1395 bases
->nr_patch_id
= 0;
1396 bases
->alloc_patch_id
= 0;
1397 oidclr(&bases
->base_commit
);
1400 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
1402 struct commit
*commit
;
1403 struct commit
**list
= NULL
;
1404 struct rev_info rev
;
1405 struct setup_revision_opt s_r_opt
;
1406 int nr
= 0, total
, i
;
1408 int start_number
= -1;
1409 int just_numbers
= 0;
1410 int ignore_if_in_upstream
= 0;
1411 int cover_letter
= -1;
1412 int boundary_count
= 0;
1413 int no_binary_diff
= 0;
1414 int zero_commit
= 0;
1415 struct commit
*origin
= NULL
;
1416 const char *in_reply_to
= NULL
;
1417 struct patch_ids ids
;
1418 struct strbuf buf
= STRBUF_INIT
;
1419 int use_patch_format
= 0;
1421 int reroll_count
= -1;
1422 char *branch_name
= NULL
;
1423 char *base_commit
= NULL
;
1424 struct base_tree_info bases
;
1426 const struct option builtin_format_patch_options
[] = {
1427 { OPTION_CALLBACK
, 'n', "numbered", &numbered
, NULL
,
1428 N_("use [PATCH n/m] even with a single patch"),
1429 PARSE_OPT_NOARG
, numbered_callback
},
1430 { OPTION_CALLBACK
, 'N', "no-numbered", &numbered
, NULL
,
1431 N_("use [PATCH] even with multiple patches"),
1432 PARSE_OPT_NOARG
, no_numbered_callback
},
1433 OPT_BOOL('s', "signoff", &do_signoff
, N_("add Signed-off-by:")),
1434 OPT_BOOL(0, "stdout", &use_stdout
,
1435 N_("print patches to standard out")),
1436 OPT_BOOL(0, "cover-letter", &cover_letter
,
1437 N_("generate a cover letter")),
1438 OPT_BOOL(0, "numbered-files", &just_numbers
,
1439 N_("use simple number sequence for output file names")),
1440 OPT_STRING(0, "suffix", &fmt_patch_suffix
, N_("sfx"),
1441 N_("use <sfx> instead of '.patch'")),
1442 OPT_INTEGER(0, "start-number", &start_number
,
1443 N_("start numbering patches at <n> instead of 1")),
1444 OPT_INTEGER('v', "reroll-count", &reroll_count
,
1445 N_("mark the series as Nth re-roll")),
1446 { OPTION_CALLBACK
, 0, "rfc", &rev
, NULL
,
1447 N_("Use [RFC PATCH] instead of [PATCH]"),
1448 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, rfc_callback
},
1449 { OPTION_CALLBACK
, 0, "subject-prefix", &rev
, N_("prefix"),
1450 N_("Use [<prefix>] instead of [PATCH]"),
1451 PARSE_OPT_NONEG
, subject_prefix_callback
},
1452 { OPTION_CALLBACK
, 'o', "output-directory", &output_directory
,
1453 N_("dir"), N_("store resulting files in <dir>"),
1454 PARSE_OPT_NONEG
, output_directory_callback
},
1455 { OPTION_CALLBACK
, 'k', "keep-subject", &rev
, NULL
,
1456 N_("don't strip/add [PATCH]"),
1457 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, keep_callback
},
1458 OPT_BOOL(0, "no-binary", &no_binary_diff
,
1459 N_("don't output binary diffs")),
1460 OPT_BOOL(0, "zero-commit", &zero_commit
,
1461 N_("output all-zero hash in From header")),
1462 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream
,
1463 N_("don't include a patch matching a commit upstream")),
1464 { OPTION_SET_INT
, 'p', "no-stat", &use_patch_format
, NULL
,
1465 N_("show patch format instead of default (patch + stat)"),
1466 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
, NULL
, 1},
1467 OPT_GROUP(N_("Messaging")),
1468 { OPTION_CALLBACK
, 0, "add-header", NULL
, N_("header"),
1469 N_("add email header"), 0, header_callback
},
1470 { OPTION_CALLBACK
, 0, "to", NULL
, N_("email"), N_("add To: header"),
1472 { OPTION_CALLBACK
, 0, "cc", NULL
, N_("email"), N_("add Cc: header"),
1474 { OPTION_CALLBACK
, 0, "from", &from
, N_("ident"),
1475 N_("set From address to <ident> (or committer ident if absent)"),
1476 PARSE_OPT_OPTARG
, from_callback
},
1477 OPT_STRING(0, "in-reply-to", &in_reply_to
, N_("message-id"),
1478 N_("make first mail a reply to <message-id>")),
1479 { OPTION_CALLBACK
, 0, "attach", &rev
, N_("boundary"),
1480 N_("attach the patch"), PARSE_OPT_OPTARG
,
1482 { OPTION_CALLBACK
, 0, "inline", &rev
, N_("boundary"),
1483 N_("inline the patch"),
1484 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
,
1486 { OPTION_CALLBACK
, 0, "thread", &thread
, N_("style"),
1487 N_("enable message threading, styles: shallow, deep"),
1488 PARSE_OPT_OPTARG
, thread_callback
},
1489 OPT_STRING(0, "signature", &signature
, N_("signature"),
1490 N_("add a signature")),
1491 OPT_STRING(0, "base", &base_commit
, N_("base-commit"),
1492 N_("add prerequisite tree info to the patch series")),
1493 OPT_FILENAME(0, "signature-file", &signature_file
,
1494 N_("add a signature from a file")),
1495 OPT__QUIET(&quiet
, N_("don't print the patch filenames")),
1499 extra_hdr
.strdup_strings
= 1;
1500 extra_to
.strdup_strings
= 1;
1501 extra_cc
.strdup_strings
= 1;
1502 init_log_defaults();
1503 git_config(git_format_config
, NULL
);
1504 init_revisions(&rev
, prefix
);
1505 rev
.commit_format
= CMIT_FMT_EMAIL
;
1506 rev
.expand_tabs_in_log_default
= 0;
1507 rev
.verbose_header
= 1;
1509 rev
.max_parents
= 1;
1510 DIFF_OPT_SET(&rev
.diffopt
, RECURSIVE
);
1511 rev
.subject_prefix
= fmt_patch_subject_prefix
;
1512 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
1513 s_r_opt
.def
= "HEAD";
1514 s_r_opt
.revarg_opt
= REVARG_COMMITTISH
;
1516 if (default_attach
) {
1517 rev
.mime_boundary
= default_attach
;
1522 * Parse the arguments before setup_revisions(), or something
1523 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1524 * possibly a valid SHA1.
1526 argc
= parse_options(argc
, argv
, prefix
, builtin_format_patch_options
,
1527 builtin_format_patch_usage
,
1528 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
1529 PARSE_OPT_KEEP_DASHDASH
);
1531 if (0 < reroll_count
) {
1532 struct strbuf sprefix
= STRBUF_INIT
;
1533 strbuf_addf(&sprefix
, "%s v%d",
1534 rev
.subject_prefix
, reroll_count
);
1535 rev
.reroll_count
= reroll_count
;
1536 rev
.subject_prefix
= strbuf_detach(&sprefix
, NULL
);
1539 for (i
= 0; i
< extra_hdr
.nr
; i
++) {
1540 strbuf_addstr(&buf
, extra_hdr
.items
[i
].string
);
1541 strbuf_addch(&buf
, '\n');
1545 strbuf_addstr(&buf
, "To: ");
1546 for (i
= 0; i
< extra_to
.nr
; i
++) {
1548 strbuf_addstr(&buf
, " ");
1549 strbuf_addstr(&buf
, extra_to
.items
[i
].string
);
1550 if (i
+ 1 < extra_to
.nr
)
1551 strbuf_addch(&buf
, ',');
1552 strbuf_addch(&buf
, '\n');
1556 strbuf_addstr(&buf
, "Cc: ");
1557 for (i
= 0; i
< extra_cc
.nr
; i
++) {
1559 strbuf_addstr(&buf
, " ");
1560 strbuf_addstr(&buf
, extra_cc
.items
[i
].string
);
1561 if (i
+ 1 < extra_cc
.nr
)
1562 strbuf_addch(&buf
, ',');
1563 strbuf_addch(&buf
, '\n');
1566 rev
.extra_headers
= strbuf_detach(&buf
, NULL
);
1569 if (split_ident_line(&rev
.from_ident
, from
, strlen(from
)))
1570 die(_("invalid ident line: %s"), from
);
1573 if (start_number
< 0)
1577 * If numbered is set solely due to format.numbered in config,
1578 * and it would conflict with --keep-subject (-k) from the
1579 * command line, reset "numbered".
1581 if (numbered
&& keep_subject
&& !numbered_cmdline_opt
)
1584 if (numbered
&& keep_subject
)
1585 die (_("-n and -k are mutually exclusive."));
1586 if (keep_subject
&& subject_prefix
)
1587 die (_("--subject-prefix/--rfc and -k are mutually exclusive."));
1588 rev
.preserve_subject
= keep_subject
;
1590 argc
= setup_revisions(argc
, argv
, &rev
, &s_r_opt
);
1592 die (_("unrecognized argument: %s"), argv
[1]);
1594 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME
)
1595 die(_("--name-only does not make sense"));
1596 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME_STATUS
)
1597 die(_("--name-status does not make sense"));
1598 if (rev
.diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
)
1599 die(_("--check does not make sense"));
1601 if (!use_patch_format
&&
1602 (!rev
.diffopt
.output_format
||
1603 rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
))
1604 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
;
1606 /* Always generate a patch */
1607 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
1609 rev
.zero_commit
= zero_commit
;
1611 if (!DIFF_OPT_TST(&rev
.diffopt
, TEXT
) && !no_binary_diff
)
1612 DIFF_OPT_SET(&rev
.diffopt
, BINARY
);
1615 init_display_notes(&rev
.notes_opt
);
1617 if (!output_directory
&& !use_stdout
)
1618 output_directory
= config_output_directory
;
1621 output_directory
= set_outdir(prefix
, output_directory
);
1625 if (output_directory
) {
1626 if (rev
.diffopt
.use_color
!= GIT_COLOR_ALWAYS
)
1627 rev
.diffopt
.use_color
= GIT_COLOR_NEVER
;
1629 die(_("standard output, or directory, which one?"));
1630 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
1631 die_errno(_("Could not create directory '%s'"),
1635 if (rev
.pending
.nr
== 1) {
1638 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
1640 * This is traditional behaviour of "git format-patch
1641 * origin" that prepares what the origin side still
1644 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
1645 add_head_to_pending(&rev
);
1649 * Otherwise, it is "format-patch -22 HEAD", and/or
1650 * "format-patch --root HEAD". The user wants
1651 * get_revision() to do the usual traversal.
1654 if (!strcmp(rev
.pending
.objects
[0].name
, "HEAD"))
1658 struct object_id oid
;
1659 const char *ref
, *v
;
1660 ref
= resolve_ref_unsafe("HEAD", RESOLVE_REF_READING
,
1662 if (ref
&& skip_prefix(ref
, "refs/heads/", &v
))
1663 branch_name
= xstrdup(v
);
1665 branch_name
= xstrdup(""); /* no branch */
1670 * We cannot move this anywhere earlier because we do want to
1671 * know if --root was given explicitly from the command line.
1673 rev
.show_root_diff
= 1;
1675 if (ignore_if_in_upstream
) {
1676 /* Don't say anything if head and upstream are the same. */
1677 if (rev
.pending
.nr
== 2) {
1678 struct object_array_entry
*o
= rev
.pending
.objects
;
1679 if (oidcmp(&o
[0].item
->oid
, &o
[1].item
->oid
) == 0)
1682 get_patch_ids(&rev
, &ids
);
1685 if (prepare_revision_walk(&rev
))
1686 die(_("revision walk setup failed"));
1688 while ((commit
= get_revision(&rev
)) != NULL
) {
1689 if (commit
->object
.flags
& BOUNDARY
) {
1691 origin
= (boundary_count
== 1) ? commit
: NULL
;
1695 if (ignore_if_in_upstream
&& has_commit_patch_id(commit
, &ids
))
1699 REALLOC_ARRAY(list
, nr
);
1700 list
[nr
- 1] = commit
;
1706 if (cover_letter
== -1) {
1707 if (config_cover_letter
== COVER_AUTO
)
1708 cover_letter
= (total
> 1);
1710 cover_letter
= (config_cover_letter
== COVER_ON
);
1712 if (!keep_subject
&& auto_number
&& (total
> 1 || cover_letter
))
1715 rev
.total
= total
+ start_number
- 1;
1718 ; /* --no-signature inhibits all signatures */
1719 } else if (signature
&& signature
!= git_version_string
) {
1720 ; /* non-default signature already set */
1721 } else if (signature_file
) {
1722 struct strbuf buf
= STRBUF_INIT
;
1724 if (strbuf_read_file(&buf
, signature_file
, 128) < 0)
1725 die_errno(_("unable to read signature file '%s'"), signature_file
);
1726 signature
= strbuf_detach(&buf
, NULL
);
1729 memset(&bases
, 0, sizeof(bases
));
1730 if (base_commit
|| base_auto
) {
1731 struct commit
*base
= get_base_commit(base_commit
, list
, nr
);
1732 reset_revision_walk();
1733 prepare_bases(&bases
, base
, list
, nr
);
1736 if (in_reply_to
|| thread
|| cover_letter
)
1737 rev
.ref_message_ids
= xcalloc(1, sizeof(struct string_list
));
1739 const char *msgid
= clean_message_id(in_reply_to
);
1740 string_list_append(rev
.ref_message_ids
, msgid
);
1742 rev
.numbered_files
= just_numbers
;
1743 rev
.patch_suffix
= fmt_patch_suffix
;
1746 gen_message_id(&rev
, "cover");
1747 make_cover_letter(&rev
, use_stdout
,
1748 origin
, nr
, list
, branch_name
, quiet
);
1749 print_bases(&bases
, rev
.diffopt
.file
);
1750 print_signature(rev
.diffopt
.file
);
1754 rev
.add_signoff
= do_signoff
;
1758 rev
.nr
= total
- nr
+ (start_number
- 1);
1759 /* Make the second and subsequent mails replies to the first */
1761 /* Have we already had a message ID? */
1762 if (rev
.message_id
) {
1764 * For deep threading: make every mail
1765 * a reply to the previous one, no
1766 * matter what other options are set.
1768 * For shallow threading:
1770 * Without --cover-letter and
1771 * --in-reply-to, make every mail a
1772 * reply to the one before.
1774 * With --in-reply-to but no
1775 * --cover-letter, make every mail a
1776 * reply to the <reply-to>.
1778 * With --cover-letter, make every
1779 * mail but the cover letter a reply
1780 * to the cover letter. The cover
1781 * letter is a reply to the
1782 * --in-reply-to, if specified.
1784 if (thread
== THREAD_SHALLOW
1785 && rev
.ref_message_ids
->nr
> 0
1786 && (!cover_letter
|| rev
.nr
> 1))
1787 free(rev
.message_id
);
1789 string_list_append(rev
.ref_message_ids
,
1792 gen_message_id(&rev
, oid_to_hex(&commit
->object
.oid
));
1796 open_next_file(rev
.numbered_files
? NULL
: commit
, NULL
, &rev
, quiet
))
1797 die(_("Failed to create output files"));
1798 shown
= log_tree_commit(&rev
, commit
);
1799 free_commit_buffer(commit
);
1801 /* We put one extra blank line between formatted
1802 * patches and this flag is used by log-tree code
1803 * to see if it needs to emit a LF before showing
1804 * the log; when using one file per patch, we do
1805 * not want the extra blank line.
1810 print_bases(&bases
, rev
.diffopt
.file
);
1811 if (rev
.mime_boundary
)
1812 fprintf(rev
.diffopt
.file
, "\n--%s%s--\n\n\n",
1813 mime_boundary_leader
,
1816 print_signature(rev
.diffopt
.file
);
1819 fclose(rev
.diffopt
.file
);
1823 string_list_clear(&extra_to
, 0);
1824 string_list_clear(&extra_cc
, 0);
1825 string_list_clear(&extra_hdr
, 0);
1826 if (ignore_if_in_upstream
)
1827 free_patch_ids(&ids
);
1831 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1833 struct object_id oid
;
1834 if (get_oid(arg
, &oid
) == 0) {
1835 struct commit
*commit
= lookup_commit_reference(&oid
);
1837 commit
->object
.flags
|= flags
;
1838 add_pending_object(revs
, &commit
->object
, arg
);
1845 static const char * const cherry_usage
[] = {
1846 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
1850 static void print_commit(char sign
, struct commit
*commit
, int verbose
,
1851 int abbrev
, FILE *file
)
1854 fprintf(file
, "%c %s\n", sign
,
1855 find_unique_abbrev(commit
->object
.oid
.hash
, abbrev
));
1857 struct strbuf buf
= STRBUF_INIT
;
1858 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &buf
);
1859 fprintf(file
, "%c %s %s\n", sign
,
1860 find_unique_abbrev(commit
->object
.oid
.hash
, abbrev
),
1862 strbuf_release(&buf
);
1866 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
1868 struct rev_info revs
;
1869 struct patch_ids ids
;
1870 struct commit
*commit
;
1871 struct commit_list
*list
= NULL
;
1872 struct branch
*current_branch
;
1873 const char *upstream
;
1874 const char *head
= "HEAD";
1875 const char *limit
= NULL
;
1876 int verbose
= 0, abbrev
= 0;
1878 struct option options
[] = {
1879 OPT__ABBREV(&abbrev
),
1880 OPT__VERBOSE(&verbose
, N_("be verbose")),
1884 argc
= parse_options(argc
, argv
, prefix
, options
, cherry_usage
, 0);
1897 current_branch
= branch_get(NULL
);
1898 upstream
= branch_get_upstream(current_branch
, NULL
);
1900 fprintf(stderr
, _("Could not find a tracked"
1901 " remote branch, please"
1902 " specify <upstream> manually.\n"));
1903 usage_with_options(cherry_usage
, options
);
1907 init_revisions(&revs
, prefix
);
1908 revs
.max_parents
= 1;
1910 if (add_pending_commit(head
, &revs
, 0))
1911 die(_("Unknown commit %s"), head
);
1912 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
1913 die(_("Unknown commit %s"), upstream
);
1915 /* Don't say anything if head and upstream are the same. */
1916 if (revs
.pending
.nr
== 2) {
1917 struct object_array_entry
*o
= revs
.pending
.objects
;
1918 if (oidcmp(&o
[0].item
->oid
, &o
[1].item
->oid
) == 0)
1922 get_patch_ids(&revs
, &ids
);
1924 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
1925 die(_("Unknown commit %s"), limit
);
1927 /* reverse the list of commits */
1928 if (prepare_revision_walk(&revs
))
1929 die(_("revision walk setup failed"));
1930 while ((commit
= get_revision(&revs
)) != NULL
) {
1931 commit_list_insert(commit
, &list
);
1937 commit
= list
->item
;
1938 if (has_commit_patch_id(commit
, &ids
))
1940 print_commit(sign
, commit
, verbose
, abbrev
, revs
.diffopt
.file
);
1944 free_patch_ids(&ids
);