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 /* Set a default date-time format for git log ("log.date" config variable) */
21 static const char *default_date_mode
= NULL
;
23 static int default_show_root
= 1;
24 static const char *fmt_patch_subject_prefix
= "PATCH";
25 static const char *fmt_pretty
;
27 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
32 rev
->abbrev
= DEFAULT_ABBREV
;
33 rev
->commit_format
= CMIT_FMT_DEFAULT
;
35 get_commit_format(fmt_pretty
, rev
);
36 rev
->verbose_header
= 1;
37 DIFF_OPT_SET(&rev
->diffopt
, RECURSIVE
);
38 rev
->show_root_diff
= default_show_root
;
39 rev
->subject_prefix
= fmt_patch_subject_prefix
;
40 DIFF_OPT_SET(&rev
->diffopt
, ALLOW_TEXTCONV
);
42 if (default_date_mode
)
43 rev
->date_mode
= parse_date_format(default_date_mode
);
45 argc
= setup_revisions(argc
, argv
, rev
, "HEAD");
47 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
)
48 rev
->always_show_header
= 0;
49 if (DIFF_OPT_TST(&rev
->diffopt
, FOLLOW_RENAMES
)) {
50 rev
->always_show_header
= 0;
51 if (rev
->diffopt
.nr_paths
!= 1)
52 usage("git logs can only follow renames on one pathname at a time");
54 for (i
= 1; i
< argc
; i
++) {
55 const char *arg
= argv
[i
];
56 if (!strcmp(arg
, "--decorate")) {
57 load_ref_decorations();
58 rev
->show_decorations
= 1;
59 } else if (!strcmp(arg
, "--source")) {
62 die("unrecognized argument: %s", arg
);
67 * This gives a rough estimate for how many commits we
68 * will print out in the list.
70 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
75 struct commit
*commit
= list
->item
;
76 unsigned int flags
= commit
->object
.flags
;
78 if (!(flags
& (TREESAME
| UNINTERESTING
)))
84 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
88 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
89 putchar(rev
->diffopt
.line_termination
);
91 printf("Final output: %d %s\n", nr
, stage
);
94 struct itimerval early_output_timer
;
96 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
98 int i
= revs
->early_output
;
101 sort_in_topological_order(&list
, revs
->lifo
);
103 struct commit
*commit
= list
->item
;
104 switch (simplify_commit(revs
, commit
)) {
107 int n
= estimate_commit_count(revs
, list
);
108 show_early_header(revs
, "incomplete", n
);
111 log_tree_commit(revs
, commit
);
122 /* Did we already get enough commits for the early output? */
127 * ..if no, then repeat it twice a second until we
130 * NOTE! We don't use "it_interval", because if the
131 * reader isn't listening, we want our output to be
132 * throttled by the writing, and not have the timer
133 * trigger every second even if we're blocked on a
136 early_output_timer
.it_value
.tv_sec
= 0;
137 early_output_timer
.it_value
.tv_usec
= 500000;
138 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
141 static void early_output(int signal
)
143 show_early_output
= log_show_early
;
146 static void setup_early_output(struct rev_info
*rev
)
151 * Set up the signal handler, minimally intrusively:
152 * we only set a single volatile integer word (not
153 * using sigatomic_t - trying to avoid unnecessary
154 * system dependencies and headers), and using
157 memset(&sa
, 0, sizeof(sa
));
158 sa
.sa_handler
= early_output
;
159 sigemptyset(&sa
.sa_mask
);
160 sa
.sa_flags
= SA_RESTART
;
161 sigaction(SIGALRM
, &sa
, NULL
);
164 * If we can get the whole output in less than a
165 * tenth of a second, don't even bother doing the
166 * early-output thing..
168 * This is a one-time-only trigger.
170 early_output_timer
.it_value
.tv_sec
= 0;
171 early_output_timer
.it_value
.tv_usec
= 100000;
172 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
175 static void finish_early_output(struct rev_info
*rev
)
177 int n
= estimate_commit_count(rev
, rev
->commits
);
178 signal(SIGALRM
, SIG_IGN
);
179 show_early_header(rev
, "done", n
);
182 static int cmd_log_walk(struct rev_info
*rev
)
184 struct commit
*commit
;
186 if (rev
->early_output
)
187 setup_early_output(rev
);
189 if (prepare_revision_walk(rev
))
190 die("revision walk setup failed");
192 if (rev
->early_output
)
193 finish_early_output(rev
);
196 * For --check and --exit-code, the exit code is based on CHECK_FAILED
197 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
198 * retain that state information if replacing rev->diffopt in this loop
200 while ((commit
= get_revision(rev
)) != NULL
) {
201 log_tree_commit(rev
, commit
);
202 if (!rev
->reflog_info
) {
203 /* we allow cycles in reflog ancestry */
204 free(commit
->buffer
);
205 commit
->buffer
= NULL
;
207 free_commit_list(commit
->parents
);
208 commit
->parents
= NULL
;
210 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
211 DIFF_OPT_TST(&rev
->diffopt
, CHECK_FAILED
)) {
214 return diff_result_code(&rev
->diffopt
, 0);
217 static int git_log_config(const char *var
, const char *value
, void *cb
)
219 if (!strcmp(var
, "format.pretty"))
220 return git_config_string(&fmt_pretty
, var
, value
);
221 if (!strcmp(var
, "format.subjectprefix"))
222 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
223 if (!strcmp(var
, "log.date"))
224 return git_config_string(&default_date_mode
, var
, value
);
225 if (!strcmp(var
, "log.showroot")) {
226 default_show_root
= git_config_bool(var
, value
);
229 return git_diff_ui_config(var
, value
, cb
);
232 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
236 git_config(git_log_config
, NULL
);
238 if (diff_use_color_default
== -1)
239 diff_use_color_default
= git_use_color_default
;
241 init_revisions(&rev
, prefix
);
243 rev
.simplify_history
= 0;
244 cmd_log_init(argc
, argv
, prefix
, &rev
);
245 if (!rev
.diffopt
.output_format
)
246 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
247 return cmd_log_walk(&rev
);
250 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
256 email_end
= memchr(buf
, '>', len
);
262 date
= strtoul(p
, &p
, 10);
265 tz
= (int)strtol(p
, NULL
, 10);
266 printf("Tagger: %.*s\nDate: %s\n", (int)(email_end
- buf
), buf
,
267 show_date(date
, tz
, rev
->date_mode
));
270 static int show_object(const unsigned char *sha1
, int show_tag_object
,
271 struct rev_info
*rev
)
274 enum object_type type
;
275 char *buf
= read_sha1_file(sha1
, &type
, &size
);
279 return error("Could not read object %s", sha1_to_hex(sha1
));
282 while (offset
< size
&& buf
[offset
] != '\n') {
283 int new_offset
= offset
+ 1;
284 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
286 if (!prefixcmp(buf
+ offset
, "tagger "))
287 show_tagger(buf
+ offset
+ 7,
288 new_offset
- offset
- 7, rev
);
293 fwrite(buf
+ offset
, size
- offset
, 1, stdout
);
298 static int show_tree_object(const unsigned char *sha1
,
299 const char *base
, int baselen
,
300 const char *pathname
, unsigned mode
, int stage
, void *context
)
302 printf("%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
306 int cmd_show(int argc
, const char **argv
, const char *prefix
)
309 struct object_array_entry
*objects
;
310 int i
, count
, ret
= 0;
312 git_config(git_log_config
, NULL
);
314 if (diff_use_color_default
== -1)
315 diff_use_color_default
= git_use_color_default
;
317 init_revisions(&rev
, prefix
);
319 rev
.combine_merges
= 1;
320 rev
.dense_combined_merges
= 1;
321 rev
.always_show_header
= 1;
322 rev
.ignore_merges
= 0;
324 cmd_log_init(argc
, argv
, prefix
, &rev
);
326 count
= rev
.pending
.nr
;
327 objects
= rev
.pending
.objects
;
328 for (i
= 0; i
< count
&& !ret
; i
++) {
329 struct object
*o
= objects
[i
].item
;
330 const char *name
= objects
[i
].name
;
333 ret
= show_object(o
->sha1
, 0, NULL
);
336 struct tag
*t
= (struct tag
*)o
;
338 printf("%stag %s%s\n",
339 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
341 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
342 ret
= show_object(o
->sha1
, 1, &rev
);
345 o
= parse_object(t
->tagged
->sha1
);
347 ret
= error("Could not read object %s",
348 sha1_to_hex(t
->tagged
->sha1
));
354 printf("%stree %s%s\n\n",
355 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
357 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
358 read_tree_recursive((struct tree
*)o
, "", 0, 0, NULL
,
359 show_tree_object
, NULL
);
362 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
363 rev
.pending
.objects
= NULL
;
364 add_object_array(o
, name
, &rev
.pending
);
365 ret
= cmd_log_walk(&rev
);
368 ret
= error("Unknown type: %d", o
->type
);
376 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
378 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
382 git_config(git_log_config
, NULL
);
384 if (diff_use_color_default
== -1)
385 diff_use_color_default
= git_use_color_default
;
387 init_revisions(&rev
, prefix
);
388 init_reflog_walk(&rev
.reflog_info
);
389 rev
.abbrev_commit
= 1;
390 rev
.verbose_header
= 1;
391 cmd_log_init(argc
, argv
, prefix
, &rev
);
394 * This means that we override whatever commit format the user gave
395 * on the cmd line. Sad, but cmd_log_init() currently doesn't
396 * allow us to set a different default.
398 rev
.commit_format
= CMIT_FMT_ONELINE
;
399 rev
.use_terminator
= 1;
400 rev
.always_show_header
= 1;
403 * We get called through "git reflog", so unlike the other log
404 * routines, we need to set up our pager manually..
408 return cmd_log_walk(&rev
);
411 int cmd_log(int argc
, const char **argv
, const char *prefix
)
415 git_config(git_log_config
, NULL
);
417 if (diff_use_color_default
== -1)
418 diff_use_color_default
= git_use_color_default
;
420 init_revisions(&rev
, prefix
);
421 rev
.always_show_header
= 1;
422 cmd_log_init(argc
, argv
, prefix
, &rev
);
423 return cmd_log_walk(&rev
);
427 #define FORMAT_PATCH_NAME_MAX 64
429 static int istitlechar(char c
)
431 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') ||
432 (c
>= '0' && c
<= '9') || c
== '.' || c
== '_';
435 static const char *fmt_patch_suffix
= ".patch";
436 static int numbered
= 0;
437 static int auto_number
= 1;
439 static char **extra_hdr
;
440 static int extra_hdr_nr
;
441 static int extra_hdr_alloc
;
443 static char **extra_to
;
444 static int extra_to_nr
;
445 static int extra_to_alloc
;
447 static char **extra_cc
;
448 static int extra_cc_nr
;
449 static int extra_cc_alloc
;
451 static void add_header(const char *value
)
453 int len
= strlen(value
);
454 while (len
&& value
[len
- 1] == '\n')
456 if (!strncasecmp(value
, "to: ", 4)) {
457 ALLOC_GROW(extra_to
, extra_to_nr
+ 1, extra_to_alloc
);
458 extra_to
[extra_to_nr
++] = xstrndup(value
+ 4, len
- 4);
461 if (!strncasecmp(value
, "cc: ", 4)) {
462 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
463 extra_cc
[extra_cc_nr
++] = xstrndup(value
+ 4, len
- 4);
466 ALLOC_GROW(extra_hdr
, extra_hdr_nr
+ 1, extra_hdr_alloc
);
467 extra_hdr
[extra_hdr_nr
++] = xstrndup(value
, len
);
470 static int git_format_config(const char *var
, const char *value
, void *cb
)
472 if (!strcmp(var
, "format.headers")) {
474 die("format.headers without value");
478 if (!strcmp(var
, "format.suffix"))
479 return git_config_string(&fmt_patch_suffix
, var
, value
);
480 if (!strcmp(var
, "format.cc")) {
482 return config_error_nonbool(var
);
483 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
484 extra_cc
[extra_cc_nr
++] = 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
);
496 auto_number
= auto_number
&& numbered
;
500 return git_log_config(var
, value
, cb
);
504 static const char *get_oneline_for_filename(struct commit
*commit
,
507 static char filename
[PATH_MAX
];
510 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
512 sol
= strstr(commit
->buffer
, "\n\n");
519 /* strip [PATCH] or [PATCH blabla] */
520 if (!keep_subject
&& !prefixcmp(sol
, "[PATCH")) {
521 char *eos
= strchr(sol
+ 6, ']');
523 while (isspace(*eos
))
530 j
< FORMAT_PATCH_NAME_MAX
- suffix_len
- 5 &&
531 len
< sizeof(filename
) - suffix_len
&&
532 sol
[j
] && sol
[j
] != '\n';
534 if (istitlechar(sol
[j
])) {
536 filename
[len
++] = '-';
539 filename
[len
++] = sol
[j
];
541 while (sol
[j
+ 1] == '.')
546 while (filename
[len
- 1] == '.'
547 || filename
[len
- 1] == '-')
549 filename
[len
] = '\0';
554 static FILE *realstdout
= NULL
;
555 static const char *output_directory
= NULL
;
557 static int reopen_stdout(const char *oneline
, int nr
, int total
)
559 char filename
[PATH_MAX
];
561 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
563 if (output_directory
) {
564 len
= snprintf(filename
, sizeof(filename
), "%s",
567 sizeof(filename
) - FORMAT_PATCH_NAME_MAX
- suffix_len
)
568 return error("name of output directory is too long");
569 if (filename
[len
- 1] != '/')
570 filename
[len
++] = '/';
574 len
+= sprintf(filename
+ len
, "%d", nr
);
576 len
+= sprintf(filename
+ len
, "%04d-", nr
);
577 len
+= snprintf(filename
+ len
, sizeof(filename
) - len
- 1
578 - suffix_len
, "%s", oneline
);
579 strcpy(filename
+ len
, fmt_patch_suffix
);
582 fprintf(realstdout
, "%s\n", filename
);
583 if (freopen(filename
, "w", stdout
) == NULL
)
584 return error("Cannot open patch file %s",filename
);
589 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
, const char *prefix
)
591 struct rev_info check_rev
;
592 struct commit
*commit
;
593 struct object
*o1
, *o2
;
594 unsigned flags1
, flags2
;
596 if (rev
->pending
.nr
!= 2)
597 die("Need exactly one range.");
599 o1
= rev
->pending
.objects
[0].item
;
601 o2
= rev
->pending
.objects
[1].item
;
604 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
609 /* given a range a..b get all patch ids for b..a */
610 init_revisions(&check_rev
, prefix
);
611 o1
->flags
^= UNINTERESTING
;
612 o2
->flags
^= UNINTERESTING
;
613 add_pending_object(&check_rev
, o1
, "o1");
614 add_pending_object(&check_rev
, o2
, "o2");
615 if (prepare_revision_walk(&check_rev
))
616 die("revision walk setup failed");
618 while ((commit
= get_revision(&check_rev
)) != NULL
) {
620 if (commit
->parents
&& commit
->parents
->next
)
623 add_commit_patch_id(commit
, ids
);
626 /* reset for next revision walk */
627 clear_commit_marks((struct commit
*)o1
,
628 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
629 clear_commit_marks((struct commit
*)o2
,
630 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
635 static void gen_message_id(struct rev_info
*info
, char *base
)
637 const char *committer
= git_committer_info(IDENT_WARN_ON_NO_NAME
);
638 const char *email_start
= strrchr(committer
, '<');
639 const char *email_end
= strrchr(committer
, '>');
640 struct strbuf buf
= STRBUF_INIT
;
641 if (!email_start
|| !email_end
|| email_start
> email_end
- 1)
642 die("Could not extract email from committer identity.");
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
;
661 struct strbuf sb
= STRBUF_INIT
;
663 const char *encoding
= "utf-8";
664 struct diff_options opts
;
665 int need_8bit_cte
= 0;
667 if (rev
->commit_format
!= CMIT_FMT_EMAIL
)
668 die("Cover letter needs email format");
670 if (!use_stdout
&& reopen_stdout(numbered_files
?
671 NULL
: "cover-letter", 0, rev
->total
))
674 head_sha1
= sha1_to_hex(head
->object
.sha1
);
676 log_write_email_headers(rev
, head_sha1
, &subject_start
, &extra_headers
,
679 committer
= git_committer_info(0);
682 pp_user_info(NULL
, CMIT_FMT_EMAIL
, &sb
, committer
, DATE_RFC2822
,
684 pp_title_line(CMIT_FMT_EMAIL
, &msg
, &sb
, subject_start
, extra_headers
,
685 encoding
, need_8bit_cte
);
686 pp_remainder(CMIT_FMT_EMAIL
, &msg
, &sb
, 0);
687 printf("%s\n", sb
.buf
);
696 for (i
= 0; i
< nr
; i
++)
697 shortlog_add_commit(&log
, list
[i
]);
699 shortlog_output(&log
);
702 * We can only do diffstat with a unique reference point
707 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
708 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
710 diff_setup_done(&opts
);
712 diff_tree_sha1(origin
->tree
->object
.sha1
,
713 head
->tree
->object
.sha1
,
721 static const char *clean_message_id(const char *msg_id
)
724 const char *a
, *z
, *m
;
727 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
732 if (!isspace(ch
) && (ch
!= '>'))
737 die("insane in-reply-to: %s", msg_id
);
740 return xmemdupz(a
, z
- a
);
743 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
745 struct commit
*commit
;
746 struct commit
**list
= NULL
;
748 int nr
= 0, total
, i
, j
;
750 int start_number
= -1;
751 int keep_subject
= 0;
752 int numbered_files
= 0; /* _just_ numbers */
753 int subject_prefix
= 0;
754 int ignore_if_in_upstream
= 0;
756 int cover_letter
= 0;
757 int boundary_count
= 0;
758 int no_binary_diff
= 0;
759 struct commit
*origin
= NULL
, *head
= NULL
;
760 const char *in_reply_to
= NULL
;
761 struct patch_ids ids
;
762 char *add_signoff
= NULL
;
763 struct strbuf buf
= STRBUF_INIT
;
765 git_config(git_format_config
, NULL
);
766 init_revisions(&rev
, prefix
);
767 rev
.commit_format
= CMIT_FMT_EMAIL
;
768 rev
.verbose_header
= 1;
770 rev
.combine_merges
= 0;
771 rev
.ignore_merges
= 1;
772 DIFF_OPT_SET(&rev
.diffopt
, RECURSIVE
);
774 rev
.subject_prefix
= fmt_patch_subject_prefix
;
777 * Parse the arguments before setup_revisions(), or something
778 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
779 * possibly a valid SHA1.
781 for (i
= 1, j
= 1; i
< argc
; i
++) {
782 if (!strcmp(argv
[i
], "--stdout"))
784 else if (!strcmp(argv
[i
], "-n") ||
785 !strcmp(argv
[i
], "--numbered"))
787 else if (!strcmp(argv
[i
], "-N") ||
788 !strcmp(argv
[i
], "--no-numbered")) {
792 else if (!prefixcmp(argv
[i
], "--start-number="))
793 start_number
= strtol(argv
[i
] + 15, NULL
, 10);
794 else if (!strcmp(argv
[i
], "--numbered-files"))
796 else if (!strcmp(argv
[i
], "--start-number")) {
799 die("Need a number for --start-number");
800 start_number
= strtol(argv
[i
], NULL
, 10);
802 else if (!prefixcmp(argv
[i
], "--cc=")) {
803 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
804 extra_cc
[extra_cc_nr
++] = xstrdup(argv
[i
] + 5);
806 else if (!strcmp(argv
[i
], "-k") ||
807 !strcmp(argv
[i
], "--keep-subject")) {
811 else if (!strcmp(argv
[i
], "--output-directory") ||
812 !strcmp(argv
[i
], "-o")) {
815 die("Which directory?");
816 if (output_directory
)
817 die("Two output directories?");
818 output_directory
= argv
[i
];
820 else if (!strcmp(argv
[i
], "--signoff") ||
821 !strcmp(argv
[i
], "-s")) {
822 const char *committer
;
824 committer
= git_committer_info(IDENT_ERROR_ON_NO_NAME
);
825 endpos
= strchr(committer
, '>');
827 die("bogus committer info %s\n", committer
);
828 add_signoff
= xmemdupz(committer
, endpos
- committer
+ 1);
830 else if (!strcmp(argv
[i
], "--attach")) {
831 rev
.mime_boundary
= git_version_string
;
834 else if (!prefixcmp(argv
[i
], "--attach=")) {
835 rev
.mime_boundary
= argv
[i
] + 9;
838 else if (!strcmp(argv
[i
], "--inline")) {
839 rev
.mime_boundary
= git_version_string
;
842 else if (!prefixcmp(argv
[i
], "--inline=")) {
843 rev
.mime_boundary
= argv
[i
] + 9;
846 else if (!strcmp(argv
[i
], "--ignore-if-in-upstream"))
847 ignore_if_in_upstream
= 1;
848 else if (!strcmp(argv
[i
], "--thread"))
850 else if (!prefixcmp(argv
[i
], "--in-reply-to="))
851 in_reply_to
= argv
[i
] + 14;
852 else if (!strcmp(argv
[i
], "--in-reply-to")) {
855 die("Need a Message-Id for --in-reply-to");
856 in_reply_to
= argv
[i
];
857 } else if (!prefixcmp(argv
[i
], "--subject-prefix=")) {
859 rev
.subject_prefix
= argv
[i
] + 17;
860 } else if (!prefixcmp(argv
[i
], "--suffix="))
861 fmt_patch_suffix
= argv
[i
] + 9;
862 else if (!strcmp(argv
[i
], "--cover-letter"))
864 else if (!strcmp(argv
[i
], "--no-binary"))
871 for (i
= 0; i
< extra_hdr_nr
; i
++) {
872 strbuf_addstr(&buf
, extra_hdr
[i
]);
873 strbuf_addch(&buf
, '\n');
877 strbuf_addstr(&buf
, "To: ");
878 for (i
= 0; i
< extra_to_nr
; i
++) {
880 strbuf_addstr(&buf
, " ");
881 strbuf_addstr(&buf
, extra_to
[i
]);
882 if (i
+ 1 < extra_to_nr
)
883 strbuf_addch(&buf
, ',');
884 strbuf_addch(&buf
, '\n');
888 strbuf_addstr(&buf
, "Cc: ");
889 for (i
= 0; i
< extra_cc_nr
; i
++) {
891 strbuf_addstr(&buf
, " ");
892 strbuf_addstr(&buf
, extra_cc
[i
]);
893 if (i
+ 1 < extra_cc_nr
)
894 strbuf_addch(&buf
, ',');
895 strbuf_addch(&buf
, '\n');
898 rev
.extra_headers
= strbuf_detach(&buf
, 0);
900 if (start_number
< 0)
902 if (numbered
&& keep_subject
)
903 die ("-n and -k are mutually exclusive.");
904 if (keep_subject
&& subject_prefix
)
905 die ("--subject-prefix and -k are mutually exclusive.");
906 if (numbered_files
&& use_stdout
)
907 die ("--numbered-files and --stdout are mutually exclusive.");
909 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
911 die ("unrecognized argument: %s", argv
[1]);
913 if (!rev
.diffopt
.output_format
914 || rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
)
915 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_PATCH
;
917 if (!DIFF_OPT_TST(&rev
.diffopt
, TEXT
) && !no_binary_diff
)
918 DIFF_OPT_SET(&rev
.diffopt
, BINARY
);
920 if (!output_directory
&& !use_stdout
)
921 output_directory
= prefix
;
923 if (output_directory
) {
925 die("standard output, or directory, which one?");
926 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
927 die("Could not create directory %s",
931 if (rev
.pending
.nr
== 1) {
932 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
934 * This is traditional behaviour of "git format-patch
935 * origin" that prepares what the origin side still
938 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
939 add_head_to_pending(&rev
);
942 * Otherwise, it is "format-patch -22 HEAD", and/or
943 * "format-patch --root HEAD". The user wants
944 * get_revision() to do the usual traversal.
948 /* remember the range */
950 for (i
= 0; i
< rev
.pending
.nr
; i
++) {
951 struct object
*o
= rev
.pending
.objects
[i
].item
;
952 if (!(o
->flags
& UNINTERESTING
))
953 head
= (struct commit
*)o
;
955 /* We can't generate a cover letter without any patches */
960 if (ignore_if_in_upstream
)
961 get_patch_ids(&rev
, &ids
, prefix
);
964 realstdout
= xfdopen(xdup(1), "w");
966 if (prepare_revision_walk(&rev
))
967 die("revision walk setup failed");
969 while ((commit
= get_revision(&rev
)) != NULL
) {
970 if (commit
->object
.flags
& BOUNDARY
) {
972 origin
= (boundary_count
== 1) ? commit
: NULL
;
977 if (commit
->parents
&& commit
->parents
->next
)
980 if (ignore_if_in_upstream
&&
981 has_commit_patch_id(commit
, &ids
))
985 list
= xrealloc(list
, nr
* sizeof(list
[0]));
986 list
[nr
- 1] = commit
;
989 if (!keep_subject
&& auto_number
&& total
> 1)
992 rev
.total
= total
+ start_number
- 1;
994 rev
.ref_message_id
= clean_message_id(in_reply_to
);
997 gen_message_id(&rev
, "cover");
998 make_cover_letter(&rev
, use_stdout
, numbered
, numbered_files
,
999 origin
, nr
, list
, head
);
1003 rev
.add_signoff
= add_signoff
;
1007 rev
.nr
= total
- nr
+ (start_number
- 1);
1008 /* Make the second and subsequent mails replies to the first */
1010 /* Have we already had a message ID? */
1011 if (rev
.message_id
) {
1013 * If we've got the ID to be a reply
1014 * to, discard the current ID;
1015 * otherwise, make everything a reply
1018 if (rev
.ref_message_id
)
1019 free(rev
.message_id
);
1021 rev
.ref_message_id
= rev
.message_id
;
1023 gen_message_id(&rev
, sha1_to_hex(commit
->object
.sha1
));
1025 if (!use_stdout
&& reopen_stdout(numbered_files
? NULL
:
1026 get_oneline_for_filename(commit
, keep_subject
),
1028 die("Failed to create output files");
1029 shown
= log_tree_commit(&rev
, commit
);
1030 free(commit
->buffer
);
1031 commit
->buffer
= NULL
;
1033 /* We put one extra blank line between formatted
1034 * patches and this flag is used by log-tree code
1035 * to see if it needs to emit a LF before showing
1036 * the log; when using one file per patch, we do
1037 * not want the extra blank line.
1042 if (rev
.mime_boundary
)
1043 printf("\n--%s%s--\n\n\n",
1044 mime_boundary_leader
,
1047 printf("-- \n%s\n\n", git_version_string
);
1053 if (ignore_if_in_upstream
)
1054 free_patch_ids(&ids
);
1058 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1060 unsigned char sha1
[20];
1061 if (get_sha1(arg
, sha1
) == 0) {
1062 struct commit
*commit
= lookup_commit_reference(sha1
);
1064 commit
->object
.flags
|= flags
;
1065 add_pending_object(revs
, &commit
->object
, arg
);
1072 static const char cherry_usage
[] =
1073 "git cherry [-v] <upstream> [<head>] [<limit>]";
1074 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
1076 struct rev_info revs
;
1077 struct patch_ids ids
;
1078 struct commit
*commit
;
1079 struct commit_list
*list
= NULL
;
1080 const char *upstream
;
1081 const char *head
= "HEAD";
1082 const char *limit
= NULL
;
1085 if (argc
> 1 && !strcmp(argv
[1], "-v")) {
1102 usage(cherry_usage
);
1105 init_revisions(&revs
, prefix
);
1107 revs
.combine_merges
= 0;
1108 revs
.ignore_merges
= 1;
1109 DIFF_OPT_SET(&revs
.diffopt
, RECURSIVE
);
1111 if (add_pending_commit(head
, &revs
, 0))
1112 die("Unknown commit %s", head
);
1113 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
1114 die("Unknown commit %s", upstream
);
1116 /* Don't say anything if head and upstream are the same. */
1117 if (revs
.pending
.nr
== 2) {
1118 struct object_array_entry
*o
= revs
.pending
.objects
;
1119 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
1123 get_patch_ids(&revs
, &ids
, prefix
);
1125 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
1126 die("Unknown commit %s", limit
);
1128 /* reverse the list of commits */
1129 if (prepare_revision_walk(&revs
))
1130 die("revision walk setup failed");
1131 while ((commit
= get_revision(&revs
)) != NULL
) {
1133 if (commit
->parents
&& commit
->parents
->next
)
1136 commit_list_insert(commit
, &list
);
1142 commit
= list
->item
;
1143 if (has_commit_patch_id(commit
, &ids
))
1147 struct strbuf buf
= STRBUF_INIT
;
1148 pretty_print_commit(CMIT_FMT_ONELINE
, commit
,
1149 &buf
, 0, NULL
, NULL
, 0, 0);
1150 printf("%c %s %s\n", sign
,
1151 sha1_to_hex(commit
->object
.sha1
), buf
.buf
);
1152 strbuf_release(&buf
);
1155 printf("%c %s\n", sign
,
1156 sha1_to_hex(commit
->object
.sha1
));
1162 free_patch_ids(&ids
);