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"
18 #include "run-command.h"
21 static int default_show_root
= 1;
22 static const char *fmt_patch_subject_prefix
= "PATCH";
23 static const char *fmt_pretty
;
25 static void add_name_decoration(const char *prefix
, const char *name
, struct object
*obj
)
27 int plen
= strlen(prefix
);
28 int nlen
= strlen(name
);
29 struct name_decoration
*res
= xmalloc(sizeof(struct name_decoration
) + plen
+ nlen
);
30 memcpy(res
->name
, prefix
, plen
);
31 memcpy(res
->name
+ plen
, name
, nlen
+ 1);
32 res
->next
= add_decoration(&name_decoration
, obj
, res
);
35 static int add_ref_decoration(const char *refname
, const unsigned char *sha1
, int flags
, void *cb_data
)
37 struct object
*obj
= parse_object(sha1
);
40 add_name_decoration("", refname
, obj
);
41 while (obj
->type
== OBJ_TAG
) {
42 obj
= ((struct tag
*)obj
)->tagged
;
45 add_name_decoration("tag: ", refname
, obj
);
50 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
56 rev
->abbrev
= DEFAULT_ABBREV
;
57 rev
->commit_format
= CMIT_FMT_DEFAULT
;
59 rev
->commit_format
= get_commit_format(fmt_pretty
);
60 rev
->verbose_header
= 1;
61 DIFF_OPT_SET(&rev
->diffopt
, RECURSIVE
);
62 rev
->show_root_diff
= default_show_root
;
63 rev
->subject_prefix
= fmt_patch_subject_prefix
;
64 argc
= setup_revisions(argc
, argv
, rev
, "HEAD");
65 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
)
66 rev
->always_show_header
= 0;
67 if (DIFF_OPT_TST(&rev
->diffopt
, FOLLOW_RENAMES
)) {
68 rev
->always_show_header
= 0;
69 if (rev
->diffopt
.nr_paths
!= 1)
70 usage("git logs can only follow renames on one pathname at a time");
72 for (i
= 1; i
< argc
; i
++) {
73 const char *arg
= argv
[i
];
74 if (!strcmp(arg
, "--decorate")) {
76 for_each_ref(add_ref_decoration
, NULL
);
79 die("unrecognized argument: %s", arg
);
84 * This gives a rough estimate for how many commits we
85 * will print out in the list.
87 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
92 struct commit
*commit
= list
->item
;
93 unsigned int flags
= commit
->object
.flags
;
95 if (!(flags
& (TREESAME
| UNINTERESTING
)))
101 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
103 if (rev
->shown_one
) {
105 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
106 putchar(rev
->diffopt
.line_termination
);
108 printf("Final output: %d %s\n", nr
, stage
);
111 struct itimerval early_output_timer
;
113 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
115 int i
= revs
->early_output
;
118 sort_in_topological_order(&list
, revs
->lifo
);
120 struct commit
*commit
= list
->item
;
121 switch (simplify_commit(revs
, commit
)) {
124 int n
= estimate_commit_count(revs
, list
);
125 show_early_header(revs
, "incomplete", n
);
128 log_tree_commit(revs
, commit
);
139 /* Did we already get enough commits for the early output? */
144 * ..if no, then repeat it twice a second until we
147 * NOTE! We don't use "it_interval", because if the
148 * reader isn't listening, we want our output to be
149 * throttled by the writing, and not have the timer
150 * trigger every second even if we're blocked on a
153 early_output_timer
.it_value
.tv_sec
= 0;
154 early_output_timer
.it_value
.tv_usec
= 500000;
155 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
158 static void early_output(int signal
)
160 show_early_output
= log_show_early
;
163 static void setup_early_output(struct rev_info
*rev
)
168 * Set up the signal handler, minimally intrusively:
169 * we only set a single volatile integer word (not
170 * using sigatomic_t - trying to avoid unnecessary
171 * system dependencies and headers), and using
174 memset(&sa
, 0, sizeof(sa
));
175 sa
.sa_handler
= early_output
;
176 sigemptyset(&sa
.sa_mask
);
177 sa
.sa_flags
= SA_RESTART
;
178 sigaction(SIGALRM
, &sa
, NULL
);
181 * If we can get the whole output in less than a
182 * tenth of a second, don't even bother doing the
183 * early-output thing..
185 * This is a one-time-only trigger.
187 early_output_timer
.it_value
.tv_sec
= 0;
188 early_output_timer
.it_value
.tv_usec
= 100000;
189 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
192 static void finish_early_output(struct rev_info
*rev
)
194 int n
= estimate_commit_count(rev
, rev
->commits
);
195 signal(SIGALRM
, SIG_IGN
);
196 show_early_header(rev
, "done", n
);
199 static int cmd_log_walk(struct rev_info
*rev
)
201 struct commit
*commit
;
203 if (rev
->early_output
)
204 setup_early_output(rev
);
206 if (prepare_revision_walk(rev
))
207 die("revision walk setup failed");
209 if (rev
->early_output
)
210 finish_early_output(rev
);
212 while ((commit
= get_revision(rev
)) != NULL
) {
213 log_tree_commit(rev
, commit
);
214 if (!rev
->reflog_info
) {
215 /* we allow cycles in reflog ancestry */
216 free(commit
->buffer
);
217 commit
->buffer
= NULL
;
219 free_commit_list(commit
->parents
);
220 commit
->parents
= NULL
;
225 static int git_log_config(const char *var
, const char *value
)
227 if (!strcmp(var
, "format.pretty"))
228 return git_config_string(&fmt_pretty
, var
, value
);
229 if (!strcmp(var
, "format.subjectprefix")) {
231 config_error_nonbool(var
);
232 fmt_patch_subject_prefix
= xstrdup(value
);
235 if (!strcmp(var
, "log.showroot")) {
236 default_show_root
= git_config_bool(var
, value
);
239 return git_diff_ui_config(var
, value
);
242 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
246 git_config(git_log_config
);
248 if (diff_use_color_default
== -1)
249 diff_use_color_default
= git_use_color_default
;
251 init_revisions(&rev
, prefix
);
253 rev
.simplify_history
= 0;
254 cmd_log_init(argc
, argv
, prefix
, &rev
);
255 if (!rev
.diffopt
.output_format
)
256 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
257 return cmd_log_walk(&rev
);
260 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
266 email_end
= memchr(buf
, '>', len
);
272 date
= strtoul(p
, &p
, 10);
275 tz
= (int)strtol(p
, NULL
, 10);
276 printf("Tagger: %.*s\nDate: %s\n", (int)(email_end
- buf
), buf
,
277 show_date(date
, tz
, rev
->date_mode
));
280 static int show_object(const unsigned char *sha1
, int show_tag_object
,
281 struct rev_info
*rev
)
284 enum object_type type
;
285 char *buf
= read_sha1_file(sha1
, &type
, &size
);
289 return error("Could not read object %s", sha1_to_hex(sha1
));
292 while (offset
< size
&& buf
[offset
] != '\n') {
293 int new_offset
= offset
+ 1;
294 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
296 if (!prefixcmp(buf
+ offset
, "tagger "))
297 show_tagger(buf
+ offset
+ 7,
298 new_offset
- offset
- 7, rev
);
303 fwrite(buf
+ offset
, size
- offset
, 1, stdout
);
308 static int show_tree_object(const unsigned char *sha1
,
309 const char *base
, int baselen
,
310 const char *pathname
, unsigned mode
, int stage
)
312 printf("%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
316 int cmd_show(int argc
, const char **argv
, const char *prefix
)
319 struct object_array_entry
*objects
;
320 int i
, count
, ret
= 0;
322 git_config(git_log_config
);
324 if (diff_use_color_default
== -1)
325 diff_use_color_default
= git_use_color_default
;
327 init_revisions(&rev
, prefix
);
329 rev
.combine_merges
= 1;
330 rev
.dense_combined_merges
= 1;
331 rev
.always_show_header
= 1;
332 rev
.ignore_merges
= 0;
334 cmd_log_init(argc
, argv
, prefix
, &rev
);
336 count
= rev
.pending
.nr
;
337 objects
= rev
.pending
.objects
;
338 for (i
= 0; i
< count
&& !ret
; i
++) {
339 struct object
*o
= objects
[i
].item
;
340 const char *name
= objects
[i
].name
;
343 ret
= show_object(o
->sha1
, 0, NULL
);
346 struct tag
*t
= (struct tag
*)o
;
348 printf("%stag %s%s\n",
349 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
351 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
352 ret
= show_object(o
->sha1
, 1, &rev
);
353 objects
[i
].item
= (struct object
*)t
->tagged
;
358 printf("%stree %s%s\n\n",
359 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
361 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
362 read_tree_recursive((struct tree
*)o
, "", 0, 0, NULL
,
366 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
367 rev
.pending
.objects
= NULL
;
368 add_object_array(o
, name
, &rev
.pending
);
369 ret
= cmd_log_walk(&rev
);
372 ret
= error("Unknown type: %d", o
->type
);
380 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
382 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
386 git_config(git_log_config
);
388 if (diff_use_color_default
== -1)
389 diff_use_color_default
= git_use_color_default
;
391 init_revisions(&rev
, prefix
);
392 init_reflog_walk(&rev
.reflog_info
);
393 rev
.abbrev_commit
= 1;
394 rev
.verbose_header
= 1;
395 cmd_log_init(argc
, argv
, prefix
, &rev
);
398 * This means that we override whatever commit format the user gave
399 * on the cmd line. Sad, but cmd_log_init() currently doesn't
400 * allow us to set a different default.
402 rev
.commit_format
= CMIT_FMT_ONELINE
;
403 rev
.always_show_header
= 1;
406 * We get called through "git reflog", so unlike the other log
407 * routines, we need to set up our pager manually..
411 return cmd_log_walk(&rev
);
414 int cmd_log(int argc
, const char **argv
, const char *prefix
)
418 git_config(git_log_config
);
420 if (diff_use_color_default
== -1)
421 diff_use_color_default
= git_use_color_default
;
423 init_revisions(&rev
, prefix
);
424 rev
.always_show_header
= 1;
425 cmd_log_init(argc
, argv
, prefix
, &rev
);
426 return cmd_log_walk(&rev
);
430 #define FORMAT_PATCH_NAME_MAX 64
432 static int istitlechar(char c
)
434 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') ||
435 (c
>= '0' && c
<= '9') || c
== '.' || c
== '_';
438 static const char *fmt_patch_suffix
= ".patch";
439 static int numbered
= 0;
440 static int auto_number
= 0;
442 static char **extra_hdr
;
443 static int extra_hdr_nr
;
444 static int extra_hdr_alloc
;
446 static char **extra_to
;
447 static int extra_to_nr
;
448 static int extra_to_alloc
;
450 static char **extra_cc
;
451 static int extra_cc_nr
;
452 static int extra_cc_alloc
;
454 static void add_header(const char *value
)
456 int len
= strlen(value
);
457 while (value
[len
- 1] == '\n')
459 if (!strncasecmp(value
, "to: ", 4)) {
460 ALLOC_GROW(extra_to
, extra_to_nr
+ 1, extra_to_alloc
);
461 extra_to
[extra_to_nr
++] = xstrndup(value
+ 4, len
- 4);
464 if (!strncasecmp(value
, "cc: ", 4)) {
465 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
466 extra_cc
[extra_cc_nr
++] = xstrndup(value
+ 4, len
- 4);
469 ALLOC_GROW(extra_hdr
, extra_hdr_nr
+ 1, extra_hdr_alloc
);
470 extra_hdr
[extra_hdr_nr
++] = xstrndup(value
, len
);
473 static int git_format_config(const char *var
, const char *value
)
475 if (!strcmp(var
, "format.headers")) {
477 die("format.headers without value");
481 if (!strcmp(var
, "format.suffix")) {
483 return config_error_nonbool(var
);
484 fmt_patch_suffix
= xstrdup(value
);
487 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
490 if (!strcmp(var
, "format.numbered")) {
491 if (value
&& !strcasecmp(value
, "auto")) {
495 numbered
= git_config_bool(var
, value
);
499 return git_log_config(var
, value
);
503 static const char *get_oneline_for_filename(struct commit
*commit
,
506 static char filename
[PATH_MAX
];
509 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
511 sol
= strstr(commit
->buffer
, "\n\n");
518 /* strip [PATCH] or [PATCH blabla] */
519 if (!keep_subject
&& !prefixcmp(sol
, "[PATCH")) {
520 char *eos
= strchr(sol
+ 6, ']');
522 while (isspace(*eos
))
529 j
< FORMAT_PATCH_NAME_MAX
- suffix_len
- 5 &&
530 len
< sizeof(filename
) - suffix_len
&&
531 sol
[j
] && sol
[j
] != '\n';
533 if (istitlechar(sol
[j
])) {
535 filename
[len
++] = '-';
538 filename
[len
++] = sol
[j
];
540 while (sol
[j
+ 1] == '.')
545 while (filename
[len
- 1] == '.'
546 || filename
[len
- 1] == '-')
548 filename
[len
] = '\0';
553 static FILE *realstdout
= NULL
;
554 static const char *output_directory
= NULL
;
556 static int reopen_stdout(const char *oneline
, int nr
, int total
)
558 char filename
[PATH_MAX
];
560 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
562 if (output_directory
) {
563 len
= snprintf(filename
, sizeof(filename
), "%s",
566 sizeof(filename
) - FORMAT_PATCH_NAME_MAX
- suffix_len
)
567 return error("name of output directory is too long");
568 if (filename
[len
- 1] != '/')
569 filename
[len
++] = '/';
573 len
+= sprintf(filename
+ len
, "%d", nr
);
575 len
+= sprintf(filename
+ len
, "%04d-", nr
);
576 len
+= snprintf(filename
+ len
, sizeof(filename
) - len
- 1
577 - suffix_len
, "%s", oneline
);
578 strcpy(filename
+ len
, fmt_patch_suffix
);
581 fprintf(realstdout
, "%s\n", filename
);
582 if (freopen(filename
, "w", stdout
) == NULL
)
583 return error("Cannot open patch file %s",filename
);
588 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
, const char *prefix
)
590 struct rev_info check_rev
;
591 struct commit
*commit
;
592 struct object
*o1
, *o2
;
593 unsigned flags1
, flags2
;
595 if (rev
->pending
.nr
!= 2)
596 die("Need exactly one range.");
598 o1
= rev
->pending
.objects
[0].item
;
600 o2
= rev
->pending
.objects
[1].item
;
603 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
608 /* given a range a..b get all patch ids for b..a */
609 init_revisions(&check_rev
, prefix
);
610 o1
->flags
^= UNINTERESTING
;
611 o2
->flags
^= UNINTERESTING
;
612 add_pending_object(&check_rev
, o1
, "o1");
613 add_pending_object(&check_rev
, o2
, "o2");
614 if (prepare_revision_walk(&check_rev
))
615 die("revision walk setup failed");
617 while ((commit
= get_revision(&check_rev
)) != NULL
) {
619 if (commit
->parents
&& commit
->parents
->next
)
622 add_commit_patch_id(commit
, ids
);
625 /* reset for next revision walk */
626 clear_commit_marks((struct commit
*)o1
,
627 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
628 clear_commit_marks((struct commit
*)o2
,
629 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
634 static void gen_message_id(struct rev_info
*info
, char *base
)
636 const char *committer
= git_committer_info(IDENT_WARN_ON_NO_NAME
);
637 const char *email_start
= strrchr(committer
, '<');
638 const char *email_end
= strrchr(committer
, '>');
640 if (!email_start
|| !email_end
|| email_start
> email_end
- 1)
641 die("Could not extract email from committer identity.");
642 strbuf_init(&buf
, 0);
643 strbuf_addf(&buf
, "%s.%lu.git.%.*s", base
,
644 (unsigned long) time(NULL
),
645 (int)(email_end
- email_start
- 1), email_start
+ 1);
646 info
->message_id
= strbuf_detach(&buf
, NULL
);
649 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
650 int numbered
, int numbered_files
,
651 struct commit
*origin
,
652 int nr
, struct commit
**list
, struct commit
*head
)
654 const char *committer
;
656 const char *subject_start
= NULL
;
657 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
659 const char *extra_headers
= rev
->extra_headers
;
663 const char *encoding
= "utf-8";
664 struct diff_options opts
;
666 if (rev
->commit_format
!= CMIT_FMT_EMAIL
)
667 die("Cover letter needs email format");
669 if (!use_stdout
&& reopen_stdout(numbered_files
?
670 NULL
: "cover-letter", 0, rev
->total
))
673 head_sha1
= sha1_to_hex(head
->object
.sha1
);
675 log_write_email_headers(rev
, head_sha1
, &subject_start
, &extra_headers
);
677 committer
= git_committer_info(0);
681 pp_user_info(NULL
, CMIT_FMT_EMAIL
, &sb
, committer
, DATE_RFC2822
,
683 pp_title_line(CMIT_FMT_EMAIL
, &msg
, &sb
, subject_start
, extra_headers
,
685 pp_remainder(CMIT_FMT_EMAIL
, &msg
, &sb
, 0);
686 printf("%s\n", sb
.buf
);
695 for (i
= 0; i
< nr
; i
++)
696 shortlog_add_commit(&log
, list
[i
]);
698 shortlog_output(&log
);
701 * We can only do diffstat with a unique reference point
706 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
707 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
709 diff_setup_done(&opts
);
711 diff_tree_sha1(origin
->tree
->object
.sha1
,
712 head
->tree
->object
.sha1
,
720 static const char *clean_message_id(const char *msg_id
)
723 const char *a
, *z
, *m
;
726 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
731 if (!isspace(ch
) && (ch
!= '>'))
736 die("insane in-reply-to: %s", msg_id
);
739 return xmemdupz(a
, z
- a
);
742 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
744 struct commit
*commit
;
745 struct commit
**list
= NULL
;
747 int nr
= 0, total
, i
, j
;
749 int start_number
= -1;
750 int keep_subject
= 0;
751 int numbered_files
= 0; /* _just_ numbers */
752 int subject_prefix
= 0;
753 int ignore_if_in_upstream
= 0;
755 int cover_letter
= 0;
756 int boundary_count
= 0;
757 struct commit
*origin
= NULL
, *head
= NULL
;
758 const char *in_reply_to
= NULL
;
759 struct patch_ids ids
;
760 char *add_signoff
= NULL
;
763 git_config(git_format_config
);
764 init_revisions(&rev
, prefix
);
765 rev
.commit_format
= CMIT_FMT_EMAIL
;
766 rev
.verbose_header
= 1;
768 rev
.combine_merges
= 0;
769 rev
.ignore_merges
= 1;
770 rev
.diffopt
.msg_sep
= "";
771 DIFF_OPT_SET(&rev
.diffopt
, RECURSIVE
);
773 rev
.subject_prefix
= fmt_patch_subject_prefix
;
776 * Parse the arguments before setup_revisions(), or something
777 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
778 * possibly a valid SHA1.
780 for (i
= 1, j
= 1; i
< argc
; i
++) {
781 if (!strcmp(argv
[i
], "--stdout"))
783 else if (!strcmp(argv
[i
], "-n") ||
784 !strcmp(argv
[i
], "--numbered"))
786 else if (!strcmp(argv
[i
], "-N") ||
787 !strcmp(argv
[i
], "--no-numbered")) {
791 else if (!prefixcmp(argv
[i
], "--start-number="))
792 start_number
= strtol(argv
[i
] + 15, NULL
, 10);
793 else if (!strcmp(argv
[i
], "--numbered-files"))
795 else if (!strcmp(argv
[i
], "--start-number")) {
798 die("Need a number for --start-number");
799 start_number
= strtol(argv
[i
], NULL
, 10);
801 else if (!prefixcmp(argv
[i
], "--cc=")) {
802 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
803 extra_cc
[extra_cc_nr
++] = xstrdup(argv
[i
] + 5);
805 else if (!strcmp(argv
[i
], "-k") ||
806 !strcmp(argv
[i
], "--keep-subject")) {
810 else if (!strcmp(argv
[i
], "--output-directory") ||
811 !strcmp(argv
[i
], "-o")) {
814 die("Which directory?");
815 if (output_directory
)
816 die("Two output directories?");
817 output_directory
= argv
[i
];
819 else if (!strcmp(argv
[i
], "--signoff") ||
820 !strcmp(argv
[i
], "-s")) {
821 const char *committer
;
823 committer
= git_committer_info(IDENT_ERROR_ON_NO_NAME
);
824 endpos
= strchr(committer
, '>');
826 die("bogos committer info %s\n", committer
);
827 add_signoff
= xmemdupz(committer
, endpos
- committer
+ 1);
829 else if (!strcmp(argv
[i
], "--attach")) {
830 rev
.mime_boundary
= git_version_string
;
833 else if (!prefixcmp(argv
[i
], "--attach=")) {
834 rev
.mime_boundary
= argv
[i
] + 9;
837 else if (!strcmp(argv
[i
], "--inline")) {
838 rev
.mime_boundary
= git_version_string
;
841 else if (!prefixcmp(argv
[i
], "--inline=")) {
842 rev
.mime_boundary
= argv
[i
] + 9;
845 else if (!strcmp(argv
[i
], "--ignore-if-in-upstream"))
846 ignore_if_in_upstream
= 1;
847 else if (!strcmp(argv
[i
], "--thread"))
849 else if (!prefixcmp(argv
[i
], "--in-reply-to="))
850 in_reply_to
= argv
[i
] + 14;
851 else if (!strcmp(argv
[i
], "--in-reply-to")) {
854 die("Need a Message-Id for --in-reply-to");
855 in_reply_to
= argv
[i
];
856 } else if (!prefixcmp(argv
[i
], "--subject-prefix=")) {
858 rev
.subject_prefix
= argv
[i
] + 17;
859 } else if (!prefixcmp(argv
[i
], "--suffix="))
860 fmt_patch_suffix
= argv
[i
] + 9;
861 else if (!strcmp(argv
[i
], "--cover-letter"))
868 strbuf_init(&buf
, 0);
870 for (i
= 0; i
< extra_hdr_nr
; i
++) {
871 strbuf_addstr(&buf
, extra_hdr
[i
]);
872 strbuf_addch(&buf
, '\n');
876 strbuf_addstr(&buf
, "To: ");
877 for (i
= 0; i
< extra_to_nr
; i
++) {
879 strbuf_addstr(&buf
, " ");
880 strbuf_addstr(&buf
, extra_to
[i
]);
881 if (i
+ 1 < extra_to_nr
)
882 strbuf_addch(&buf
, ',');
883 strbuf_addch(&buf
, '\n');
887 strbuf_addstr(&buf
, "Cc: ");
888 for (i
= 0; i
< extra_cc_nr
; i
++) {
890 strbuf_addstr(&buf
, " ");
891 strbuf_addstr(&buf
, extra_cc
[i
]);
892 if (i
+ 1 < extra_cc_nr
)
893 strbuf_addch(&buf
, ',');
894 strbuf_addch(&buf
, '\n');
897 rev
.extra_headers
= strbuf_detach(&buf
, 0);
899 if (start_number
< 0)
901 if (numbered
&& keep_subject
)
902 die ("-n and -k are mutually exclusive.");
903 if (keep_subject
&& subject_prefix
)
904 die ("--subject-prefix and -k are mutually exclusive.");
905 if (numbered_files
&& use_stdout
)
906 die ("--numbered-files and --stdout are mutually exclusive.");
908 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
910 die ("unrecognized argument: %s", argv
[1]);
912 if (!rev
.diffopt
.output_format
)
913 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_PATCH
;
915 if (!DIFF_OPT_TST(&rev
.diffopt
, TEXT
))
916 DIFF_OPT_SET(&rev
.diffopt
, BINARY
);
918 if (!output_directory
&& !use_stdout
)
919 output_directory
= prefix
;
921 if (output_directory
) {
923 die("standard output, or directory, which one?");
924 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
925 die("Could not create directory %s",
929 if (rev
.pending
.nr
== 1) {
930 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
932 * This is traditional behaviour of "git format-patch
933 * origin" that prepares what the origin side still
936 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
937 add_head_to_pending(&rev
);
940 * Otherwise, it is "format-patch -22 HEAD", and/or
941 * "format-patch --root HEAD". The user wants
942 * get_revision() to do the usual traversal.
946 /* remember the range */
948 for (i
= 0; i
< rev
.pending
.nr
; i
++) {
949 struct object
*o
= rev
.pending
.objects
[i
].item
;
950 if (!(o
->flags
& UNINTERESTING
))
951 head
= (struct commit
*)o
;
953 /* We can't generate a cover letter without any patches */
958 if (ignore_if_in_upstream
)
959 get_patch_ids(&rev
, &ids
, prefix
);
962 realstdout
= xfdopen(xdup(1), "w");
964 if (prepare_revision_walk(&rev
))
965 die("revision walk setup failed");
967 while ((commit
= get_revision(&rev
)) != NULL
) {
968 if (commit
->object
.flags
& BOUNDARY
) {
970 origin
= (boundary_count
== 1) ? commit
: NULL
;
975 if (commit
->parents
&& commit
->parents
->next
)
978 if (ignore_if_in_upstream
&&
979 has_commit_patch_id(commit
, &ids
))
983 list
= xrealloc(list
, nr
* sizeof(list
[0]));
984 list
[nr
- 1] = commit
;
987 if (!keep_subject
&& auto_number
&& total
> 1)
990 rev
.total
= total
+ start_number
- 1;
992 rev
.ref_message_id
= clean_message_id(in_reply_to
);
995 gen_message_id(&rev
, "cover");
996 make_cover_letter(&rev
, use_stdout
, numbered
, numbered_files
,
997 origin
, nr
, list
, head
);
1001 rev
.add_signoff
= add_signoff
;
1005 rev
.nr
= total
- nr
+ (start_number
- 1);
1006 /* Make the second and subsequent mails replies to the first */
1008 /* Have we already had a message ID? */
1009 if (rev
.message_id
) {
1011 * If we've got the ID to be a reply
1012 * to, discard the current ID;
1013 * otherwise, make everything a reply
1016 if (rev
.ref_message_id
)
1017 free(rev
.message_id
);
1019 rev
.ref_message_id
= rev
.message_id
;
1021 gen_message_id(&rev
, sha1_to_hex(commit
->object
.sha1
));
1023 if (!use_stdout
&& reopen_stdout(numbered_files
? NULL
:
1024 get_oneline_for_filename(commit
, keep_subject
),
1026 die("Failed to create output files");
1027 shown
= log_tree_commit(&rev
, commit
);
1028 free(commit
->buffer
);
1029 commit
->buffer
= NULL
;
1031 /* We put one extra blank line between formatted
1032 * patches and this flag is used by log-tree code
1033 * to see if it needs to emit a LF before showing
1034 * the log; when using one file per patch, we do
1035 * not want the extra blank line.
1040 if (rev
.mime_boundary
)
1041 printf("\n--%s%s--\n\n\n",
1042 mime_boundary_leader
,
1045 printf("-- \n%s\n\n", git_version_string
);
1051 if (ignore_if_in_upstream
)
1052 free_patch_ids(&ids
);
1056 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1058 unsigned char sha1
[20];
1059 if (get_sha1(arg
, sha1
) == 0) {
1060 struct commit
*commit
= lookup_commit_reference(sha1
);
1062 commit
->object
.flags
|= flags
;
1063 add_pending_object(revs
, &commit
->object
, arg
);
1070 static const char cherry_usage
[] =
1071 "git-cherry [-v] <upstream> [<head>] [<limit>]";
1072 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
1074 struct rev_info revs
;
1075 struct patch_ids ids
;
1076 struct commit
*commit
;
1077 struct commit_list
*list
= NULL
;
1078 const char *upstream
;
1079 const char *head
= "HEAD";
1080 const char *limit
= NULL
;
1083 if (argc
> 1 && !strcmp(argv
[1], "-v")) {
1100 usage(cherry_usage
);
1103 init_revisions(&revs
, prefix
);
1105 revs
.combine_merges
= 0;
1106 revs
.ignore_merges
= 1;
1107 DIFF_OPT_SET(&revs
.diffopt
, RECURSIVE
);
1109 if (add_pending_commit(head
, &revs
, 0))
1110 die("Unknown commit %s", head
);
1111 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
1112 die("Unknown commit %s", upstream
);
1114 /* Don't say anything if head and upstream are the same. */
1115 if (revs
.pending
.nr
== 2) {
1116 struct object_array_entry
*o
= revs
.pending
.objects
;
1117 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
1121 get_patch_ids(&revs
, &ids
, prefix
);
1123 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
1124 die("Unknown commit %s", limit
);
1126 /* reverse the list of commits */
1127 if (prepare_revision_walk(&revs
))
1128 die("revision walk setup failed");
1129 while ((commit
= get_revision(&revs
)) != NULL
) {
1131 if (commit
->parents
&& commit
->parents
->next
)
1134 commit_list_insert(commit
, &list
);
1140 commit
= list
->item
;
1141 if (has_commit_patch_id(commit
, &ids
))
1146 strbuf_init(&buf
, 0);
1147 pretty_print_commit(CMIT_FMT_ONELINE
, commit
,
1148 &buf
, 0, NULL
, NULL
, 0, 0);
1149 printf("%c %s %s\n", sign
,
1150 sha1_to_hex(commit
->object
.sha1
), buf
.buf
);
1151 strbuf_release(&buf
);
1154 printf("%c %s\n", sign
,
1155 sha1_to_hex(commit
->object
.sha1
));
1161 free_patch_ids(&ids
);