2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
15 #include "reflog-walk.h"
16 #include "patch-ids.h"
17 #include "run-command.h"
20 #include "string-list.h"
21 #include "parse-options.h"
23 /* Set a default date-time format for git log ("log.date" config variable) */
24 static const char *default_date_mode
= NULL
;
26 static int default_show_root
= 1;
27 static const char *fmt_patch_subject_prefix
= "PATCH";
28 static const char *fmt_pretty
;
30 static const char * const builtin_log_usage
=
31 "git log [<options>] [<since>..<until>] [[--] <path>...]\n"
32 " or: git show [options] <object>...";
34 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
35 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
38 int decoration_style
= 0;
39 struct userformat_want w
;
41 rev
->abbrev
= DEFAULT_ABBREV
;
42 rev
->commit_format
= CMIT_FMT_DEFAULT
;
44 get_commit_format(fmt_pretty
, rev
);
45 rev
->verbose_header
= 1;
46 DIFF_OPT_SET(&rev
->diffopt
, RECURSIVE
);
47 rev
->show_root_diff
= default_show_root
;
48 rev
->subject_prefix
= fmt_patch_subject_prefix
;
49 DIFF_OPT_SET(&rev
->diffopt
, ALLOW_TEXTCONV
);
51 if (default_date_mode
)
52 rev
->date_mode
= parse_date_format(default_date_mode
);
55 * Check for -h before setup_revisions(), or "git log -h" will
56 * fail when run without a git directory.
58 if (argc
== 2 && !strcmp(argv
[1], "-h"))
59 usage(builtin_log_usage
);
60 argc
= setup_revisions(argc
, argv
, rev
, opt
);
62 memset(&w
, 0, sizeof(w
));
63 userformat_find_requirements(NULL
, &w
);
65 if (!rev
->show_notes_given
&& (!rev
->pretty_given
|| w
.notes
))
68 init_display_notes(&rev
->notes_opt
);
70 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
)
71 rev
->always_show_header
= 0;
72 if (DIFF_OPT_TST(&rev
->diffopt
, FOLLOW_RENAMES
)) {
73 rev
->always_show_header
= 0;
74 if (rev
->diffopt
.nr_paths
!= 1)
75 usage("git logs can only follow renames on one pathname at a time");
77 for (i
= 1; i
< argc
; i
++) {
78 const char *arg
= argv
[i
];
79 if (!strcmp(arg
, "--decorate")) {
80 decoration_style
= DECORATE_SHORT_REFS
;
81 } else if (!prefixcmp(arg
, "--decorate=")) {
82 const char *v
= skip_prefix(arg
, "--decorate=");
83 if (!strcmp(v
, "full"))
84 decoration_style
= DECORATE_FULL_REFS
;
85 else if (!strcmp(v
, "short"))
86 decoration_style
= DECORATE_SHORT_REFS
;
88 die("invalid --decorate option: %s", arg
);
89 } else if (!strcmp(arg
, "--source")) {
91 } else if (!strcmp(arg
, "-h")) {
92 usage(builtin_log_usage
);
94 die("unrecognized argument: %s", arg
);
96 if (decoration_style
) {
97 rev
->show_decorations
= 1;
98 load_ref_decorations(decoration_style
);
103 * This gives a rough estimate for how many commits we
104 * will print out in the list.
106 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
111 struct commit
*commit
= list
->item
;
112 unsigned int flags
= commit
->object
.flags
;
114 if (!(flags
& (TREESAME
| UNINTERESTING
)))
120 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
122 if (rev
->shown_one
) {
124 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
125 putchar(rev
->diffopt
.line_termination
);
127 printf("Final output: %d %s\n", nr
, stage
);
130 static struct itimerval early_output_timer
;
132 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
134 int i
= revs
->early_output
;
137 sort_in_topological_order(&list
, revs
->lifo
);
139 struct commit
*commit
= list
->item
;
140 switch (simplify_commit(revs
, commit
)) {
143 int n
= estimate_commit_count(revs
, list
);
144 show_early_header(revs
, "incomplete", n
);
147 log_tree_commit(revs
, commit
);
158 /* Did we already get enough commits for the early output? */
163 * ..if no, then repeat it twice a second until we
166 * NOTE! We don't use "it_interval", because if the
167 * reader isn't listening, we want our output to be
168 * throttled by the writing, and not have the timer
169 * trigger every second even if we're blocked on a
172 early_output_timer
.it_value
.tv_sec
= 0;
173 early_output_timer
.it_value
.tv_usec
= 500000;
174 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
177 static void early_output(int signal
)
179 show_early_output
= log_show_early
;
182 static void setup_early_output(struct rev_info
*rev
)
187 * Set up the signal handler, minimally intrusively:
188 * we only set a single volatile integer word (not
189 * using sigatomic_t - trying to avoid unnecessary
190 * system dependencies and headers), and using
193 memset(&sa
, 0, sizeof(sa
));
194 sa
.sa_handler
= early_output
;
195 sigemptyset(&sa
.sa_mask
);
196 sa
.sa_flags
= SA_RESTART
;
197 sigaction(SIGALRM
, &sa
, NULL
);
200 * If we can get the whole output in less than a
201 * tenth of a second, don't even bother doing the
202 * early-output thing..
204 * This is a one-time-only trigger.
206 early_output_timer
.it_value
.tv_sec
= 0;
207 early_output_timer
.it_value
.tv_usec
= 100000;
208 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
211 static void finish_early_output(struct rev_info
*rev
)
213 int n
= estimate_commit_count(rev
, rev
->commits
);
214 signal(SIGALRM
, SIG_IGN
);
215 show_early_header(rev
, "done", n
);
218 static int cmd_log_walk(struct rev_info
*rev
)
220 struct commit
*commit
;
222 if (rev
->early_output
)
223 setup_early_output(rev
);
225 if (prepare_revision_walk(rev
))
226 die("revision walk setup failed");
228 if (rev
->early_output
)
229 finish_early_output(rev
);
232 * For --check and --exit-code, the exit code is based on CHECK_FAILED
233 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
234 * retain that state information if replacing rev->diffopt in this loop
236 while ((commit
= get_revision(rev
)) != NULL
) {
237 log_tree_commit(rev
, commit
);
238 if (!rev
->reflog_info
) {
239 /* we allow cycles in reflog ancestry */
240 free(commit
->buffer
);
241 commit
->buffer
= NULL
;
243 free_commit_list(commit
->parents
);
244 commit
->parents
= NULL
;
246 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
247 DIFF_OPT_TST(&rev
->diffopt
, CHECK_FAILED
)) {
250 return diff_result_code(&rev
->diffopt
, 0);
253 static int git_log_config(const char *var
, const char *value
, void *cb
)
255 if (!strcmp(var
, "format.pretty"))
256 return git_config_string(&fmt_pretty
, var
, value
);
257 if (!strcmp(var
, "format.subjectprefix"))
258 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
259 if (!strcmp(var
, "log.date"))
260 return git_config_string(&default_date_mode
, var
, value
);
261 if (!strcmp(var
, "log.showroot")) {
262 default_show_root
= git_config_bool(var
, value
);
265 return git_diff_ui_config(var
, value
, cb
);
268 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
271 struct setup_revision_opt opt
;
273 git_config(git_log_config
, NULL
);
275 if (diff_use_color_default
== -1)
276 diff_use_color_default
= git_use_color_default
;
278 init_revisions(&rev
, prefix
);
280 rev
.simplify_history
= 0;
281 memset(&opt
, 0, sizeof(opt
));
283 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
284 if (!rev
.diffopt
.output_format
)
285 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
286 return cmd_log_walk(&rev
);
289 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
291 struct strbuf out
= STRBUF_INIT
;
293 pp_user_info("Tagger", rev
->commit_format
, &out
, buf
, rev
->date_mode
,
294 git_log_output_encoding
?
295 git_log_output_encoding
: git_commit_encoding
);
296 printf("%s", out
.buf
);
297 strbuf_release(&out
);
300 static int show_object(const unsigned char *sha1
, int show_tag_object
,
301 struct rev_info
*rev
)
304 enum object_type type
;
305 char *buf
= read_sha1_file(sha1
, &type
, &size
);
309 return error("Could not read object %s", sha1_to_hex(sha1
));
312 while (offset
< size
&& buf
[offset
] != '\n') {
313 int new_offset
= offset
+ 1;
314 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
316 if (!prefixcmp(buf
+ offset
, "tagger "))
317 show_tagger(buf
+ offset
+ 7,
318 new_offset
- offset
- 7, rev
);
323 fwrite(buf
+ offset
, size
- offset
, 1, stdout
);
328 static int show_tree_object(const unsigned char *sha1
,
329 const char *base
, int baselen
,
330 const char *pathname
, unsigned mode
, int stage
, void *context
)
332 printf("%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
336 static void show_rev_tweak_rev(struct rev_info
*rev
, struct setup_revision_opt
*opt
)
338 if (rev
->ignore_merges
) {
339 /* There was no "-m" on the command line */
340 rev
->ignore_merges
= 0;
341 if (!rev
->first_parent_only
&& !rev
->combine_merges
) {
342 /* No "--first-parent", "-c", nor "--cc" */
343 rev
->combine_merges
= 1;
344 rev
->dense_combined_merges
= 1;
347 if (!rev
->diffopt
.output_format
)
348 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
351 int cmd_show(int argc
, const char **argv
, const char *prefix
)
354 struct object_array_entry
*objects
;
355 struct setup_revision_opt opt
;
356 int i
, count
, ret
= 0;
358 git_config(git_log_config
, NULL
);
360 if (diff_use_color_default
== -1)
361 diff_use_color_default
= git_use_color_default
;
363 init_revisions(&rev
, prefix
);
365 rev
.always_show_header
= 1;
367 memset(&opt
, 0, sizeof(opt
));
369 opt
.tweak
= show_rev_tweak_rev
;
370 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
372 count
= rev
.pending
.nr
;
373 objects
= rev
.pending
.objects
;
374 for (i
= 0; i
< count
&& !ret
; i
++) {
375 struct object
*o
= objects
[i
].item
;
376 const char *name
= objects
[i
].name
;
379 ret
= show_object(o
->sha1
, 0, NULL
);
382 struct tag
*t
= (struct tag
*)o
;
386 printf("%stag %s%s\n",
387 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
389 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
390 ret
= show_object(o
->sha1
, 1, &rev
);
394 o
= parse_object(t
->tagged
->sha1
);
396 ret
= error("Could not read object %s",
397 sha1_to_hex(t
->tagged
->sha1
));
405 printf("%stree %s%s\n\n",
406 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
408 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
409 read_tree_recursive((struct tree
*)o
, "", 0, 0, NULL
,
410 show_tree_object
, NULL
);
414 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
415 rev
.pending
.objects
= NULL
;
416 add_object_array(o
, name
, &rev
.pending
);
417 ret
= cmd_log_walk(&rev
);
420 ret
= error("Unknown type: %d", o
->type
);
428 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
430 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
433 struct setup_revision_opt opt
;
435 git_config(git_log_config
, NULL
);
437 if (diff_use_color_default
== -1)
438 diff_use_color_default
= git_use_color_default
;
440 init_revisions(&rev
, prefix
);
441 init_reflog_walk(&rev
.reflog_info
);
442 rev
.abbrev_commit
= 1;
443 rev
.verbose_header
= 1;
444 memset(&opt
, 0, sizeof(opt
));
446 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
449 * This means that we override whatever commit format the user gave
450 * on the cmd line. Sad, but cmd_log_init() currently doesn't
451 * allow us to set a different default.
453 rev
.commit_format
= CMIT_FMT_ONELINE
;
454 rev
.use_terminator
= 1;
455 rev
.always_show_header
= 1;
458 * We get called through "git reflog", so unlike the other log
459 * routines, we need to set up our pager manually..
463 return cmd_log_walk(&rev
);
466 int cmd_log(int argc
, const char **argv
, const char *prefix
)
469 struct setup_revision_opt opt
;
471 git_config(git_log_config
, NULL
);
473 if (diff_use_color_default
== -1)
474 diff_use_color_default
= git_use_color_default
;
476 init_revisions(&rev
, prefix
);
477 rev
.always_show_header
= 1;
478 memset(&opt
, 0, sizeof(opt
));
480 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
481 return cmd_log_walk(&rev
);
486 static const char *fmt_patch_suffix
= ".patch";
487 static int numbered
= 0;
488 static int auto_number
= 1;
490 static char *default_attach
= NULL
;
492 static struct string_list extra_hdr
;
493 static struct string_list extra_to
;
494 static struct string_list extra_cc
;
496 static void add_header(const char *value
)
498 struct string_list_item
*item
;
499 int len
= strlen(value
);
500 while (len
&& value
[len
- 1] == '\n')
503 if (!strncasecmp(value
, "to: ", 4)) {
504 item
= string_list_append(value
+ 4, &extra_to
);
506 } else if (!strncasecmp(value
, "cc: ", 4)) {
507 item
= string_list_append(value
+ 4, &extra_cc
);
510 item
= string_list_append(value
, &extra_hdr
);
513 item
->string
[len
] = '\0';
516 #define THREAD_SHALLOW 1
517 #define THREAD_DEEP 2
518 static int thread
= 0;
519 static int do_signoff
= 0;
521 static int git_format_config(const char *var
, const char *value
, void *cb
)
523 if (!strcmp(var
, "format.headers")) {
525 die("format.headers without value");
529 if (!strcmp(var
, "format.suffix"))
530 return git_config_string(&fmt_patch_suffix
, var
, value
);
531 if (!strcmp(var
, "format.to")) {
533 return config_error_nonbool(var
);
534 string_list_append(value
, &extra_to
);
537 if (!strcmp(var
, "format.cc")) {
539 return config_error_nonbool(var
);
540 string_list_append(value
, &extra_cc
);
543 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
546 if (!strcmp(var
, "format.numbered")) {
547 if (value
&& !strcasecmp(value
, "auto")) {
551 numbered
= git_config_bool(var
, value
);
552 auto_number
= auto_number
&& numbered
;
555 if (!strcmp(var
, "format.attach")) {
557 default_attach
= xstrdup(value
);
559 default_attach
= xstrdup(git_version_string
);
562 if (!strcmp(var
, "format.thread")) {
563 if (value
&& !strcasecmp(value
, "deep")) {
564 thread
= THREAD_DEEP
;
567 if (value
&& !strcasecmp(value
, "shallow")) {
568 thread
= THREAD_SHALLOW
;
571 thread
= git_config_bool(var
, value
) && THREAD_SHALLOW
;
574 if (!strcmp(var
, "format.signoff")) {
575 do_signoff
= git_config_bool(var
, value
);
579 return git_log_config(var
, value
, cb
);
582 static FILE *realstdout
= NULL
;
583 static const char *output_directory
= NULL
;
584 static int outdir_offset
;
586 static int reopen_stdout(struct commit
*commit
, struct rev_info
*rev
)
588 struct strbuf filename
= STRBUF_INIT
;
589 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
591 if (output_directory
) {
592 strbuf_addstr(&filename
, output_directory
);
594 PATH_MAX
- FORMAT_PATCH_NAME_MAX
- suffix_len
)
595 return error("name of output directory is too long");
596 if (filename
.buf
[filename
.len
- 1] != '/')
597 strbuf_addch(&filename
, '/');
600 get_patch_filename(commit
, rev
->nr
, fmt_patch_suffix
, &filename
);
602 if (!DIFF_OPT_TST(&rev
->diffopt
, QUICK
))
603 fprintf(realstdout
, "%s\n", filename
.buf
+ outdir_offset
);
605 if (freopen(filename
.buf
, "w", stdout
) == NULL
)
606 return error("Cannot open patch file %s", filename
.buf
);
608 strbuf_release(&filename
);
612 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
, const char *prefix
)
614 struct rev_info check_rev
;
615 struct commit
*commit
;
616 struct object
*o1
, *o2
;
617 unsigned flags1
, flags2
;
619 if (rev
->pending
.nr
!= 2)
620 die("Need exactly one range.");
622 o1
= rev
->pending
.objects
[0].item
;
624 o2
= rev
->pending
.objects
[1].item
;
627 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
632 /* given a range a..b get all patch ids for b..a */
633 init_revisions(&check_rev
, prefix
);
634 o1
->flags
^= UNINTERESTING
;
635 o2
->flags
^= UNINTERESTING
;
636 add_pending_object(&check_rev
, o1
, "o1");
637 add_pending_object(&check_rev
, o2
, "o2");
638 if (prepare_revision_walk(&check_rev
))
639 die("revision walk setup failed");
641 while ((commit
= get_revision(&check_rev
)) != NULL
) {
643 if (commit
->parents
&& commit
->parents
->next
)
646 add_commit_patch_id(commit
, ids
);
649 /* reset for next revision walk */
650 clear_commit_marks((struct commit
*)o1
,
651 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
652 clear_commit_marks((struct commit
*)o2
,
653 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
658 static void gen_message_id(struct rev_info
*info
, char *base
)
660 const char *committer
= git_committer_info(IDENT_WARN_ON_NO_NAME
);
661 const char *email_start
= strrchr(committer
, '<');
662 const char *email_end
= strrchr(committer
, '>');
663 struct strbuf buf
= STRBUF_INIT
;
664 if (!email_start
|| !email_end
|| email_start
> email_end
- 1)
665 die("Could not extract email from committer identity.");
666 strbuf_addf(&buf
, "%s.%lu.git.%.*s", base
,
667 (unsigned long) time(NULL
),
668 (int)(email_end
- email_start
- 1), email_start
+ 1);
669 info
->message_id
= strbuf_detach(&buf
, NULL
);
672 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
673 int numbered
, int numbered_files
,
674 struct commit
*origin
,
675 int nr
, struct commit
**list
, struct commit
*head
)
677 const char *committer
;
678 const char *subject_start
= NULL
;
679 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
681 const char *extra_headers
= rev
->extra_headers
;
683 struct strbuf sb
= STRBUF_INIT
;
685 const char *encoding
= "UTF-8";
686 struct diff_options opts
;
687 int need_8bit_cte
= 0;
688 struct commit
*commit
= NULL
;
690 if (rev
->commit_format
!= CMIT_FMT_EMAIL
)
691 die("Cover letter needs email format");
693 committer
= git_committer_info(0);
695 if (!numbered_files
) {
697 * We fake a commit for the cover letter so we get the filename
700 commit
= xcalloc(1, sizeof(*commit
));
701 commit
->buffer
= xmalloc(400);
702 snprintf(commit
->buffer
, 400,
703 "tree 0000000000000000000000000000000000000000\n"
708 sha1_to_hex(head
->object
.sha1
), committer
, committer
);
711 if (!use_stdout
&& reopen_stdout(commit
, rev
))
716 free(commit
->buffer
);
720 log_write_email_headers(rev
, head
, &subject_start
, &extra_headers
,
723 for (i
= 0; !need_8bit_cte
&& i
< nr
; i
++)
724 if (has_non_ascii(list
[i
]->buffer
))
728 pp_user_info(NULL
, CMIT_FMT_EMAIL
, &sb
, committer
, DATE_RFC2822
,
730 pp_title_line(CMIT_FMT_EMAIL
, &msg
, &sb
, subject_start
, extra_headers
,
731 encoding
, need_8bit_cte
);
732 pp_remainder(CMIT_FMT_EMAIL
, &msg
, &sb
, 0);
733 printf("%s\n", sb
.buf
);
742 for (i
= 0; i
< nr
; i
++)
743 shortlog_add_commit(&log
, list
[i
]);
745 shortlog_output(&log
);
748 * We can only do diffstat with a unique reference point
753 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
754 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
756 diff_setup_done(&opts
);
758 diff_tree_sha1(origin
->tree
->object
.sha1
,
759 head
->tree
->object
.sha1
,
767 static const char *clean_message_id(const char *msg_id
)
770 const char *a
, *z
, *m
;
773 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
778 if (!isspace(ch
) && (ch
!= '>'))
783 die("insane in-reply-to: %s", msg_id
);
786 return xmemdupz(a
, z
- a
);
789 static const char *set_outdir(const char *prefix
, const char *output_directory
)
791 if (output_directory
&& is_absolute_path(output_directory
))
792 return output_directory
;
794 if (!prefix
|| !*prefix
) {
795 if (output_directory
)
796 return output_directory
;
797 /* The user did not explicitly ask for "./" */
802 outdir_offset
= strlen(prefix
);
803 if (!output_directory
)
806 return xstrdup(prefix_filename(prefix
, outdir_offset
,
810 static const char * const builtin_format_patch_usage
[] = {
811 "git format-patch [options] [<since> | <revision range>]",
815 static int keep_subject
= 0;
817 static int keep_callback(const struct option
*opt
, const char *arg
, int unset
)
819 ((struct rev_info
*)opt
->value
)->total
= -1;
824 static int subject_prefix
= 0;
826 static int subject_prefix_callback(const struct option
*opt
, const char *arg
,
830 ((struct rev_info
*)opt
->value
)->subject_prefix
= arg
;
834 static int numbered_cmdline_opt
= 0;
836 static int numbered_callback(const struct option
*opt
, const char *arg
,
839 *(int *)opt
->value
= numbered_cmdline_opt
= unset
? 0 : 1;
845 static int no_numbered_callback(const struct option
*opt
, const char *arg
,
848 return numbered_callback(opt
, arg
, 1);
851 static int output_directory_callback(const struct option
*opt
, const char *arg
,
854 const char **dir
= (const char **)opt
->value
;
856 die("Two output directories?");
861 static int thread_callback(const struct option
*opt
, const char *arg
, int unset
)
863 int *thread
= (int *)opt
->value
;
866 else if (!arg
|| !strcmp(arg
, "shallow"))
867 *thread
= THREAD_SHALLOW
;
868 else if (!strcmp(arg
, "deep"))
869 *thread
= THREAD_DEEP
;
875 static int attach_callback(const struct option
*opt
, const char *arg
, int unset
)
877 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
879 rev
->mime_boundary
= NULL
;
881 rev
->mime_boundary
= arg
;
883 rev
->mime_boundary
= git_version_string
;
884 rev
->no_inline
= unset
? 0 : 1;
888 static int inline_callback(const struct option
*opt
, const char *arg
, int unset
)
890 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
892 rev
->mime_boundary
= NULL
;
894 rev
->mime_boundary
= arg
;
896 rev
->mime_boundary
= git_version_string
;
901 static int header_callback(const struct option
*opt
, const char *arg
, int unset
)
904 string_list_clear(&extra_hdr
, 0);
905 string_list_clear(&extra_to
, 0);
906 string_list_clear(&extra_cc
, 0);
913 static int to_callback(const struct option
*opt
, const char *arg
, int unset
)
916 string_list_clear(&extra_to
, 0);
918 string_list_append(arg
, &extra_to
);
922 static int cc_callback(const struct option
*opt
, const char *arg
, int unset
)
925 string_list_clear(&extra_cc
, 0);
927 string_list_append(arg
, &extra_cc
);
931 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
933 struct commit
*commit
;
934 struct commit
**list
= NULL
;
936 struct setup_revision_opt s_r_opt
;
937 int nr
= 0, total
, i
;
939 int start_number
= -1;
940 int numbered_files
= 0; /* _just_ numbers */
941 int ignore_if_in_upstream
= 0;
942 int cover_letter
= 0;
943 int boundary_count
= 0;
944 int no_binary_diff
= 0;
945 struct commit
*origin
= NULL
, *head
= NULL
;
946 const char *in_reply_to
= NULL
;
947 struct patch_ids ids
;
948 char *add_signoff
= NULL
;
949 struct strbuf buf
= STRBUF_INIT
;
950 int use_patch_format
= 0;
951 const struct option builtin_format_patch_options
[] = {
952 { OPTION_CALLBACK
, 'n', "numbered", &numbered
, NULL
,
953 "use [PATCH n/m] even with a single patch",
954 PARSE_OPT_NOARG
, numbered_callback
},
955 { OPTION_CALLBACK
, 'N', "no-numbered", &numbered
, NULL
,
956 "use [PATCH] even with multiple patches",
957 PARSE_OPT_NOARG
, no_numbered_callback
},
958 OPT_BOOLEAN('s', "signoff", &do_signoff
, "add Signed-off-by:"),
959 OPT_BOOLEAN(0, "stdout", &use_stdout
,
960 "print patches to standard out"),
961 OPT_BOOLEAN(0, "cover-letter", &cover_letter
,
962 "generate a cover letter"),
963 OPT_BOOLEAN(0, "numbered-files", &numbered_files
,
964 "use simple number sequence for output file names"),
965 OPT_STRING(0, "suffix", &fmt_patch_suffix
, "sfx",
966 "use <sfx> instead of '.patch'"),
967 OPT_INTEGER(0, "start-number", &start_number
,
968 "start numbering patches at <n> instead of 1"),
969 { OPTION_CALLBACK
, 0, "subject-prefix", &rev
, "prefix",
970 "Use [<prefix>] instead of [PATCH]",
971 PARSE_OPT_NONEG
, subject_prefix_callback
},
972 { OPTION_CALLBACK
, 'o', "output-directory", &output_directory
,
973 "dir", "store resulting files in <dir>",
974 PARSE_OPT_NONEG
, output_directory_callback
},
975 { OPTION_CALLBACK
, 'k', "keep-subject", &rev
, NULL
,
976 "don't strip/add [PATCH]",
977 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, keep_callback
},
978 OPT_BOOLEAN(0, "no-binary", &no_binary_diff
,
979 "don't output binary diffs"),
980 OPT_BOOLEAN(0, "ignore-if-in-upstream", &ignore_if_in_upstream
,
981 "don't include a patch matching a commit upstream"),
982 { OPTION_BOOLEAN
, 'p', "no-stat", &use_patch_format
, NULL
,
983 "show patch format instead of default (patch + stat)",
984 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
},
985 OPT_GROUP("Messaging"),
986 { OPTION_CALLBACK
, 0, "add-header", NULL
, "header",
987 "add email header", 0, header_callback
},
988 { OPTION_CALLBACK
, 0, "to", NULL
, "email", "add To: header",
990 { OPTION_CALLBACK
, 0, "cc", NULL
, "email", "add Cc: header",
992 OPT_STRING(0, "in-reply-to", &in_reply_to
, "message-id",
993 "make first mail a reply to <message-id>"),
994 { OPTION_CALLBACK
, 0, "attach", &rev
, "boundary",
995 "attach the patch", PARSE_OPT_OPTARG
,
997 { OPTION_CALLBACK
, 0, "inline", &rev
, "boundary",
999 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
,
1001 { OPTION_CALLBACK
, 0, "thread", &thread
, "style",
1002 "enable message threading, styles: shallow, deep",
1003 PARSE_OPT_OPTARG
, thread_callback
},
1007 extra_hdr
.strdup_strings
= 1;
1008 extra_to
.strdup_strings
= 1;
1009 extra_cc
.strdup_strings
= 1;
1010 git_config(git_format_config
, NULL
);
1011 init_revisions(&rev
, prefix
);
1012 rev
.commit_format
= CMIT_FMT_EMAIL
;
1013 rev
.verbose_header
= 1;
1015 rev
.combine_merges
= 0;
1016 rev
.ignore_merges
= 1;
1017 DIFF_OPT_SET(&rev
.diffopt
, RECURSIVE
);
1018 rev
.subject_prefix
= fmt_patch_subject_prefix
;
1019 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
1020 s_r_opt
.def
= "HEAD";
1022 if (default_attach
) {
1023 rev
.mime_boundary
= default_attach
;
1028 * Parse the arguments before setup_revisions(), or something
1029 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1030 * possibly a valid SHA1.
1032 argc
= parse_options(argc
, argv
, prefix
, builtin_format_patch_options
,
1033 builtin_format_patch_usage
,
1034 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
1035 PARSE_OPT_KEEP_DASHDASH
);
1038 const char *committer
;
1040 committer
= git_committer_info(IDENT_ERROR_ON_NO_NAME
);
1041 endpos
= strchr(committer
, '>');
1043 die("bogus committer info %s", committer
);
1044 add_signoff
= xmemdupz(committer
, endpos
- committer
+ 1);
1047 for (i
= 0; i
< extra_hdr
.nr
; i
++) {
1048 strbuf_addstr(&buf
, extra_hdr
.items
[i
].string
);
1049 strbuf_addch(&buf
, '\n');
1053 strbuf_addstr(&buf
, "To: ");
1054 for (i
= 0; i
< extra_to
.nr
; i
++) {
1056 strbuf_addstr(&buf
, " ");
1057 strbuf_addstr(&buf
, extra_to
.items
[i
].string
);
1058 if (i
+ 1 < extra_to
.nr
)
1059 strbuf_addch(&buf
, ',');
1060 strbuf_addch(&buf
, '\n');
1064 strbuf_addstr(&buf
, "Cc: ");
1065 for (i
= 0; i
< extra_cc
.nr
; i
++) {
1067 strbuf_addstr(&buf
, " ");
1068 strbuf_addstr(&buf
, extra_cc
.items
[i
].string
);
1069 if (i
+ 1 < extra_cc
.nr
)
1070 strbuf_addch(&buf
, ',');
1071 strbuf_addch(&buf
, '\n');
1074 rev
.extra_headers
= strbuf_detach(&buf
, NULL
);
1076 if (start_number
< 0)
1080 * If numbered is set solely due to format.numbered in config,
1081 * and it would conflict with --keep-subject (-k) from the
1082 * command line, reset "numbered".
1084 if (numbered
&& keep_subject
&& !numbered_cmdline_opt
)
1087 if (numbered
&& keep_subject
)
1088 die ("-n and -k are mutually exclusive.");
1089 if (keep_subject
&& subject_prefix
)
1090 die ("--subject-prefix and -k are mutually exclusive.");
1092 argc
= setup_revisions(argc
, argv
, &rev
, &s_r_opt
);
1094 die ("unrecognized argument: %s", argv
[1]);
1096 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME
)
1097 die("--name-only does not make sense");
1098 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME_STATUS
)
1099 die("--name-status does not make sense");
1100 if (rev
.diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
)
1101 die("--check does not make sense");
1103 if (!use_patch_format
&&
1104 (!rev
.diffopt
.output_format
||
1105 rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
))
1106 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
;
1108 /* Always generate a patch */
1109 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
1111 if (!DIFF_OPT_TST(&rev
.diffopt
, TEXT
) && !no_binary_diff
)
1112 DIFF_OPT_SET(&rev
.diffopt
, BINARY
);
1115 init_display_notes(&rev
.notes_opt
);
1118 output_directory
= set_outdir(prefix
, output_directory
);
1120 if (output_directory
) {
1122 die("standard output, or directory, which one?");
1123 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
1124 die_errno("Could not create directory '%s'",
1128 if (rev
.pending
.nr
== 1) {
1129 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
1131 * This is traditional behaviour of "git format-patch
1132 * origin" that prepares what the origin side still
1135 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
1136 add_head_to_pending(&rev
);
1139 * Otherwise, it is "format-patch -22 HEAD", and/or
1140 * "format-patch --root HEAD". The user wants
1141 * get_revision() to do the usual traversal.
1146 * We cannot move this anywhere earlier because we do want to
1147 * know if --root was given explicitly from the command line.
1149 rev
.show_root_diff
= 1;
1152 /* remember the range */
1154 for (i
= 0; i
< rev
.pending
.nr
; i
++) {
1155 struct object
*o
= rev
.pending
.objects
[i
].item
;
1156 if (!(o
->flags
& UNINTERESTING
))
1157 head
= (struct commit
*)o
;
1159 /* We can't generate a cover letter without any patches */
1164 if (ignore_if_in_upstream
) {
1165 /* Don't say anything if head and upstream are the same. */
1166 if (rev
.pending
.nr
== 2) {
1167 struct object_array_entry
*o
= rev
.pending
.objects
;
1168 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
1171 get_patch_ids(&rev
, &ids
, prefix
);
1175 realstdout
= xfdopen(xdup(1), "w");
1177 if (prepare_revision_walk(&rev
))
1178 die("revision walk setup failed");
1180 while ((commit
= get_revision(&rev
)) != NULL
) {
1181 if (commit
->object
.flags
& BOUNDARY
) {
1183 origin
= (boundary_count
== 1) ? commit
: NULL
;
1188 if (commit
->parents
&& commit
->parents
->next
)
1191 if (ignore_if_in_upstream
&&
1192 has_commit_patch_id(commit
, &ids
))
1196 list
= xrealloc(list
, nr
* sizeof(list
[0]));
1197 list
[nr
- 1] = commit
;
1200 if (!keep_subject
&& auto_number
&& total
> 1)
1203 rev
.total
= total
+ start_number
- 1;
1204 if (in_reply_to
|| thread
|| cover_letter
)
1205 rev
.ref_message_ids
= xcalloc(1, sizeof(struct string_list
));
1207 const char *msgid
= clean_message_id(in_reply_to
);
1208 string_list_append(msgid
, rev
.ref_message_ids
);
1210 rev
.numbered_files
= numbered_files
;
1211 rev
.patch_suffix
= fmt_patch_suffix
;
1214 gen_message_id(&rev
, "cover");
1215 make_cover_letter(&rev
, use_stdout
, numbered
, numbered_files
,
1216 origin
, nr
, list
, head
);
1220 rev
.add_signoff
= add_signoff
;
1224 rev
.nr
= total
- nr
+ (start_number
- 1);
1225 /* Make the second and subsequent mails replies to the first */
1227 /* Have we already had a message ID? */
1228 if (rev
.message_id
) {
1230 * For deep threading: make every mail
1231 * a reply to the previous one, no
1232 * matter what other options are set.
1234 * For shallow threading:
1236 * Without --cover-letter and
1237 * --in-reply-to, make every mail a
1238 * reply to the one before.
1240 * With --in-reply-to but no
1241 * --cover-letter, make every mail a
1242 * reply to the <reply-to>.
1244 * With --cover-letter, make every
1245 * mail but the cover letter a reply
1246 * to the cover letter. The cover
1247 * letter is a reply to the
1248 * --in-reply-to, if specified.
1250 if (thread
== THREAD_SHALLOW
1251 && rev
.ref_message_ids
->nr
> 0
1252 && (!cover_letter
|| rev
.nr
> 1))
1253 free(rev
.message_id
);
1255 string_list_append(rev
.message_id
,
1256 rev
.ref_message_ids
);
1258 gen_message_id(&rev
, sha1_to_hex(commit
->object
.sha1
));
1261 if (!use_stdout
&& reopen_stdout(numbered_files
? NULL
: commit
,
1263 die("Failed to create output files");
1264 shown
= log_tree_commit(&rev
, commit
);
1265 free(commit
->buffer
);
1266 commit
->buffer
= NULL
;
1268 /* We put one extra blank line between formatted
1269 * patches and this flag is used by log-tree code
1270 * to see if it needs to emit a LF before showing
1271 * the log; when using one file per patch, we do
1272 * not want the extra blank line.
1277 if (rev
.mime_boundary
)
1278 printf("\n--%s%s--\n\n\n",
1279 mime_boundary_leader
,
1282 printf("-- \n%s\n\n", git_version_string
);
1288 string_list_clear(&extra_to
, 0);
1289 string_list_clear(&extra_cc
, 0);
1290 string_list_clear(&extra_hdr
, 0);
1291 if (ignore_if_in_upstream
)
1292 free_patch_ids(&ids
);
1296 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1298 unsigned char sha1
[20];
1299 if (get_sha1(arg
, sha1
) == 0) {
1300 struct commit
*commit
= lookup_commit_reference(sha1
);
1302 commit
->object
.flags
|= flags
;
1303 add_pending_object(revs
, &commit
->object
, arg
);
1310 static const char * const cherry_usage
[] = {
1311 "git cherry [-v] [<upstream> [<head> [<limit>]]]",
1315 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
1317 struct rev_info revs
;
1318 struct patch_ids ids
;
1319 struct commit
*commit
;
1320 struct commit_list
*list
= NULL
;
1321 struct branch
*current_branch
;
1322 const char *upstream
;
1323 const char *head
= "HEAD";
1324 const char *limit
= NULL
;
1325 int verbose
= 0, abbrev
= 0;
1327 struct option options
[] = {
1328 OPT__ABBREV(&abbrev
),
1329 OPT__VERBOSE(&verbose
),
1333 argc
= parse_options(argc
, argv
, prefix
, options
, cherry_usage
, 0);
1346 current_branch
= branch_get(NULL
);
1347 if (!current_branch
|| !current_branch
->merge
1348 || !current_branch
->merge
[0]
1349 || !current_branch
->merge
[0]->dst
) {
1350 fprintf(stderr
, "Could not find a tracked"
1351 " remote branch, please"
1352 " specify <upstream> manually.\n");
1353 usage_with_options(cherry_usage
, options
);
1356 upstream
= current_branch
->merge
[0]->dst
;
1359 init_revisions(&revs
, prefix
);
1361 revs
.combine_merges
= 0;
1362 revs
.ignore_merges
= 1;
1363 DIFF_OPT_SET(&revs
.diffopt
, RECURSIVE
);
1365 if (add_pending_commit(head
, &revs
, 0))
1366 die("Unknown commit %s", head
);
1367 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
1368 die("Unknown commit %s", upstream
);
1370 /* Don't say anything if head and upstream are the same. */
1371 if (revs
.pending
.nr
== 2) {
1372 struct object_array_entry
*o
= revs
.pending
.objects
;
1373 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
1377 get_patch_ids(&revs
, &ids
, prefix
);
1379 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
1380 die("Unknown commit %s", limit
);
1382 /* reverse the list of commits */
1383 if (prepare_revision_walk(&revs
))
1384 die("revision walk setup failed");
1385 while ((commit
= get_revision(&revs
)) != NULL
) {
1387 if (commit
->parents
&& commit
->parents
->next
)
1390 commit_list_insert(commit
, &list
);
1396 commit
= list
->item
;
1397 if (has_commit_patch_id(commit
, &ids
))
1401 struct strbuf buf
= STRBUF_INIT
;
1402 struct pretty_print_context ctx
= {0};
1403 pretty_print_commit(CMIT_FMT_ONELINE
, commit
,
1405 printf("%c %s %s\n", sign
,
1406 find_unique_abbrev(commit
->object
.sha1
, abbrev
),
1408 strbuf_release(&buf
);
1411 printf("%c %s\n", sign
,
1412 find_unique_abbrev(commit
->object
.sha1
, abbrev
));
1418 free_patch_ids(&ids
);