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 #include "streaming.h"
26 /* Set a default date-time format for git log ("log.date" config variable) */
27 static const char *default_date_mode
= NULL
;
29 static int default_abbrev_commit
;
30 static int default_show_root
= 1;
31 static int decoration_style
;
32 static int decoration_given
;
33 static const char *fmt_patch_subject_prefix
= "PATCH";
34 static const char *fmt_pretty
;
36 static const char * const builtin_log_usage
[] = {
37 "git log [<options>] [<since>..<until>] [[--] <path>...]\n"
38 " or: git show [options] <object>...",
42 static int parse_decoration_style(const char *var
, const char *value
)
44 switch (git_config_maybe_bool(var
, value
)) {
46 return DECORATE_SHORT_REFS
;
52 if (!strcmp(value
, "full"))
53 return DECORATE_FULL_REFS
;
54 else if (!strcmp(value
, "short"))
55 return DECORATE_SHORT_REFS
;
59 static int decorate_callback(const struct option
*opt
, const char *arg
, int unset
)
64 decoration_style
= parse_decoration_style("command line", arg
);
66 decoration_style
= DECORATE_SHORT_REFS
;
68 if (decoration_style
< 0)
69 die("invalid --decorate option: %s", arg
);
76 static void cmd_log_init_defaults(struct rev_info
*rev
)
79 get_commit_format(fmt_pretty
, rev
);
80 rev
->verbose_header
= 1;
81 DIFF_OPT_SET(&rev
->diffopt
, RECURSIVE
);
82 rev
->diffopt
.stat_width
= -1; /* use full terminal width */
83 rev
->diffopt
.stat_graph_width
= -1; /* respect statGraphWidth config */
84 rev
->abbrev_commit
= default_abbrev_commit
;
85 rev
->show_root_diff
= default_show_root
;
86 rev
->subject_prefix
= fmt_patch_subject_prefix
;
87 DIFF_OPT_SET(&rev
->diffopt
, ALLOW_TEXTCONV
);
89 if (default_date_mode
)
90 rev
->date_mode
= parse_date_format(default_date_mode
);
93 static void cmd_log_init_finish(int argc
, const char **argv
, const char *prefix
,
94 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
96 struct userformat_want w
;
97 int quiet
= 0, source
= 0;
99 const struct option builtin_log_options
[] = {
100 OPT_BOOLEAN(0, "quiet", &quiet
, "suppress diff output"),
101 OPT_BOOLEAN(0, "source", &source
, "show source"),
102 { OPTION_CALLBACK
, 0, "decorate", NULL
, NULL
, "decorate options",
103 PARSE_OPT_OPTARG
, decorate_callback
},
107 argc
= parse_options(argc
, argv
, prefix
,
108 builtin_log_options
, builtin_log_usage
,
109 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
110 PARSE_OPT_KEEP_DASHDASH
);
112 argc
= setup_revisions(argc
, argv
, rev
, opt
);
114 rev
->diffopt
.output_format
|= DIFF_FORMAT_NO_OUTPUT
;
116 /* Any arguments at this point are not recognized */
118 die("unrecognized argument: %s", argv
[1]);
120 memset(&w
, 0, sizeof(w
));
121 userformat_find_requirements(NULL
, &w
);
123 if (!rev
->show_notes_given
&& (!rev
->pretty_given
|| w
.notes
))
126 init_display_notes(&rev
->notes_opt
);
128 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
)
129 rev
->always_show_header
= 0;
130 if (DIFF_OPT_TST(&rev
->diffopt
, FOLLOW_RENAMES
)) {
131 rev
->always_show_header
= 0;
132 if (rev
->diffopt
.pathspec
.nr
!= 1)
133 usage("git logs can only follow renames on one pathname at a time");
137 rev
->show_source
= 1;
139 if (rev
->pretty_given
&& rev
->commit_format
== CMIT_FMT_RAW
) {
141 * "log --pretty=raw" is special; ignore UI oriented
142 * configuration variables such as decoration.
144 if (!decoration_given
)
145 decoration_style
= 0;
146 if (!rev
->abbrev_commit_given
)
147 rev
->abbrev_commit
= 0;
150 if (decoration_style
) {
151 rev
->show_decorations
= 1;
152 load_ref_decorations(decoration_style
);
157 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
158 struct rev_info
*rev
, struct setup_revision_opt
*opt
)
160 cmd_log_init_defaults(rev
);
161 cmd_log_init_finish(argc
, argv
, prefix
, rev
, opt
);
165 * This gives a rough estimate for how many commits we
166 * will print out in the list.
168 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
173 struct commit
*commit
= list
->item
;
174 unsigned int flags
= commit
->object
.flags
;
176 if (!(flags
& (TREESAME
| UNINTERESTING
)))
182 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
184 if (rev
->shown_one
) {
186 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
187 putchar(rev
->diffopt
.line_termination
);
189 printf(_("Final output: %d %s\n"), nr
, stage
);
192 static struct itimerval early_output_timer
;
194 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
196 int i
= revs
->early_output
;
199 sort_in_topological_order(&list
, revs
->lifo
);
201 struct commit
*commit
= list
->item
;
202 switch (simplify_commit(revs
, commit
)) {
205 int n
= estimate_commit_count(revs
, list
);
206 show_early_header(revs
, "incomplete", n
);
209 log_tree_commit(revs
, commit
);
220 /* Did we already get enough commits for the early output? */
225 * ..if no, then repeat it twice a second until we
228 * NOTE! We don't use "it_interval", because if the
229 * reader isn't listening, we want our output to be
230 * throttled by the writing, and not have the timer
231 * trigger every second even if we're blocked on a
234 early_output_timer
.it_value
.tv_sec
= 0;
235 early_output_timer
.it_value
.tv_usec
= 500000;
236 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
239 static void early_output(int signal
)
241 show_early_output
= log_show_early
;
244 static void setup_early_output(struct rev_info
*rev
)
249 * Set up the signal handler, minimally intrusively:
250 * we only set a single volatile integer word (not
251 * using sigatomic_t - trying to avoid unnecessary
252 * system dependencies and headers), and using
255 memset(&sa
, 0, sizeof(sa
));
256 sa
.sa_handler
= early_output
;
257 sigemptyset(&sa
.sa_mask
);
258 sa
.sa_flags
= SA_RESTART
;
259 sigaction(SIGALRM
, &sa
, NULL
);
262 * If we can get the whole output in less than a
263 * tenth of a second, don't even bother doing the
264 * early-output thing..
266 * This is a one-time-only trigger.
268 early_output_timer
.it_value
.tv_sec
= 0;
269 early_output_timer
.it_value
.tv_usec
= 100000;
270 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
273 static void finish_early_output(struct rev_info
*rev
)
275 int n
= estimate_commit_count(rev
, rev
->commits
);
276 signal(SIGALRM
, SIG_IGN
);
277 show_early_header(rev
, "done", n
);
280 static int cmd_log_walk(struct rev_info
*rev
)
282 struct commit
*commit
;
286 if (rev
->early_output
)
287 setup_early_output(rev
);
289 if (prepare_revision_walk(rev
))
290 die(_("revision walk setup failed"));
292 if (rev
->early_output
)
293 finish_early_output(rev
);
296 * For --check and --exit-code, the exit code is based on CHECK_FAILED
297 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
298 * retain that state information if replacing rev->diffopt in this loop
300 while ((commit
= get_revision(rev
)) != NULL
) {
301 if (!log_tree_commit(rev
, commit
) &&
304 * We decremented max_count in get_revision,
305 * but we didn't actually show the commit.
308 if (!rev
->reflog_info
) {
309 /* we allow cycles in reflog ancestry */
310 free(commit
->buffer
);
311 commit
->buffer
= NULL
;
313 free_commit_list(commit
->parents
);
314 commit
->parents
= NULL
;
315 if (saved_nrl
< rev
->diffopt
.needed_rename_limit
)
316 saved_nrl
= rev
->diffopt
.needed_rename_limit
;
317 if (rev
->diffopt
.degraded_cc_to_c
)
320 rev
->diffopt
.degraded_cc_to_c
= saved_dcctc
;
321 rev
->diffopt
.needed_rename_limit
= saved_nrl
;
323 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
324 DIFF_OPT_TST(&rev
->diffopt
, CHECK_FAILED
)) {
327 return diff_result_code(&rev
->diffopt
, 0);
330 static int git_log_config(const char *var
, const char *value
, void *cb
)
332 if (!strcmp(var
, "format.pretty"))
333 return git_config_string(&fmt_pretty
, var
, value
);
334 if (!strcmp(var
, "format.subjectprefix"))
335 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
336 if (!strcmp(var
, "log.abbrevcommit")) {
337 default_abbrev_commit
= git_config_bool(var
, value
);
340 if (!strcmp(var
, "log.date"))
341 return git_config_string(&default_date_mode
, var
, value
);
342 if (!strcmp(var
, "log.decorate")) {
343 decoration_style
= parse_decoration_style(var
, value
);
344 if (decoration_style
< 0)
345 decoration_style
= 0; /* maybe warn? */
348 if (!strcmp(var
, "log.showroot")) {
349 default_show_root
= git_config_bool(var
, value
);
352 if (!prefixcmp(var
, "color.decorate."))
353 return parse_decorate_color_config(var
, 15, value
);
355 return git_diff_ui_config(var
, value
, cb
);
358 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
361 struct setup_revision_opt opt
;
363 git_config(git_log_config
, NULL
);
365 init_revisions(&rev
, prefix
);
367 rev
.simplify_history
= 0;
368 memset(&opt
, 0, sizeof(opt
));
370 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
371 if (!rev
.diffopt
.output_format
)
372 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
373 return cmd_log_walk(&rev
);
376 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
378 struct strbuf out
= STRBUF_INIT
;
379 struct pretty_print_context pp
= {0};
381 pp
.fmt
= rev
->commit_format
;
382 pp
.date_mode
= rev
->date_mode
;
383 pp_user_info(&pp
, "Tagger", &out
, buf
, get_log_output_encoding());
384 printf("%s", out
.buf
);
385 strbuf_release(&out
);
388 static int show_blob_object(const unsigned char *sha1
, struct rev_info
*rev
)
391 return stream_blob_to_fd(1, sha1
, NULL
, 0);
394 static int show_tag_object(const unsigned char *sha1
, struct rev_info
*rev
)
397 enum object_type type
;
398 char *buf
= read_sha1_file(sha1
, &type
, &size
);
402 return error(_("Could not read object %s"), sha1_to_hex(sha1
));
404 assert(type
== OBJ_TAG
);
405 while (offset
< size
&& buf
[offset
] != '\n') {
406 int new_offset
= offset
+ 1;
407 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
409 if (!prefixcmp(buf
+ offset
, "tagger "))
410 show_tagger(buf
+ offset
+ 7,
411 new_offset
- offset
- 7, rev
);
416 fwrite(buf
+ offset
, size
- offset
, 1, stdout
);
421 static int show_tree_object(const unsigned char *sha1
,
422 const char *base
, int baselen
,
423 const char *pathname
, unsigned mode
, int stage
, void *context
)
425 printf("%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
429 static void show_rev_tweak_rev(struct rev_info
*rev
, struct setup_revision_opt
*opt
)
431 if (rev
->ignore_merges
) {
432 /* There was no "-m" on the command line */
433 rev
->ignore_merges
= 0;
434 if (!rev
->first_parent_only
&& !rev
->combine_merges
) {
435 /* No "--first-parent", "-c", nor "--cc" */
436 rev
->combine_merges
= 1;
437 rev
->dense_combined_merges
= 1;
440 if (!rev
->diffopt
.output_format
)
441 rev
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
444 int cmd_show(int argc
, const char **argv
, const char *prefix
)
447 struct object_array_entry
*objects
;
448 struct setup_revision_opt opt
;
449 struct pathspec match_all
;
450 int i
, count
, ret
= 0;
452 git_config(git_log_config
, NULL
);
454 init_pathspec(&match_all
, NULL
);
455 init_revisions(&rev
, prefix
);
457 rev
.always_show_header
= 1;
459 rev
.diffopt
.stat_width
= -1; /* Scale to real terminal size */
461 memset(&opt
, 0, sizeof(opt
));
463 opt
.tweak
= show_rev_tweak_rev
;
464 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
466 count
= rev
.pending
.nr
;
467 objects
= rev
.pending
.objects
;
468 for (i
= 0; i
< count
&& !ret
; i
++) {
469 struct object
*o
= objects
[i
].item
;
470 const char *name
= objects
[i
].name
;
473 ret
= show_blob_object(o
->sha1
, NULL
);
476 struct tag
*t
= (struct tag
*)o
;
480 printf("%stag %s%s\n",
481 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
483 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
484 ret
= show_tag_object(o
->sha1
, &rev
);
488 o
= parse_object(t
->tagged
->sha1
);
490 ret
= error(_("Could not read object %s"),
491 sha1_to_hex(t
->tagged
->sha1
));
499 printf("%stree %s%s\n\n",
500 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
502 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
503 read_tree_recursive((struct tree
*)o
, "", 0, 0, &match_all
,
504 show_tree_object
, NULL
);
508 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
509 rev
.pending
.objects
= NULL
;
510 add_object_array(o
, name
, &rev
.pending
);
511 ret
= cmd_log_walk(&rev
);
514 ret
= error(_("Unknown type: %d"), o
->type
);
522 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
524 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
527 struct setup_revision_opt opt
;
529 git_config(git_log_config
, NULL
);
531 init_revisions(&rev
, prefix
);
532 init_reflog_walk(&rev
.reflog_info
);
533 rev
.verbose_header
= 1;
534 memset(&opt
, 0, sizeof(opt
));
536 cmd_log_init_defaults(&rev
);
537 rev
.abbrev_commit
= 1;
538 rev
.commit_format
= CMIT_FMT_ONELINE
;
539 rev
.use_terminator
= 1;
540 rev
.always_show_header
= 1;
541 cmd_log_init_finish(argc
, argv
, prefix
, &rev
, &opt
);
543 return cmd_log_walk(&rev
);
546 int cmd_log(int argc
, const char **argv
, const char *prefix
)
549 struct setup_revision_opt opt
;
551 git_config(git_log_config
, NULL
);
553 init_revisions(&rev
, prefix
);
554 rev
.always_show_header
= 1;
555 memset(&opt
, 0, sizeof(opt
));
557 cmd_log_init(argc
, argv
, prefix
, &rev
, &opt
);
558 return cmd_log_walk(&rev
);
563 static const char *fmt_patch_suffix
= ".patch";
564 static int numbered
= 0;
565 static int auto_number
= 1;
567 static char *default_attach
= NULL
;
569 static struct string_list extra_hdr
;
570 static struct string_list extra_to
;
571 static struct string_list extra_cc
;
573 static void add_header(const char *value
)
575 struct string_list_item
*item
;
576 int len
= strlen(value
);
577 while (len
&& value
[len
- 1] == '\n')
580 if (!strncasecmp(value
, "to: ", 4)) {
581 item
= string_list_append(&extra_to
, value
+ 4);
583 } else if (!strncasecmp(value
, "cc: ", 4)) {
584 item
= string_list_append(&extra_cc
, value
+ 4);
587 item
= string_list_append(&extra_hdr
, value
);
590 item
->string
[len
] = '\0';
593 #define THREAD_SHALLOW 1
594 #define THREAD_DEEP 2
596 static int do_signoff
;
597 static const char *signature
= git_version_string
;
599 static int git_format_config(const char *var
, const char *value
, void *cb
)
601 if (!strcmp(var
, "format.headers")) {
603 die(_("format.headers without value"));
607 if (!strcmp(var
, "format.suffix"))
608 return git_config_string(&fmt_patch_suffix
, var
, value
);
609 if (!strcmp(var
, "format.to")) {
611 return config_error_nonbool(var
);
612 string_list_append(&extra_to
, value
);
615 if (!strcmp(var
, "format.cc")) {
617 return config_error_nonbool(var
);
618 string_list_append(&extra_cc
, value
);
621 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff") ||
622 !strcmp(var
, "color.ui")) {
625 if (!strcmp(var
, "format.numbered")) {
626 if (value
&& !strcasecmp(value
, "auto")) {
630 numbered
= git_config_bool(var
, value
);
631 auto_number
= auto_number
&& numbered
;
634 if (!strcmp(var
, "format.attach")) {
636 default_attach
= xstrdup(value
);
638 default_attach
= xstrdup(git_version_string
);
641 if (!strcmp(var
, "format.thread")) {
642 if (value
&& !strcasecmp(value
, "deep")) {
643 thread
= THREAD_DEEP
;
646 if (value
&& !strcasecmp(value
, "shallow")) {
647 thread
= THREAD_SHALLOW
;
650 thread
= git_config_bool(var
, value
) && THREAD_SHALLOW
;
653 if (!strcmp(var
, "format.signoff")) {
654 do_signoff
= git_config_bool(var
, value
);
657 if (!strcmp(var
, "format.signature"))
658 return git_config_string(&signature
, var
, value
);
660 return git_log_config(var
, value
, cb
);
663 static FILE *realstdout
= NULL
;
664 static const char *output_directory
= NULL
;
665 static int outdir_offset
;
667 static int reopen_stdout(struct commit
*commit
, const char *subject
,
668 struct rev_info
*rev
, int quiet
)
670 struct strbuf filename
= STRBUF_INIT
;
671 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
673 if (output_directory
) {
674 strbuf_addstr(&filename
, output_directory
);
676 PATH_MAX
- FORMAT_PATCH_NAME_MAX
- suffix_len
)
677 return error(_("name of output directory is too long"));
678 if (filename
.buf
[filename
.len
- 1] != '/')
679 strbuf_addch(&filename
, '/');
682 get_patch_filename(commit
, subject
, rev
->nr
, fmt_patch_suffix
, &filename
);
685 fprintf(realstdout
, "%s\n", filename
.buf
+ outdir_offset
);
687 if (freopen(filename
.buf
, "w", stdout
) == NULL
)
688 return error(_("Cannot open patch file %s"), filename
.buf
);
690 strbuf_release(&filename
);
694 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
, const char *prefix
)
696 struct rev_info check_rev
;
697 struct commit
*commit
;
698 struct object
*o1
, *o2
;
699 unsigned flags1
, flags2
;
701 if (rev
->pending
.nr
!= 2)
702 die(_("Need exactly one range."));
704 o1
= rev
->pending
.objects
[0].item
;
706 o2
= rev
->pending
.objects
[1].item
;
709 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
710 die(_("Not a range."));
714 /* given a range a..b get all patch ids for b..a */
715 init_revisions(&check_rev
, prefix
);
716 o1
->flags
^= UNINTERESTING
;
717 o2
->flags
^= UNINTERESTING
;
718 add_pending_object(&check_rev
, o1
, "o1");
719 add_pending_object(&check_rev
, o2
, "o2");
720 if (prepare_revision_walk(&check_rev
))
721 die(_("revision walk setup failed"));
723 while ((commit
= get_revision(&check_rev
)) != NULL
) {
725 if (commit
->parents
&& commit
->parents
->next
)
728 add_commit_patch_id(commit
, ids
);
731 /* reset for next revision walk */
732 clear_commit_marks((struct commit
*)o1
,
733 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
734 clear_commit_marks((struct commit
*)o2
,
735 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
740 static void gen_message_id(struct rev_info
*info
, char *base
)
742 struct strbuf buf
= STRBUF_INIT
;
743 strbuf_addf(&buf
, "%s.%lu.git.%s", base
,
744 (unsigned long) time(NULL
),
745 git_committer_info(IDENT_NO_NAME
|IDENT_NO_DATE
|IDENT_STRICT
));
746 info
->message_id
= strbuf_detach(&buf
, NULL
);
749 static void print_signature(void)
751 if (signature
&& *signature
)
752 printf("-- \n%s\n\n", signature
);
755 static void add_branch_description(struct strbuf
*buf
, const char *branch_name
)
757 struct strbuf desc
= STRBUF_INIT
;
758 if (!branch_name
|| !*branch_name
)
760 read_branch_desc(&desc
, branch_name
);
762 strbuf_addch(buf
, '\n');
763 strbuf_add(buf
, desc
.buf
, desc
.len
);
764 strbuf_addch(buf
, '\n');
768 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
769 int numbered
, int numbered_files
,
770 struct commit
*origin
,
771 int nr
, struct commit
**list
, struct commit
*head
,
772 const char *branch_name
,
775 const char *committer
;
776 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
779 struct strbuf sb
= STRBUF_INIT
;
781 const char *encoding
= "UTF-8";
782 struct diff_options opts
;
783 int need_8bit_cte
= 0;
784 struct pretty_print_context pp
= {0};
786 if (rev
->commit_format
!= CMIT_FMT_EMAIL
)
787 die(_("Cover letter needs email format"));
789 committer
= git_committer_info(0);
792 reopen_stdout(NULL
, numbered_files
? NULL
: "cover-letter", rev
, quiet
))
795 log_write_email_headers(rev
, head
, &pp
.subject
, &pp
.after_subject
,
798 for (i
= 0; !need_8bit_cte
&& i
< nr
; i
++)
799 if (has_non_ascii(list
[i
]->buffer
))
803 pp
.fmt
= CMIT_FMT_EMAIL
;
804 pp
.date_mode
= DATE_RFC2822
;
805 pp_user_info(&pp
, NULL
, &sb
, committer
, encoding
);
806 pp_title_line(&pp
, &msg
, &sb
, encoding
, need_8bit_cte
);
807 pp_remainder(&pp
, &msg
, &sb
, 0);
808 add_branch_description(&sb
, branch_name
);
809 printf("%s\n", sb
.buf
);
818 for (i
= 0; i
< nr
; i
++)
819 shortlog_add_commit(&log
, list
[i
]);
821 shortlog_output(&log
);
824 * We can only do diffstat with a unique reference point
829 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
830 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
832 diff_setup_done(&opts
);
834 diff_tree_sha1(origin
->tree
->object
.sha1
,
835 head
->tree
->object
.sha1
,
844 static const char *clean_message_id(const char *msg_id
)
847 const char *a
, *z
, *m
;
850 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
855 if (!isspace(ch
) && (ch
!= '>'))
860 die(_("insane in-reply-to: %s"), msg_id
);
863 return xmemdupz(a
, z
- a
);
866 static const char *set_outdir(const char *prefix
, const char *output_directory
)
868 if (output_directory
&& is_absolute_path(output_directory
))
869 return output_directory
;
871 if (!prefix
|| !*prefix
) {
872 if (output_directory
)
873 return output_directory
;
874 /* The user did not explicitly ask for "./" */
879 outdir_offset
= strlen(prefix
);
880 if (!output_directory
)
883 return xstrdup(prefix_filename(prefix
, outdir_offset
,
887 static const char * const builtin_format_patch_usage
[] = {
888 "git format-patch [options] [<since> | <revision range>]",
892 static int keep_subject
= 0;
894 static int keep_callback(const struct option
*opt
, const char *arg
, int unset
)
896 ((struct rev_info
*)opt
->value
)->total
= -1;
901 static int subject_prefix
= 0;
903 static int subject_prefix_callback(const struct option
*opt
, const char *arg
,
907 ((struct rev_info
*)opt
->value
)->subject_prefix
= arg
;
911 static int numbered_cmdline_opt
= 0;
913 static int numbered_callback(const struct option
*opt
, const char *arg
,
916 *(int *)opt
->value
= numbered_cmdline_opt
= unset
? 0 : 1;
922 static int no_numbered_callback(const struct option
*opt
, const char *arg
,
925 return numbered_callback(opt
, arg
, 1);
928 static int output_directory_callback(const struct option
*opt
, const char *arg
,
931 const char **dir
= (const char **)opt
->value
;
933 die(_("Two output directories?"));
938 static int thread_callback(const struct option
*opt
, const char *arg
, int unset
)
940 int *thread
= (int *)opt
->value
;
943 else if (!arg
|| !strcmp(arg
, "shallow"))
944 *thread
= THREAD_SHALLOW
;
945 else if (!strcmp(arg
, "deep"))
946 *thread
= THREAD_DEEP
;
952 static int attach_callback(const struct option
*opt
, const char *arg
, int unset
)
954 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
956 rev
->mime_boundary
= NULL
;
958 rev
->mime_boundary
= arg
;
960 rev
->mime_boundary
= git_version_string
;
961 rev
->no_inline
= unset
? 0 : 1;
965 static int inline_callback(const struct option
*opt
, const char *arg
, int unset
)
967 struct rev_info
*rev
= (struct rev_info
*)opt
->value
;
969 rev
->mime_boundary
= NULL
;
971 rev
->mime_boundary
= arg
;
973 rev
->mime_boundary
= git_version_string
;
978 static int header_callback(const struct option
*opt
, const char *arg
, int unset
)
981 string_list_clear(&extra_hdr
, 0);
982 string_list_clear(&extra_to
, 0);
983 string_list_clear(&extra_cc
, 0);
990 static int to_callback(const struct option
*opt
, const char *arg
, int unset
)
993 string_list_clear(&extra_to
, 0);
995 string_list_append(&extra_to
, arg
);
999 static int cc_callback(const struct option
*opt
, const char *arg
, int unset
)
1002 string_list_clear(&extra_cc
, 0);
1004 string_list_append(&extra_cc
, arg
);
1008 static char *find_branch_name(struct rev_info
*rev
)
1010 int i
, positive
= -1;
1011 unsigned char branch_sha1
[20];
1012 struct strbuf buf
= STRBUF_INIT
;
1015 for (i
= 0; i
< rev
->cmdline
.nr
; i
++) {
1016 if (rev
->cmdline
.rev
[i
].flags
& UNINTERESTING
)
1025 strbuf_addf(&buf
, "refs/heads/%s", rev
->cmdline
.rev
[positive
].name
);
1026 branch
= resolve_ref_unsafe(buf
.buf
, branch_sha1
, 1, NULL
);
1028 prefixcmp(branch
, "refs/heads/") ||
1029 hashcmp(rev
->cmdline
.rev
[positive
].item
->sha1
, branch_sha1
))
1031 strbuf_release(&buf
);
1033 return xstrdup(rev
->cmdline
.rev
[positive
].name
);
1037 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
1039 struct commit
*commit
;
1040 struct commit
**list
= NULL
;
1041 struct rev_info rev
;
1042 struct setup_revision_opt s_r_opt
;
1043 int nr
= 0, total
, i
;
1045 int start_number
= -1;
1046 int numbered_files
= 0; /* _just_ numbers */
1047 int ignore_if_in_upstream
= 0;
1048 int cover_letter
= 0;
1049 int boundary_count
= 0;
1050 int no_binary_diff
= 0;
1051 struct commit
*origin
= NULL
, *head
= NULL
;
1052 const char *in_reply_to
= NULL
;
1053 struct patch_ids ids
;
1054 char *add_signoff
= NULL
;
1055 struct strbuf buf
= STRBUF_INIT
;
1056 int use_patch_format
= 0;
1058 char *branch_name
= NULL
;
1059 const struct option builtin_format_patch_options
[] = {
1060 { OPTION_CALLBACK
, 'n', "numbered", &numbered
, NULL
,
1061 "use [PATCH n/m] even with a single patch",
1062 PARSE_OPT_NOARG
, numbered_callback
},
1063 { OPTION_CALLBACK
, 'N', "no-numbered", &numbered
, NULL
,
1064 "use [PATCH] even with multiple patches",
1065 PARSE_OPT_NOARG
, no_numbered_callback
},
1066 OPT_BOOLEAN('s', "signoff", &do_signoff
, "add Signed-off-by:"),
1067 OPT_BOOLEAN(0, "stdout", &use_stdout
,
1068 "print patches to standard out"),
1069 OPT_BOOLEAN(0, "cover-letter", &cover_letter
,
1070 "generate a cover letter"),
1071 OPT_BOOLEAN(0, "numbered-files", &numbered_files
,
1072 "use simple number sequence for output file names"),
1073 OPT_STRING(0, "suffix", &fmt_patch_suffix
, "sfx",
1074 "use <sfx> instead of '.patch'"),
1075 OPT_INTEGER(0, "start-number", &start_number
,
1076 "start numbering patches at <n> instead of 1"),
1077 { OPTION_CALLBACK
, 0, "subject-prefix", &rev
, "prefix",
1078 "Use [<prefix>] instead of [PATCH]",
1079 PARSE_OPT_NONEG
, subject_prefix_callback
},
1080 { OPTION_CALLBACK
, 'o', "output-directory", &output_directory
,
1081 "dir", "store resulting files in <dir>",
1082 PARSE_OPT_NONEG
, output_directory_callback
},
1083 { OPTION_CALLBACK
, 'k', "keep-subject", &rev
, NULL
,
1084 "don't strip/add [PATCH]",
1085 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, keep_callback
},
1086 OPT_BOOLEAN(0, "no-binary", &no_binary_diff
,
1087 "don't output binary diffs"),
1088 OPT_BOOLEAN(0, "ignore-if-in-upstream", &ignore_if_in_upstream
,
1089 "don't include a patch matching a commit upstream"),
1090 { OPTION_BOOLEAN
, 'p', "no-stat", &use_patch_format
, NULL
,
1091 "show patch format instead of default (patch + stat)",
1092 PARSE_OPT_NONEG
| PARSE_OPT_NOARG
},
1093 OPT_GROUP("Messaging"),
1094 { OPTION_CALLBACK
, 0, "add-header", NULL
, "header",
1095 "add email header", 0, header_callback
},
1096 { OPTION_CALLBACK
, 0, "to", NULL
, "email", "add To: header",
1098 { OPTION_CALLBACK
, 0, "cc", NULL
, "email", "add Cc: header",
1100 OPT_STRING(0, "in-reply-to", &in_reply_to
, "message-id",
1101 "make first mail a reply to <message-id>"),
1102 { OPTION_CALLBACK
, 0, "attach", &rev
, "boundary",
1103 "attach the patch", PARSE_OPT_OPTARG
,
1105 { OPTION_CALLBACK
, 0, "inline", &rev
, "boundary",
1107 PARSE_OPT_OPTARG
| PARSE_OPT_NONEG
,
1109 { OPTION_CALLBACK
, 0, "thread", &thread
, "style",
1110 "enable message threading, styles: shallow, deep",
1111 PARSE_OPT_OPTARG
, thread_callback
},
1112 OPT_STRING(0, "signature", &signature
, "signature",
1114 OPT_BOOLEAN(0, "quiet", &quiet
,
1115 "don't print the patch filenames"),
1119 extra_hdr
.strdup_strings
= 1;
1120 extra_to
.strdup_strings
= 1;
1121 extra_cc
.strdup_strings
= 1;
1122 git_config(git_format_config
, NULL
);
1123 init_revisions(&rev
, prefix
);
1124 rev
.commit_format
= CMIT_FMT_EMAIL
;
1125 rev
.verbose_header
= 1;
1127 rev
.max_parents
= 1;
1128 DIFF_OPT_SET(&rev
.diffopt
, RECURSIVE
);
1129 rev
.subject_prefix
= fmt_patch_subject_prefix
;
1130 memset(&s_r_opt
, 0, sizeof(s_r_opt
));
1131 s_r_opt
.def
= "HEAD";
1133 if (default_attach
) {
1134 rev
.mime_boundary
= default_attach
;
1139 * Parse the arguments before setup_revisions(), or something
1140 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1141 * possibly a valid SHA1.
1143 argc
= parse_options(argc
, argv
, prefix
, builtin_format_patch_options
,
1144 builtin_format_patch_usage
,
1145 PARSE_OPT_KEEP_ARGV0
| PARSE_OPT_KEEP_UNKNOWN
|
1146 PARSE_OPT_KEEP_DASHDASH
);
1149 const char *committer
;
1151 committer
= git_committer_info(IDENT_STRICT
);
1152 endpos
= strchr(committer
, '>');
1154 die(_("bogus committer info %s"), committer
);
1155 add_signoff
= xmemdupz(committer
, endpos
- committer
+ 1);
1158 for (i
= 0; i
< extra_hdr
.nr
; i
++) {
1159 strbuf_addstr(&buf
, extra_hdr
.items
[i
].string
);
1160 strbuf_addch(&buf
, '\n');
1164 strbuf_addstr(&buf
, "To: ");
1165 for (i
= 0; i
< extra_to
.nr
; i
++) {
1167 strbuf_addstr(&buf
, " ");
1168 strbuf_addstr(&buf
, extra_to
.items
[i
].string
);
1169 if (i
+ 1 < extra_to
.nr
)
1170 strbuf_addch(&buf
, ',');
1171 strbuf_addch(&buf
, '\n');
1175 strbuf_addstr(&buf
, "Cc: ");
1176 for (i
= 0; i
< extra_cc
.nr
; i
++) {
1178 strbuf_addstr(&buf
, " ");
1179 strbuf_addstr(&buf
, extra_cc
.items
[i
].string
);
1180 if (i
+ 1 < extra_cc
.nr
)
1181 strbuf_addch(&buf
, ',');
1182 strbuf_addch(&buf
, '\n');
1185 rev
.extra_headers
= strbuf_detach(&buf
, NULL
);
1187 if (start_number
< 0)
1191 * If numbered is set solely due to format.numbered in config,
1192 * and it would conflict with --keep-subject (-k) from the
1193 * command line, reset "numbered".
1195 if (numbered
&& keep_subject
&& !numbered_cmdline_opt
)
1198 if (numbered
&& keep_subject
)
1199 die (_("-n and -k are mutually exclusive."));
1200 if (keep_subject
&& subject_prefix
)
1201 die (_("--subject-prefix and -k are mutually exclusive."));
1202 rev
.preserve_subject
= keep_subject
;
1204 argc
= setup_revisions(argc
, argv
, &rev
, &s_r_opt
);
1206 die (_("unrecognized argument: %s"), argv
[1]);
1208 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME
)
1209 die(_("--name-only does not make sense"));
1210 if (rev
.diffopt
.output_format
& DIFF_FORMAT_NAME_STATUS
)
1211 die(_("--name-status does not make sense"));
1212 if (rev
.diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
)
1213 die(_("--check does not make sense"));
1215 if (!use_patch_format
&&
1216 (!rev
.diffopt
.output_format
||
1217 rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
))
1218 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
;
1220 /* Always generate a patch */
1221 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
1223 if (!DIFF_OPT_TST(&rev
.diffopt
, TEXT
) && !no_binary_diff
)
1224 DIFF_OPT_SET(&rev
.diffopt
, BINARY
);
1227 init_display_notes(&rev
.notes_opt
);
1230 output_directory
= set_outdir(prefix
, output_directory
);
1234 if (output_directory
) {
1236 die(_("standard output, or directory, which one?"));
1237 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
1238 die_errno(_("Could not create directory '%s'"),
1242 if (rev
.pending
.nr
== 1) {
1243 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
1245 * This is traditional behaviour of "git format-patch
1246 * origin" that prepares what the origin side still
1249 unsigned char sha1
[20];
1252 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
1253 add_head_to_pending(&rev
);
1254 ref
= resolve_ref_unsafe("HEAD", sha1
, 1, NULL
);
1255 if (ref
&& !prefixcmp(ref
, "refs/heads/"))
1256 branch_name
= xstrdup(ref
+ strlen("refs/heads/"));
1258 branch_name
= xstrdup(""); /* no branch */
1261 * Otherwise, it is "format-patch -22 HEAD", and/or
1262 * "format-patch --root HEAD". The user wants
1263 * get_revision() to do the usual traversal.
1268 * We cannot move this anywhere earlier because we do want to
1269 * know if --root was given explicitly from the command line.
1271 rev
.show_root_diff
= 1;
1275 * NEEDSWORK:randomly pick one positive commit to show
1276 * diffstat; this is often the tip and the command
1277 * happens to do the right thing in most cases, but a
1278 * complex command like "--cover-letter a b c ^bottom"
1279 * picks "c" and shows diffstat between bottom..c
1280 * which may not match what the series represents at
1281 * all and totally broken.
1284 for (i
= 0; i
< rev
.pending
.nr
; i
++) {
1285 struct object
*o
= rev
.pending
.objects
[i
].item
;
1286 if (!(o
->flags
& UNINTERESTING
))
1287 head
= (struct commit
*)o
;
1289 /* There is nothing to show; it is not an error, though. */
1293 branch_name
= find_branch_name(&rev
);
1296 if (ignore_if_in_upstream
) {
1297 /* Don't say anything if head and upstream are the same. */
1298 if (rev
.pending
.nr
== 2) {
1299 struct object_array_entry
*o
= rev
.pending
.objects
;
1300 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
1303 get_patch_ids(&rev
, &ids
, prefix
);
1307 realstdout
= xfdopen(xdup(1), "w");
1309 if (prepare_revision_walk(&rev
))
1310 die(_("revision walk setup failed"));
1312 while ((commit
= get_revision(&rev
)) != NULL
) {
1313 if (commit
->object
.flags
& BOUNDARY
) {
1315 origin
= (boundary_count
== 1) ? commit
: NULL
;
1319 if (ignore_if_in_upstream
&&
1320 has_commit_patch_id(commit
, &ids
))
1324 list
= xrealloc(list
, nr
* sizeof(list
[0]));
1325 list
[nr
- 1] = commit
;
1328 if (!keep_subject
&& auto_number
&& total
> 1)
1331 rev
.total
= total
+ start_number
- 1;
1332 if (in_reply_to
|| thread
|| cover_letter
)
1333 rev
.ref_message_ids
= xcalloc(1, sizeof(struct string_list
));
1335 const char *msgid
= clean_message_id(in_reply_to
);
1336 string_list_append(rev
.ref_message_ids
, msgid
);
1338 rev
.numbered_files
= numbered_files
;
1339 rev
.patch_suffix
= fmt_patch_suffix
;
1342 gen_message_id(&rev
, "cover");
1343 make_cover_letter(&rev
, use_stdout
, numbered
, numbered_files
,
1344 origin
, nr
, list
, head
, branch_name
, quiet
);
1348 rev
.add_signoff
= add_signoff
;
1352 rev
.nr
= total
- nr
+ (start_number
- 1);
1353 /* Make the second and subsequent mails replies to the first */
1355 /* Have we already had a message ID? */
1356 if (rev
.message_id
) {
1358 * For deep threading: make every mail
1359 * a reply to the previous one, no
1360 * matter what other options are set.
1362 * For shallow threading:
1364 * Without --cover-letter and
1365 * --in-reply-to, make every mail a
1366 * reply to the one before.
1368 * With --in-reply-to but no
1369 * --cover-letter, make every mail a
1370 * reply to the <reply-to>.
1372 * With --cover-letter, make every
1373 * mail but the cover letter a reply
1374 * to the cover letter. The cover
1375 * letter is a reply to the
1376 * --in-reply-to, if specified.
1378 if (thread
== THREAD_SHALLOW
1379 && rev
.ref_message_ids
->nr
> 0
1380 && (!cover_letter
|| rev
.nr
> 1))
1381 free(rev
.message_id
);
1383 string_list_append(rev
.ref_message_ids
,
1386 gen_message_id(&rev
, sha1_to_hex(commit
->object
.sha1
));
1390 reopen_stdout(numbered_files
? NULL
: commit
, NULL
, &rev
, quiet
))
1391 die(_("Failed to create output files"));
1392 shown
= log_tree_commit(&rev
, commit
);
1393 free(commit
->buffer
);
1394 commit
->buffer
= NULL
;
1396 /* We put one extra blank line between formatted
1397 * patches and this flag is used by log-tree code
1398 * to see if it needs to emit a LF before showing
1399 * the log; when using one file per patch, we do
1400 * not want the extra blank line.
1405 if (rev
.mime_boundary
)
1406 printf("\n--%s%s--\n\n\n",
1407 mime_boundary_leader
,
1417 string_list_clear(&extra_to
, 0);
1418 string_list_clear(&extra_cc
, 0);
1419 string_list_clear(&extra_hdr
, 0);
1420 if (ignore_if_in_upstream
)
1421 free_patch_ids(&ids
);
1425 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1427 unsigned char sha1
[20];
1428 if (get_sha1(arg
, sha1
) == 0) {
1429 struct commit
*commit
= lookup_commit_reference(sha1
);
1431 commit
->object
.flags
|= flags
;
1432 add_pending_object(revs
, &commit
->object
, arg
);
1439 static const char * const cherry_usage
[] = {
1440 "git cherry [-v] [<upstream> [<head> [<limit>]]]",
1444 static void print_commit(char sign
, struct commit
*commit
, int verbose
,
1448 printf("%c %s\n", sign
,
1449 find_unique_abbrev(commit
->object
.sha1
, abbrev
));
1451 struct strbuf buf
= STRBUF_INIT
;
1452 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &buf
);
1453 printf("%c %s %s\n", sign
,
1454 find_unique_abbrev(commit
->object
.sha1
, abbrev
),
1456 strbuf_release(&buf
);
1460 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
1462 struct rev_info revs
;
1463 struct patch_ids ids
;
1464 struct commit
*commit
;
1465 struct commit_list
*list
= NULL
;
1466 struct branch
*current_branch
;
1467 const char *upstream
;
1468 const char *head
= "HEAD";
1469 const char *limit
= NULL
;
1470 int verbose
= 0, abbrev
= 0;
1472 struct option options
[] = {
1473 OPT__ABBREV(&abbrev
),
1474 OPT__VERBOSE(&verbose
, "be verbose"),
1478 argc
= parse_options(argc
, argv
, prefix
, options
, cherry_usage
, 0);
1491 current_branch
= branch_get(NULL
);
1492 if (!current_branch
|| !current_branch
->merge
1493 || !current_branch
->merge
[0]
1494 || !current_branch
->merge
[0]->dst
) {
1495 fprintf(stderr
, _("Could not find a tracked"
1496 " remote branch, please"
1497 " specify <upstream> manually.\n"));
1498 usage_with_options(cherry_usage
, options
);
1501 upstream
= current_branch
->merge
[0]->dst
;
1504 init_revisions(&revs
, prefix
);
1506 revs
.combine_merges
= 0;
1507 revs
.ignore_merges
= 1;
1508 DIFF_OPT_SET(&revs
.diffopt
, RECURSIVE
);
1510 if (add_pending_commit(head
, &revs
, 0))
1511 die(_("Unknown commit %s"), head
);
1512 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
1513 die(_("Unknown commit %s"), upstream
);
1515 /* Don't say anything if head and upstream are the same. */
1516 if (revs
.pending
.nr
== 2) {
1517 struct object_array_entry
*o
= revs
.pending
.objects
;
1518 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
1522 get_patch_ids(&revs
, &ids
, prefix
);
1524 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
1525 die(_("Unknown commit %s"), limit
);
1527 /* reverse the list of commits */
1528 if (prepare_revision_walk(&revs
))
1529 die(_("revision walk setup failed"));
1530 while ((commit
= get_revision(&revs
)) != NULL
) {
1532 if (commit
->parents
&& commit
->parents
->next
)
1535 commit_list_insert(commit
, &list
);
1541 commit
= list
->item
;
1542 if (has_commit_patch_id(commit
, &ids
))
1544 print_commit(sign
, commit
, verbose
, abbrev
);
1548 free_patch_ids(&ids
);