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"
21 /* Set a default date-time format for git log ("log.date" config variable) */
22 static const char *default_date_mode
= NULL
;
24 static int default_show_root
= 1;
25 static const char *fmt_patch_subject_prefix
= "PATCH";
26 static const char *fmt_pretty
;
28 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
33 rev
->abbrev
= DEFAULT_ABBREV
;
34 rev
->commit_format
= CMIT_FMT_DEFAULT
;
36 get_commit_format(fmt_pretty
, rev
);
37 rev
->verbose_header
= 1;
38 DIFF_OPT_SET(&rev
->diffopt
, RECURSIVE
);
39 rev
->show_root_diff
= default_show_root
;
40 rev
->subject_prefix
= fmt_patch_subject_prefix
;
41 DIFF_OPT_SET(&rev
->diffopt
, ALLOW_TEXTCONV
);
43 if (default_date_mode
)
44 rev
->date_mode
= parse_date_format(default_date_mode
);
46 argc
= setup_revisions(argc
, argv
, rev
, "HEAD");
48 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
)
49 rev
->always_show_header
= 0;
50 if (DIFF_OPT_TST(&rev
->diffopt
, FOLLOW_RENAMES
)) {
51 rev
->always_show_header
= 0;
52 if (rev
->diffopt
.nr_paths
!= 1)
53 usage("git logs can only follow renames on one pathname at a time");
55 for (i
= 1; i
< argc
; i
++) {
56 const char *arg
= argv
[i
];
57 if (!strcmp(arg
, "--decorate")) {
58 load_ref_decorations();
59 rev
->show_decorations
= 1;
60 } else if (!strcmp(arg
, "--source")) {
63 die("unrecognized argument: %s", arg
);
68 * This gives a rough estimate for how many commits we
69 * will print out in the list.
71 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
76 struct commit
*commit
= list
->item
;
77 unsigned int flags
= commit
->object
.flags
;
79 if (!(flags
& (TREESAME
| UNINTERESTING
)))
85 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
89 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
90 putchar(rev
->diffopt
.line_termination
);
92 printf("Final output: %d %s\n", nr
, stage
);
95 struct itimerval early_output_timer
;
97 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
99 int i
= revs
->early_output
;
102 sort_in_topological_order(&list
, revs
->lifo
);
104 struct commit
*commit
= list
->item
;
105 switch (simplify_commit(revs
, commit
)) {
108 int n
= estimate_commit_count(revs
, list
);
109 show_early_header(revs
, "incomplete", n
);
112 log_tree_commit(revs
, commit
);
123 /* Did we already get enough commits for the early output? */
128 * ..if no, then repeat it twice a second until we
131 * NOTE! We don't use "it_interval", because if the
132 * reader isn't listening, we want our output to be
133 * throttled by the writing, and not have the timer
134 * trigger every second even if we're blocked on a
137 early_output_timer
.it_value
.tv_sec
= 0;
138 early_output_timer
.it_value
.tv_usec
= 500000;
139 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
142 static void early_output(int signal
)
144 show_early_output
= log_show_early
;
147 static void setup_early_output(struct rev_info
*rev
)
152 * Set up the signal handler, minimally intrusively:
153 * we only set a single volatile integer word (not
154 * using sigatomic_t - trying to avoid unnecessary
155 * system dependencies and headers), and using
158 memset(&sa
, 0, sizeof(sa
));
159 sa
.sa_handler
= early_output
;
160 sigemptyset(&sa
.sa_mask
);
161 sa
.sa_flags
= SA_RESTART
;
162 sigaction(SIGALRM
, &sa
, NULL
);
165 * If we can get the whole output in less than a
166 * tenth of a second, don't even bother doing the
167 * early-output thing..
169 * This is a one-time-only trigger.
171 early_output_timer
.it_value
.tv_sec
= 0;
172 early_output_timer
.it_value
.tv_usec
= 100000;
173 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
176 static void finish_early_output(struct rev_info
*rev
)
178 int n
= estimate_commit_count(rev
, rev
->commits
);
179 signal(SIGALRM
, SIG_IGN
);
180 show_early_header(rev
, "done", n
);
183 static int cmd_log_walk(struct rev_info
*rev
)
185 struct commit
*commit
;
187 if (rev
->early_output
)
188 setup_early_output(rev
);
190 if (prepare_revision_walk(rev
))
191 die("revision walk setup failed");
193 if (rev
->early_output
)
194 finish_early_output(rev
);
197 * For --check and --exit-code, the exit code is based on CHECK_FAILED
198 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
199 * retain that state information if replacing rev->diffopt in this loop
201 while ((commit
= get_revision(rev
)) != NULL
) {
202 log_tree_commit(rev
, commit
);
203 if (!rev
->reflog_info
) {
204 /* we allow cycles in reflog ancestry */
205 free(commit
->buffer
);
206 commit
->buffer
= NULL
;
208 free_commit_list(commit
->parents
);
209 commit
->parents
= NULL
;
211 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
212 DIFF_OPT_TST(&rev
->diffopt
, CHECK_FAILED
)) {
215 return diff_result_code(&rev
->diffopt
, 0);
218 static int git_log_config(const char *var
, const char *value
, void *cb
)
220 if (!strcmp(var
, "format.pretty"))
221 return git_config_string(&fmt_pretty
, var
, value
);
222 if (!strcmp(var
, "format.subjectprefix"))
223 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
224 if (!strcmp(var
, "log.date"))
225 return git_config_string(&default_date_mode
, var
, value
);
226 if (!strcmp(var
, "log.showroot")) {
227 default_show_root
= git_config_bool(var
, value
);
230 return git_diff_ui_config(var
, value
, cb
);
233 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
237 git_config(git_log_config
, NULL
);
239 if (diff_use_color_default
== -1)
240 diff_use_color_default
= git_use_color_default
;
242 init_revisions(&rev
, prefix
);
244 rev
.simplify_history
= 0;
245 cmd_log_init(argc
, argv
, prefix
, &rev
);
246 if (!rev
.diffopt
.output_format
)
247 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
248 return cmd_log_walk(&rev
);
251 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
257 email_end
= memchr(buf
, '>', len
);
263 date
= strtoul(p
, &p
, 10);
266 tz
= (int)strtol(p
, NULL
, 10);
267 printf("Tagger: %.*s\nDate: %s\n", (int)(email_end
- buf
), buf
,
268 show_date(date
, tz
, rev
->date_mode
));
271 static int show_object(const unsigned char *sha1
, int show_tag_object
,
272 struct rev_info
*rev
)
275 enum object_type type
;
276 char *buf
= read_sha1_file(sha1
, &type
, &size
);
280 return error("Could not read object %s", sha1_to_hex(sha1
));
283 while (offset
< size
&& buf
[offset
] != '\n') {
284 int new_offset
= offset
+ 1;
285 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
287 if (!prefixcmp(buf
+ offset
, "tagger "))
288 show_tagger(buf
+ offset
+ 7,
289 new_offset
- offset
- 7, rev
);
294 fwrite(buf
+ offset
, size
- offset
, 1, stdout
);
299 static int show_tree_object(const unsigned char *sha1
,
300 const char *base
, int baselen
,
301 const char *pathname
, unsigned mode
, int stage
, void *context
)
303 printf("%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
307 int cmd_show(int argc
, const char **argv
, const char *prefix
)
310 struct object_array_entry
*objects
;
311 int i
, count
, ret
= 0;
313 git_config(git_log_config
, NULL
);
315 if (diff_use_color_default
== -1)
316 diff_use_color_default
= git_use_color_default
;
318 init_revisions(&rev
, prefix
);
320 rev
.combine_merges
= 1;
321 rev
.dense_combined_merges
= 1;
322 rev
.always_show_header
= 1;
323 rev
.ignore_merges
= 0;
325 cmd_log_init(argc
, argv
, prefix
, &rev
);
327 count
= rev
.pending
.nr
;
328 objects
= rev
.pending
.objects
;
329 for (i
= 0; i
< count
&& !ret
; i
++) {
330 struct object
*o
= objects
[i
].item
;
331 const char *name
= objects
[i
].name
;
334 ret
= show_object(o
->sha1
, 0, NULL
);
337 struct tag
*t
= (struct tag
*)o
;
339 printf("%stag %s%s\n",
340 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
342 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
343 ret
= show_object(o
->sha1
, 1, &rev
);
346 o
= parse_object(t
->tagged
->sha1
);
348 ret
= error("Could not read object %s",
349 sha1_to_hex(t
->tagged
->sha1
));
355 printf("%stree %s%s\n\n",
356 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
358 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
359 read_tree_recursive((struct tree
*)o
, "", 0, 0, NULL
,
360 show_tree_object
, NULL
);
363 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
364 rev
.pending
.objects
= NULL
;
365 add_object_array(o
, name
, &rev
.pending
);
366 ret
= cmd_log_walk(&rev
);
369 ret
= error("Unknown type: %d", o
->type
);
377 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
379 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
383 git_config(git_log_config
, NULL
);
385 if (diff_use_color_default
== -1)
386 diff_use_color_default
= git_use_color_default
;
388 init_revisions(&rev
, prefix
);
389 init_reflog_walk(&rev
.reflog_info
);
390 rev
.abbrev_commit
= 1;
391 rev
.verbose_header
= 1;
392 cmd_log_init(argc
, argv
, prefix
, &rev
);
395 * This means that we override whatever commit format the user gave
396 * on the cmd line. Sad, but cmd_log_init() currently doesn't
397 * allow us to set a different default.
399 rev
.commit_format
= CMIT_FMT_ONELINE
;
400 rev
.use_terminator
= 1;
401 rev
.always_show_header
= 1;
404 * We get called through "git reflog", so unlike the other log
405 * routines, we need to set up our pager manually..
409 return cmd_log_walk(&rev
);
412 int cmd_log(int argc
, const char **argv
, const char *prefix
)
416 git_config(git_log_config
, NULL
);
418 if (diff_use_color_default
== -1)
419 diff_use_color_default
= git_use_color_default
;
421 init_revisions(&rev
, prefix
);
422 rev
.always_show_header
= 1;
423 cmd_log_init(argc
, argv
, prefix
, &rev
);
424 return cmd_log_walk(&rev
);
428 #define FORMAT_PATCH_NAME_MAX 64
430 static int istitlechar(char c
)
432 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') ||
433 (c
>= '0' && c
<= '9') || c
== '.' || c
== '_';
436 static const char *fmt_patch_suffix
= ".patch";
437 static int numbered
= 0;
438 static int auto_number
= 1;
440 static char **extra_hdr
;
441 static int extra_hdr_nr
;
442 static int extra_hdr_alloc
;
444 static char **extra_to
;
445 static int extra_to_nr
;
446 static int extra_to_alloc
;
448 static char **extra_cc
;
449 static int extra_cc_nr
;
450 static int extra_cc_alloc
;
452 static void add_header(const char *value
)
454 int len
= strlen(value
);
455 while (len
&& value
[len
- 1] == '\n')
457 if (!strncasecmp(value
, "to: ", 4)) {
458 ALLOC_GROW(extra_to
, extra_to_nr
+ 1, extra_to_alloc
);
459 extra_to
[extra_to_nr
++] = xstrndup(value
+ 4, len
- 4);
462 if (!strncasecmp(value
, "cc: ", 4)) {
463 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
464 extra_cc
[extra_cc_nr
++] = xstrndup(value
+ 4, len
- 4);
467 ALLOC_GROW(extra_hdr
, extra_hdr_nr
+ 1, extra_hdr_alloc
);
468 extra_hdr
[extra_hdr_nr
++] = xstrndup(value
, len
);
471 static int git_format_config(const char *var
, const char *value
, void *cb
)
473 if (!strcmp(var
, "format.headers")) {
475 die("format.headers without value");
479 if (!strcmp(var
, "format.suffix"))
480 return git_config_string(&fmt_patch_suffix
, var
, value
);
481 if (!strcmp(var
, "format.cc")) {
483 return config_error_nonbool(var
);
484 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
485 extra_cc
[extra_cc_nr
++] = xstrdup(value
);
488 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
491 if (!strcmp(var
, "format.numbered")) {
492 if (value
&& !strcasecmp(value
, "auto")) {
496 numbered
= git_config_bool(var
, value
);
497 auto_number
= auto_number
&& numbered
;
501 return git_log_config(var
, value
, cb
);
505 static const char *get_oneline_for_filename(struct commit
*commit
,
508 static char filename
[PATH_MAX
];
511 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
513 sol
= strstr(commit
->buffer
, "\n\n");
520 /* strip [PATCH] or [PATCH blabla] */
521 if (!keep_subject
&& !prefixcmp(sol
, "[PATCH")) {
522 char *eos
= strchr(sol
+ 6, ']');
524 while (isspace(*eos
))
531 j
< FORMAT_PATCH_NAME_MAX
- suffix_len
- 5 &&
532 len
< sizeof(filename
) - suffix_len
&&
533 sol
[j
] && sol
[j
] != '\n';
535 if (istitlechar(sol
[j
])) {
537 filename
[len
++] = '-';
540 filename
[len
++] = sol
[j
];
542 while (sol
[j
+ 1] == '.')
547 while (filename
[len
- 1] == '.'
548 || filename
[len
- 1] == '-')
550 filename
[len
] = '\0';
555 static FILE *realstdout
= NULL
;
556 static const char *output_directory
= NULL
;
558 static int reopen_stdout(const char *oneline
, int nr
, int total
)
560 char filename
[PATH_MAX
];
562 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
564 if (output_directory
) {
565 len
= snprintf(filename
, sizeof(filename
), "%s",
568 sizeof(filename
) - FORMAT_PATCH_NAME_MAX
- suffix_len
)
569 return error("name of output directory is too long");
570 if (filename
[len
- 1] != '/')
571 filename
[len
++] = '/';
575 len
+= sprintf(filename
+ len
, "%d", nr
);
577 len
+= sprintf(filename
+ len
, "%04d-", nr
);
578 len
+= snprintf(filename
+ len
, sizeof(filename
) - len
- 1
579 - suffix_len
, "%s", oneline
);
580 strcpy(filename
+ len
, fmt_patch_suffix
);
583 fprintf(realstdout
, "%s\n", filename
);
584 if (freopen(filename
, "w", stdout
) == NULL
)
585 return error("Cannot open patch file %s",filename
);
590 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
, const char *prefix
)
592 struct rev_info check_rev
;
593 struct commit
*commit
;
594 struct object
*o1
, *o2
;
595 unsigned flags1
, flags2
;
597 if (rev
->pending
.nr
!= 2)
598 die("Need exactly one range.");
600 o1
= rev
->pending
.objects
[0].item
;
602 o2
= rev
->pending
.objects
[1].item
;
605 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
610 /* given a range a..b get all patch ids for b..a */
611 init_revisions(&check_rev
, prefix
);
612 o1
->flags
^= UNINTERESTING
;
613 o2
->flags
^= UNINTERESTING
;
614 add_pending_object(&check_rev
, o1
, "o1");
615 add_pending_object(&check_rev
, o2
, "o2");
616 if (prepare_revision_walk(&check_rev
))
617 die("revision walk setup failed");
619 while ((commit
= get_revision(&check_rev
)) != NULL
) {
621 if (commit
->parents
&& commit
->parents
->next
)
624 add_commit_patch_id(commit
, ids
);
627 /* reset for next revision walk */
628 clear_commit_marks((struct commit
*)o1
,
629 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
630 clear_commit_marks((struct commit
*)o2
,
631 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
636 static void gen_message_id(struct rev_info
*info
, char *base
)
638 const char *committer
= git_committer_info(IDENT_WARN_ON_NO_NAME
);
639 const char *email_start
= strrchr(committer
, '<');
640 const char *email_end
= strrchr(committer
, '>');
641 struct strbuf buf
= STRBUF_INIT
;
642 if (!email_start
|| !email_end
|| email_start
> email_end
- 1)
643 die("Could not extract email from committer identity.");
644 strbuf_addf(&buf
, "%s.%lu.git.%.*s", base
,
645 (unsigned long) time(NULL
),
646 (int)(email_end
- email_start
- 1), email_start
+ 1);
647 info
->message_id
= strbuf_detach(&buf
, NULL
);
650 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
651 int numbered
, int numbered_files
,
652 struct commit
*origin
,
653 int nr
, struct commit
**list
, struct commit
*head
)
655 const char *committer
;
657 const char *subject_start
= NULL
;
658 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
660 const char *extra_headers
= rev
->extra_headers
;
662 struct strbuf sb
= STRBUF_INIT
;
664 const char *encoding
= "utf-8";
665 struct diff_options opts
;
666 int need_8bit_cte
= 0;
668 if (rev
->commit_format
!= CMIT_FMT_EMAIL
)
669 die("Cover letter needs email format");
671 if (!use_stdout
&& reopen_stdout(numbered_files
?
672 NULL
: "cover-letter", 0, rev
->total
))
675 head_sha1
= sha1_to_hex(head
->object
.sha1
);
677 log_write_email_headers(rev
, head_sha1
, &subject_start
, &extra_headers
,
680 committer
= git_committer_info(0);
683 pp_user_info(NULL
, CMIT_FMT_EMAIL
, &sb
, committer
, DATE_RFC2822
,
685 pp_title_line(CMIT_FMT_EMAIL
, &msg
, &sb
, subject_start
, extra_headers
,
686 encoding
, need_8bit_cte
);
687 pp_remainder(CMIT_FMT_EMAIL
, &msg
, &sb
, 0);
688 printf("%s\n", sb
.buf
);
697 for (i
= 0; i
< nr
; i
++)
698 shortlog_add_commit(&log
, list
[i
]);
700 shortlog_output(&log
);
703 * We can only do diffstat with a unique reference point
708 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
709 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
711 diff_setup_done(&opts
);
713 diff_tree_sha1(origin
->tree
->object
.sha1
,
714 head
->tree
->object
.sha1
,
722 static const char *clean_message_id(const char *msg_id
)
725 const char *a
, *z
, *m
;
728 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
733 if (!isspace(ch
) && (ch
!= '>'))
738 die("insane in-reply-to: %s", msg_id
);
741 return xmemdupz(a
, z
- a
);
744 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
746 struct commit
*commit
;
747 struct commit
**list
= NULL
;
749 int nr
= 0, total
, i
, j
;
751 int start_number
= -1;
752 int keep_subject
= 0;
753 int numbered_files
= 0; /* _just_ numbers */
754 int subject_prefix
= 0;
755 int ignore_if_in_upstream
= 0;
757 int cover_letter
= 0;
758 int boundary_count
= 0;
759 int no_binary_diff
= 0;
760 struct commit
*origin
= NULL
, *head
= NULL
;
761 const char *in_reply_to
= NULL
;
762 struct patch_ids ids
;
763 char *add_signoff
= NULL
;
764 struct strbuf buf
= STRBUF_INIT
;
766 git_config(git_format_config
, NULL
);
767 init_revisions(&rev
, prefix
);
768 rev
.commit_format
= CMIT_FMT_EMAIL
;
769 rev
.verbose_header
= 1;
771 rev
.combine_merges
= 0;
772 rev
.ignore_merges
= 1;
773 DIFF_OPT_SET(&rev
.diffopt
, RECURSIVE
);
775 rev
.subject_prefix
= fmt_patch_subject_prefix
;
778 * Parse the arguments before setup_revisions(), or something
779 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
780 * possibly a valid SHA1.
782 for (i
= 1, j
= 1; i
< argc
; i
++) {
783 if (!strcmp(argv
[i
], "--stdout"))
785 else if (!strcmp(argv
[i
], "-n") ||
786 !strcmp(argv
[i
], "--numbered"))
788 else if (!strcmp(argv
[i
], "-N") ||
789 !strcmp(argv
[i
], "--no-numbered")) {
793 else if (!prefixcmp(argv
[i
], "--start-number="))
794 start_number
= strtol(argv
[i
] + 15, NULL
, 10);
795 else if (!strcmp(argv
[i
], "--numbered-files"))
797 else if (!strcmp(argv
[i
], "--start-number")) {
800 die("Need a number for --start-number");
801 start_number
= strtol(argv
[i
], NULL
, 10);
803 else if (!prefixcmp(argv
[i
], "--cc=")) {
804 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
805 extra_cc
[extra_cc_nr
++] = xstrdup(argv
[i
] + 5);
807 else if (!strcmp(argv
[i
], "-k") ||
808 !strcmp(argv
[i
], "--keep-subject")) {
812 else if (!strcmp(argv
[i
], "--output-directory") ||
813 !strcmp(argv
[i
], "-o")) {
816 die("Which directory?");
817 if (output_directory
)
818 die("Two output directories?");
819 output_directory
= argv
[i
];
821 else if (!strcmp(argv
[i
], "--signoff") ||
822 !strcmp(argv
[i
], "-s")) {
823 const char *committer
;
825 committer
= git_committer_info(IDENT_ERROR_ON_NO_NAME
);
826 endpos
= strchr(committer
, '>');
828 die("bogus committer info %s\n", committer
);
829 add_signoff
= xmemdupz(committer
, endpos
- committer
+ 1);
831 else if (!strcmp(argv
[i
], "--attach")) {
832 rev
.mime_boundary
= git_version_string
;
835 else if (!prefixcmp(argv
[i
], "--attach=")) {
836 rev
.mime_boundary
= argv
[i
] + 9;
839 else if (!strcmp(argv
[i
], "--inline")) {
840 rev
.mime_boundary
= git_version_string
;
843 else if (!prefixcmp(argv
[i
], "--inline=")) {
844 rev
.mime_boundary
= argv
[i
] + 9;
847 else if (!strcmp(argv
[i
], "--ignore-if-in-upstream"))
848 ignore_if_in_upstream
= 1;
849 else if (!strcmp(argv
[i
], "--thread"))
851 else if (!prefixcmp(argv
[i
], "--in-reply-to="))
852 in_reply_to
= argv
[i
] + 14;
853 else if (!strcmp(argv
[i
], "--in-reply-to")) {
856 die("Need a Message-Id for --in-reply-to");
857 in_reply_to
= argv
[i
];
858 } else if (!prefixcmp(argv
[i
], "--subject-prefix=")) {
860 rev
.subject_prefix
= argv
[i
] + 17;
861 } else if (!prefixcmp(argv
[i
], "--suffix="))
862 fmt_patch_suffix
= argv
[i
] + 9;
863 else if (!strcmp(argv
[i
], "--cover-letter"))
865 else if (!strcmp(argv
[i
], "--no-binary"))
872 for (i
= 0; i
< extra_hdr_nr
; i
++) {
873 strbuf_addstr(&buf
, extra_hdr
[i
]);
874 strbuf_addch(&buf
, '\n');
878 strbuf_addstr(&buf
, "To: ");
879 for (i
= 0; i
< extra_to_nr
; i
++) {
881 strbuf_addstr(&buf
, " ");
882 strbuf_addstr(&buf
, extra_to
[i
]);
883 if (i
+ 1 < extra_to_nr
)
884 strbuf_addch(&buf
, ',');
885 strbuf_addch(&buf
, '\n');
889 strbuf_addstr(&buf
, "Cc: ");
890 for (i
= 0; i
< extra_cc_nr
; i
++) {
892 strbuf_addstr(&buf
, " ");
893 strbuf_addstr(&buf
, extra_cc
[i
]);
894 if (i
+ 1 < extra_cc_nr
)
895 strbuf_addch(&buf
, ',');
896 strbuf_addch(&buf
, '\n');
899 rev
.extra_headers
= strbuf_detach(&buf
, 0);
901 if (start_number
< 0)
903 if (numbered
&& keep_subject
)
904 die ("-n and -k are mutually exclusive.");
905 if (keep_subject
&& subject_prefix
)
906 die ("--subject-prefix and -k are mutually exclusive.");
907 if (numbered_files
&& use_stdout
)
908 die ("--numbered-files and --stdout are mutually exclusive.");
910 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
912 die ("unrecognized argument: %s", argv
[1]);
914 if (!rev
.diffopt
.output_format
915 || rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
)
916 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_PATCH
;
918 if (!DIFF_OPT_TST(&rev
.diffopt
, TEXT
) && !no_binary_diff
)
919 DIFF_OPT_SET(&rev
.diffopt
, BINARY
);
921 if (!output_directory
&& !use_stdout
)
922 output_directory
= prefix
;
924 if (output_directory
) {
926 die("standard output, or directory, which one?");
927 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
928 die("Could not create directory %s",
932 if (rev
.pending
.nr
== 1) {
933 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
935 * This is traditional behaviour of "git format-patch
936 * origin" that prepares what the origin side still
939 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
940 add_head_to_pending(&rev
);
943 * Otherwise, it is "format-patch -22 HEAD", and/or
944 * "format-patch --root HEAD". The user wants
945 * get_revision() to do the usual traversal.
949 /* remember the range */
951 for (i
= 0; i
< rev
.pending
.nr
; i
++) {
952 struct object
*o
= rev
.pending
.objects
[i
].item
;
953 if (!(o
->flags
& UNINTERESTING
))
954 head
= (struct commit
*)o
;
956 /* We can't generate a cover letter without any patches */
961 if (ignore_if_in_upstream
)
962 get_patch_ids(&rev
, &ids
, prefix
);
965 realstdout
= xfdopen(xdup(1), "w");
967 if (prepare_revision_walk(&rev
))
968 die("revision walk setup failed");
970 while ((commit
= get_revision(&rev
)) != NULL
) {
971 if (commit
->object
.flags
& BOUNDARY
) {
973 origin
= (boundary_count
== 1) ? commit
: NULL
;
978 if (commit
->parents
&& commit
->parents
->next
)
981 if (ignore_if_in_upstream
&&
982 has_commit_patch_id(commit
, &ids
))
986 list
= xrealloc(list
, nr
* sizeof(list
[0]));
987 list
[nr
- 1] = commit
;
990 if (!keep_subject
&& auto_number
&& total
> 1)
993 rev
.total
= total
+ start_number
- 1;
995 rev
.ref_message_id
= clean_message_id(in_reply_to
);
998 gen_message_id(&rev
, "cover");
999 make_cover_letter(&rev
, use_stdout
, numbered
, numbered_files
,
1000 origin
, nr
, list
, head
);
1004 rev
.add_signoff
= add_signoff
;
1008 rev
.nr
= total
- nr
+ (start_number
- 1);
1009 /* Make the second and subsequent mails replies to the first */
1011 /* Have we already had a message ID? */
1012 if (rev
.message_id
) {
1014 * If we've got the ID to be a reply
1015 * to, discard the current ID;
1016 * otherwise, make everything a reply
1019 if (rev
.ref_message_id
)
1020 free(rev
.message_id
);
1022 rev
.ref_message_id
= rev
.message_id
;
1024 gen_message_id(&rev
, sha1_to_hex(commit
->object
.sha1
));
1026 if (!use_stdout
&& reopen_stdout(numbered_files
? NULL
:
1027 get_oneline_for_filename(commit
, keep_subject
),
1029 die("Failed to create output files");
1030 shown
= log_tree_commit(&rev
, commit
);
1031 free(commit
->buffer
);
1032 commit
->buffer
= NULL
;
1034 /* We put one extra blank line between formatted
1035 * patches and this flag is used by log-tree code
1036 * to see if it needs to emit a LF before showing
1037 * the log; when using one file per patch, we do
1038 * not want the extra blank line.
1043 if (rev
.mime_boundary
)
1044 printf("\n--%s%s--\n\n\n",
1045 mime_boundary_leader
,
1048 printf("-- \n%s\n\n", git_version_string
);
1054 if (ignore_if_in_upstream
)
1055 free_patch_ids(&ids
);
1059 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1061 unsigned char sha1
[20];
1062 if (get_sha1(arg
, sha1
) == 0) {
1063 struct commit
*commit
= lookup_commit_reference(sha1
);
1065 commit
->object
.flags
|= flags
;
1066 add_pending_object(revs
, &commit
->object
, arg
);
1073 static const char cherry_usage
[] =
1074 "git cherry [-v] [<upstream> [<head> [<limit>]]]";
1075 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
1077 struct rev_info revs
;
1078 struct patch_ids ids
;
1079 struct commit
*commit
;
1080 struct commit_list
*list
= NULL
;
1081 struct branch
*current_branch
;
1082 const char *upstream
;
1083 const char *head
= "HEAD";
1084 const char *limit
= NULL
;
1087 if (argc
> 1 && !strcmp(argv
[1], "-v")) {
1104 current_branch
= branch_get(NULL
);
1105 if (!current_branch
|| !current_branch
->merge
1106 || !current_branch
->merge
[0]
1107 || !current_branch
->merge
[0]->dst
) {
1108 fprintf(stderr
, "Could not find a tracked"
1109 " remote branch, please"
1110 " specify <upstream> manually.\n");
1111 usage(cherry_usage
);
1114 upstream
= current_branch
->merge
[0]->dst
;
1117 init_revisions(&revs
, prefix
);
1119 revs
.combine_merges
= 0;
1120 revs
.ignore_merges
= 1;
1121 DIFF_OPT_SET(&revs
.diffopt
, RECURSIVE
);
1123 if (add_pending_commit(head
, &revs
, 0))
1124 die("Unknown commit %s", head
);
1125 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
1126 die("Unknown commit %s", upstream
);
1128 /* Don't say anything if head and upstream are the same. */
1129 if (revs
.pending
.nr
== 2) {
1130 struct object_array_entry
*o
= revs
.pending
.objects
;
1131 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
1135 get_patch_ids(&revs
, &ids
, prefix
);
1137 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
1138 die("Unknown commit %s", limit
);
1140 /* reverse the list of commits */
1141 if (prepare_revision_walk(&revs
))
1142 die("revision walk setup failed");
1143 while ((commit
= get_revision(&revs
)) != NULL
) {
1145 if (commit
->parents
&& commit
->parents
->next
)
1148 commit_list_insert(commit
, &list
);
1154 commit
= list
->item
;
1155 if (has_commit_patch_id(commit
, &ids
))
1159 struct strbuf buf
= STRBUF_INIT
;
1160 pretty_print_commit(CMIT_FMT_ONELINE
, commit
,
1161 &buf
, 0, NULL
, NULL
, 0, 0);
1162 printf("%c %s %s\n", sign
,
1163 sha1_to_hex(commit
->object
.sha1
), buf
.buf
);
1164 strbuf_release(&buf
);
1167 printf("%c %s\n", sign
,
1168 sha1_to_hex(commit
->object
.sha1
));
1174 free_patch_ids(&ids
);