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"
22 /* Set a default date-time format for git log ("log.date" config variable) */
23 static const char *default_date_mode
= NULL
;
25 static int default_show_root
= 1;
26 static const char *fmt_patch_subject_prefix
= "PATCH";
27 static const char *fmt_pretty
;
29 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
34 rev
->abbrev
= DEFAULT_ABBREV
;
35 rev
->commit_format
= CMIT_FMT_DEFAULT
;
37 get_commit_format(fmt_pretty
, rev
);
38 rev
->verbose_header
= 1;
39 DIFF_OPT_SET(&rev
->diffopt
, RECURSIVE
);
40 rev
->show_root_diff
= default_show_root
;
41 rev
->subject_prefix
= fmt_patch_subject_prefix
;
42 DIFF_OPT_SET(&rev
->diffopt
, ALLOW_TEXTCONV
);
44 if (default_date_mode
)
45 rev
->date_mode
= parse_date_format(default_date_mode
);
47 argc
= setup_revisions(argc
, argv
, rev
, "HEAD");
49 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
)
50 rev
->always_show_header
= 0;
51 if (DIFF_OPT_TST(&rev
->diffopt
, FOLLOW_RENAMES
)) {
52 rev
->always_show_header
= 0;
53 if (rev
->diffopt
.nr_paths
!= 1)
54 usage("git logs can only follow renames on one pathname at a time");
56 for (i
= 1; i
< argc
; i
++) {
57 const char *arg
= argv
[i
];
58 if (!strcmp(arg
, "--decorate")) {
59 load_ref_decorations();
60 rev
->show_decorations
= 1;
61 } else if (!strcmp(arg
, "--source")) {
64 die("unrecognized argument: %s", arg
);
69 * This gives a rough estimate for how many commits we
70 * will print out in the list.
72 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
77 struct commit
*commit
= list
->item
;
78 unsigned int flags
= commit
->object
.flags
;
80 if (!(flags
& (TREESAME
| UNINTERESTING
)))
86 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
90 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
91 putchar(rev
->diffopt
.line_termination
);
93 printf("Final output: %d %s\n", nr
, stage
);
96 struct itimerval early_output_timer
;
98 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
100 int i
= revs
->early_output
;
103 sort_in_topological_order(&list
, revs
->lifo
);
105 struct commit
*commit
= list
->item
;
106 switch (simplify_commit(revs
, commit
)) {
109 int n
= estimate_commit_count(revs
, list
);
110 show_early_header(revs
, "incomplete", n
);
113 log_tree_commit(revs
, commit
);
124 /* Did we already get enough commits for the early output? */
129 * ..if no, then repeat it twice a second until we
132 * NOTE! We don't use "it_interval", because if the
133 * reader isn't listening, we want our output to be
134 * throttled by the writing, and not have the timer
135 * trigger every second even if we're blocked on a
138 early_output_timer
.it_value
.tv_sec
= 0;
139 early_output_timer
.it_value
.tv_usec
= 500000;
140 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
143 static void early_output(int signal
)
145 show_early_output
= log_show_early
;
148 static void setup_early_output(struct rev_info
*rev
)
153 * Set up the signal handler, minimally intrusively:
154 * we only set a single volatile integer word (not
155 * using sigatomic_t - trying to avoid unnecessary
156 * system dependencies and headers), and using
159 memset(&sa
, 0, sizeof(sa
));
160 sa
.sa_handler
= early_output
;
161 sigemptyset(&sa
.sa_mask
);
162 sa
.sa_flags
= SA_RESTART
;
163 sigaction(SIGALRM
, &sa
, NULL
);
166 * If we can get the whole output in less than a
167 * tenth of a second, don't even bother doing the
168 * early-output thing..
170 * This is a one-time-only trigger.
172 early_output_timer
.it_value
.tv_sec
= 0;
173 early_output_timer
.it_value
.tv_usec
= 100000;
174 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
177 static void finish_early_output(struct rev_info
*rev
)
179 int n
= estimate_commit_count(rev
, rev
->commits
);
180 signal(SIGALRM
, SIG_IGN
);
181 show_early_header(rev
, "done", n
);
184 static int cmd_log_walk(struct rev_info
*rev
)
186 struct commit
*commit
;
188 if (rev
->early_output
)
189 setup_early_output(rev
);
191 if (prepare_revision_walk(rev
))
192 die("revision walk setup failed");
194 if (rev
->early_output
)
195 finish_early_output(rev
);
198 * For --check and --exit-code, the exit code is based on CHECK_FAILED
199 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
200 * retain that state information if replacing rev->diffopt in this loop
202 while ((commit
= get_revision(rev
)) != NULL
) {
203 log_tree_commit(rev
, commit
);
204 if (!rev
->reflog_info
) {
205 /* we allow cycles in reflog ancestry */
206 free(commit
->buffer
);
207 commit
->buffer
= NULL
;
209 free_commit_list(commit
->parents
);
210 commit
->parents
= NULL
;
212 if (rev
->diffopt
.output_format
& DIFF_FORMAT_CHECKDIFF
&&
213 DIFF_OPT_TST(&rev
->diffopt
, CHECK_FAILED
)) {
216 return diff_result_code(&rev
->diffopt
, 0);
219 static int git_log_config(const char *var
, const char *value
, void *cb
)
221 if (!strcmp(var
, "format.pretty"))
222 return git_config_string(&fmt_pretty
, var
, value
);
223 if (!strcmp(var
, "format.subjectprefix"))
224 return git_config_string(&fmt_patch_subject_prefix
, var
, value
);
225 if (!strcmp(var
, "log.date"))
226 return git_config_string(&default_date_mode
, var
, value
);
227 if (!strcmp(var
, "log.showroot")) {
228 default_show_root
= git_config_bool(var
, value
);
231 return git_diff_ui_config(var
, value
, cb
);
234 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
238 git_config(git_log_config
, NULL
);
240 if (diff_use_color_default
== -1)
241 diff_use_color_default
= git_use_color_default
;
243 init_revisions(&rev
, prefix
);
245 rev
.simplify_history
= 0;
246 cmd_log_init(argc
, argv
, prefix
, &rev
);
247 if (!rev
.diffopt
.output_format
)
248 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
249 return cmd_log_walk(&rev
);
252 static void show_tagger(char *buf
, int len
, struct rev_info
*rev
)
254 struct strbuf out
= STRBUF_INIT
;
256 pp_user_info("Tagger", rev
->commit_format
, &out
, buf
, rev
->date_mode
,
257 git_log_output_encoding
?
258 git_log_output_encoding
: git_commit_encoding
);
259 printf("%s\n", out
.buf
);
260 strbuf_release(&out
);
263 static int show_object(const unsigned char *sha1
, int show_tag_object
,
264 struct rev_info
*rev
)
267 enum object_type type
;
268 char *buf
= read_sha1_file(sha1
, &type
, &size
);
272 return error("Could not read object %s", sha1_to_hex(sha1
));
275 while (offset
< size
&& buf
[offset
] != '\n') {
276 int new_offset
= offset
+ 1;
277 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
279 if (!prefixcmp(buf
+ offset
, "tagger "))
280 show_tagger(buf
+ offset
+ 7,
281 new_offset
- offset
- 7, rev
);
286 fwrite(buf
+ offset
, size
- offset
, 1, stdout
);
291 static int show_tree_object(const unsigned char *sha1
,
292 const char *base
, int baselen
,
293 const char *pathname
, unsigned mode
, int stage
, void *context
)
295 printf("%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
299 int cmd_show(int argc
, const char **argv
, const char *prefix
)
302 struct object_array_entry
*objects
;
303 int i
, count
, ret
= 0;
305 git_config(git_log_config
, NULL
);
307 if (diff_use_color_default
== -1)
308 diff_use_color_default
= git_use_color_default
;
310 init_revisions(&rev
, prefix
);
312 rev
.combine_merges
= 1;
313 rev
.dense_combined_merges
= 1;
314 rev
.always_show_header
= 1;
315 rev
.ignore_merges
= 0;
317 cmd_log_init(argc
, argv
, prefix
, &rev
);
319 count
= rev
.pending
.nr
;
320 objects
= rev
.pending
.objects
;
321 for (i
= 0; i
< count
&& !ret
; i
++) {
322 struct object
*o
= objects
[i
].item
;
323 const char *name
= objects
[i
].name
;
326 ret
= show_object(o
->sha1
, 0, NULL
);
329 struct tag
*t
= (struct tag
*)o
;
331 printf("%stag %s%s\n",
332 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
334 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
335 ret
= show_object(o
->sha1
, 1, &rev
);
338 o
= parse_object(t
->tagged
->sha1
);
340 ret
= error("Could not read object %s",
341 sha1_to_hex(t
->tagged
->sha1
));
347 printf("%stree %s%s\n\n",
348 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
350 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
351 read_tree_recursive((struct tree
*)o
, "", 0, 0, NULL
,
352 show_tree_object
, NULL
);
355 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
356 rev
.pending
.objects
= NULL
;
357 add_object_array(o
, name
, &rev
.pending
);
358 ret
= cmd_log_walk(&rev
);
361 ret
= error("Unknown type: %d", o
->type
);
369 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
371 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
375 git_config(git_log_config
, NULL
);
377 if (diff_use_color_default
== -1)
378 diff_use_color_default
= git_use_color_default
;
380 init_revisions(&rev
, prefix
);
381 init_reflog_walk(&rev
.reflog_info
);
382 rev
.abbrev_commit
= 1;
383 rev
.verbose_header
= 1;
384 cmd_log_init(argc
, argv
, prefix
, &rev
);
387 * This means that we override whatever commit format the user gave
388 * on the cmd line. Sad, but cmd_log_init() currently doesn't
389 * allow us to set a different default.
391 rev
.commit_format
= CMIT_FMT_ONELINE
;
392 rev
.use_terminator
= 1;
393 rev
.always_show_header
= 1;
396 * We get called through "git reflog", so unlike the other log
397 * routines, we need to set up our pager manually..
401 return cmd_log_walk(&rev
);
404 int cmd_log(int argc
, const char **argv
, const char *prefix
)
408 git_config(git_log_config
, NULL
);
410 if (diff_use_color_default
== -1)
411 diff_use_color_default
= git_use_color_default
;
413 init_revisions(&rev
, prefix
);
414 rev
.always_show_header
= 1;
415 cmd_log_init(argc
, argv
, prefix
, &rev
);
416 return cmd_log_walk(&rev
);
421 static const char *fmt_patch_suffix
= ".patch";
422 static int numbered
= 0;
423 static int auto_number
= 1;
425 static char *default_attach
= NULL
;
427 static char **extra_hdr
;
428 static int extra_hdr_nr
;
429 static int extra_hdr_alloc
;
431 static char **extra_to
;
432 static int extra_to_nr
;
433 static int extra_to_alloc
;
435 static char **extra_cc
;
436 static int extra_cc_nr
;
437 static int extra_cc_alloc
;
439 static void add_header(const char *value
)
441 int len
= strlen(value
);
442 while (len
&& value
[len
- 1] == '\n')
444 if (!strncasecmp(value
, "to: ", 4)) {
445 ALLOC_GROW(extra_to
, extra_to_nr
+ 1, extra_to_alloc
);
446 extra_to
[extra_to_nr
++] = xstrndup(value
+ 4, len
- 4);
449 if (!strncasecmp(value
, "cc: ", 4)) {
450 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
451 extra_cc
[extra_cc_nr
++] = xstrndup(value
+ 4, len
- 4);
454 ALLOC_GROW(extra_hdr
, extra_hdr_nr
+ 1, extra_hdr_alloc
);
455 extra_hdr
[extra_hdr_nr
++] = xstrndup(value
, len
);
458 #define THREAD_SHALLOW 1
459 #define THREAD_DEEP 2
460 static int thread
= 0;
462 static int git_format_config(const char *var
, const char *value
, void *cb
)
464 if (!strcmp(var
, "format.headers")) {
466 die("format.headers without value");
470 if (!strcmp(var
, "format.suffix"))
471 return git_config_string(&fmt_patch_suffix
, var
, value
);
472 if (!strcmp(var
, "format.cc")) {
474 return config_error_nonbool(var
);
475 ALLOC_GROW(extra_cc
, extra_cc_nr
+ 1, extra_cc_alloc
);
476 extra_cc
[extra_cc_nr
++] = xstrdup(value
);
479 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
482 if (!strcmp(var
, "format.numbered")) {
483 if (value
&& !strcasecmp(value
, "auto")) {
487 numbered
= git_config_bool(var
, value
);
488 auto_number
= auto_number
&& numbered
;
491 if (!strcmp(var
, "format.attach")) {
493 default_attach
= xstrdup(value
);
495 default_attach
= xstrdup(git_version_string
);
498 if (!strcmp(var
, "format.thread")) {
499 if (value
&& !strcasecmp(value
, "deep")) {
500 thread
= THREAD_DEEP
;
503 if (value
&& !strcasecmp(value
, "shallow")) {
504 thread
= THREAD_SHALLOW
;
507 thread
= git_config_bool(var
, value
) && THREAD_SHALLOW
;
511 return git_log_config(var
, value
, cb
);
514 static FILE *realstdout
= NULL
;
515 static const char *output_directory
= NULL
;
516 static int outdir_offset
;
518 static int reopen_stdout(struct commit
*commit
, struct rev_info
*rev
)
520 struct strbuf filename
= STRBUF_INIT
;
521 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
523 if (output_directory
) {
524 strbuf_addstr(&filename
, output_directory
);
526 PATH_MAX
- FORMAT_PATCH_NAME_MAX
- suffix_len
)
527 return error("name of output directory is too long");
528 if (filename
.buf
[filename
.len
- 1] != '/')
529 strbuf_addch(&filename
, '/');
532 get_patch_filename(commit
, rev
->nr
, fmt_patch_suffix
, &filename
);
534 if (!DIFF_OPT_TST(&rev
->diffopt
, QUIET
))
535 fprintf(realstdout
, "%s\n", filename
.buf
+ outdir_offset
);
537 if (freopen(filename
.buf
, "w", stdout
) == NULL
)
538 return error("Cannot open patch file %s", filename
.buf
);
540 strbuf_release(&filename
);
544 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
, const char *prefix
)
546 struct rev_info check_rev
;
547 struct commit
*commit
;
548 struct object
*o1
, *o2
;
549 unsigned flags1
, flags2
;
551 if (rev
->pending
.nr
!= 2)
552 die("Need exactly one range.");
554 o1
= rev
->pending
.objects
[0].item
;
556 o2
= rev
->pending
.objects
[1].item
;
559 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
564 /* given a range a..b get all patch ids for b..a */
565 init_revisions(&check_rev
, prefix
);
566 o1
->flags
^= UNINTERESTING
;
567 o2
->flags
^= UNINTERESTING
;
568 add_pending_object(&check_rev
, o1
, "o1");
569 add_pending_object(&check_rev
, o2
, "o2");
570 if (prepare_revision_walk(&check_rev
))
571 die("revision walk setup failed");
573 while ((commit
= get_revision(&check_rev
)) != NULL
) {
575 if (commit
->parents
&& commit
->parents
->next
)
578 add_commit_patch_id(commit
, ids
);
581 /* reset for next revision walk */
582 clear_commit_marks((struct commit
*)o1
,
583 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
584 clear_commit_marks((struct commit
*)o2
,
585 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
590 static void gen_message_id(struct rev_info
*info
, char *base
)
592 const char *committer
= git_committer_info(IDENT_WARN_ON_NO_NAME
);
593 const char *email_start
= strrchr(committer
, '<');
594 const char *email_end
= strrchr(committer
, '>');
595 struct strbuf buf
= STRBUF_INIT
;
596 if (!email_start
|| !email_end
|| email_start
> email_end
- 1)
597 die("Could not extract email from committer identity.");
598 strbuf_addf(&buf
, "%s.%lu.git.%.*s", base
,
599 (unsigned long) time(NULL
),
600 (int)(email_end
- email_start
- 1), email_start
+ 1);
601 info
->message_id
= strbuf_detach(&buf
, NULL
);
604 static void make_cover_letter(struct rev_info
*rev
, int use_stdout
,
605 int numbered
, int numbered_files
,
606 struct commit
*origin
,
607 int nr
, struct commit
**list
, struct commit
*head
)
609 const char *committer
;
610 const char *subject_start
= NULL
;
611 const char *body
= "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
613 const char *extra_headers
= rev
->extra_headers
;
615 struct strbuf sb
= STRBUF_INIT
;
617 const char *encoding
= "utf-8";
618 struct diff_options opts
;
619 int need_8bit_cte
= 0;
620 struct commit
*commit
= NULL
;
622 if (rev
->commit_format
!= CMIT_FMT_EMAIL
)
623 die("Cover letter needs email format");
625 committer
= git_committer_info(0);
627 if (!numbered_files
) {
629 * We fake a commit for the cover letter so we get the filename
632 commit
= xcalloc(1, sizeof(*commit
));
633 commit
->buffer
= xmalloc(400);
634 snprintf(commit
->buffer
, 400,
635 "tree 0000000000000000000000000000000000000000\n"
640 sha1_to_hex(head
->object
.sha1
), committer
, committer
);
643 if (!use_stdout
&& reopen_stdout(commit
, rev
))
648 free(commit
->buffer
);
652 log_write_email_headers(rev
, head
, &subject_start
, &extra_headers
,
656 pp_user_info(NULL
, CMIT_FMT_EMAIL
, &sb
, committer
, DATE_RFC2822
,
658 pp_title_line(CMIT_FMT_EMAIL
, &msg
, &sb
, subject_start
, extra_headers
,
659 encoding
, need_8bit_cte
);
660 pp_remainder(CMIT_FMT_EMAIL
, &msg
, &sb
, 0);
661 printf("%s\n", sb
.buf
);
670 for (i
= 0; i
< nr
; i
++)
671 shortlog_add_commit(&log
, list
[i
]);
673 shortlog_output(&log
);
676 * We can only do diffstat with a unique reference point
681 memcpy(&opts
, &rev
->diffopt
, sizeof(opts
));
682 opts
.output_format
= DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
684 diff_setup_done(&opts
);
686 diff_tree_sha1(origin
->tree
->object
.sha1
,
687 head
->tree
->object
.sha1
,
695 static const char *clean_message_id(const char *msg_id
)
698 const char *a
, *z
, *m
;
701 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
706 if (!isspace(ch
) && (ch
!= '>'))
711 die("insane in-reply-to: %s", msg_id
);
714 return xmemdupz(a
, z
- a
);
717 static const char *set_outdir(const char *prefix
, const char *output_directory
)
719 if (output_directory
&& is_absolute_path(output_directory
))
720 return output_directory
;
722 if (!prefix
|| !*prefix
) {
723 if (output_directory
)
724 return output_directory
;
725 /* The user did not explicitly ask for "./" */
730 outdir_offset
= strlen(prefix
);
731 if (!output_directory
)
734 return xstrdup(prefix_filename(prefix
, outdir_offset
,
738 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
740 struct commit
*commit
;
741 struct commit
**list
= NULL
;
743 int nr
= 0, total
, i
, j
;
745 int start_number
= -1;
746 int keep_subject
= 0;
747 int numbered_files
= 0; /* _just_ numbers */
748 int subject_prefix
= 0;
749 int ignore_if_in_upstream
= 0;
750 int cover_letter
= 0;
751 int boundary_count
= 0;
752 int no_binary_diff
= 0;
753 struct commit
*origin
= NULL
, *head
= NULL
;
754 const char *in_reply_to
= NULL
;
755 struct patch_ids ids
;
756 char *add_signoff
= NULL
;
757 struct strbuf buf
= STRBUF_INIT
;
759 git_config(git_format_config
, NULL
);
760 init_revisions(&rev
, prefix
);
761 rev
.commit_format
= CMIT_FMT_EMAIL
;
762 rev
.verbose_header
= 1;
764 rev
.combine_merges
= 0;
765 rev
.ignore_merges
= 1;
766 DIFF_OPT_SET(&rev
.diffopt
, RECURSIVE
);
768 rev
.subject_prefix
= fmt_patch_subject_prefix
;
770 if (default_attach
) {
771 rev
.mime_boundary
= default_attach
;
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("bogus committer info %s", 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
], "--no-attach")) {
838 rev
.mime_boundary
= NULL
;
841 else if (!strcmp(argv
[i
], "--inline")) {
842 rev
.mime_boundary
= git_version_string
;
845 else if (!prefixcmp(argv
[i
], "--inline=")) {
846 rev
.mime_boundary
= argv
[i
] + 9;
849 else if (!strcmp(argv
[i
], "--ignore-if-in-upstream"))
850 ignore_if_in_upstream
= 1;
851 else if (!strcmp(argv
[i
], "--thread")
852 || !strcmp(argv
[i
], "--thread=shallow"))
853 thread
= THREAD_SHALLOW
;
854 else if (!strcmp(argv
[i
], "--thread=deep"))
855 thread
= THREAD_DEEP
;
856 else if (!strcmp(argv
[i
], "--no-thread"))
858 else if (!prefixcmp(argv
[i
], "--in-reply-to="))
859 in_reply_to
= argv
[i
] + 14;
860 else if (!strcmp(argv
[i
], "--in-reply-to")) {
863 die("Need a Message-Id for --in-reply-to");
864 in_reply_to
= argv
[i
];
865 } else if (!prefixcmp(argv
[i
], "--subject-prefix=")) {
867 rev
.subject_prefix
= argv
[i
] + 17;
868 } else if (!prefixcmp(argv
[i
], "--suffix="))
869 fmt_patch_suffix
= argv
[i
] + 9;
870 else if (!strcmp(argv
[i
], "--cover-letter"))
872 else if (!strcmp(argv
[i
], "--no-binary"))
874 else if (!prefixcmp(argv
[i
], "--add-header="))
875 add_header(argv
[i
] + 13);
881 for (i
= 0; i
< extra_hdr_nr
; i
++) {
882 strbuf_addstr(&buf
, extra_hdr
[i
]);
883 strbuf_addch(&buf
, '\n');
887 strbuf_addstr(&buf
, "To: ");
888 for (i
= 0; i
< extra_to_nr
; i
++) {
890 strbuf_addstr(&buf
, " ");
891 strbuf_addstr(&buf
, extra_to
[i
]);
892 if (i
+ 1 < extra_to_nr
)
893 strbuf_addch(&buf
, ',');
894 strbuf_addch(&buf
, '\n');
898 strbuf_addstr(&buf
, "Cc: ");
899 for (i
= 0; i
< extra_cc_nr
; i
++) {
901 strbuf_addstr(&buf
, " ");
902 strbuf_addstr(&buf
, extra_cc
[i
]);
903 if (i
+ 1 < extra_cc_nr
)
904 strbuf_addch(&buf
, ',');
905 strbuf_addch(&buf
, '\n');
908 rev
.extra_headers
= strbuf_detach(&buf
, 0);
910 if (start_number
< 0)
912 if (numbered
&& keep_subject
)
913 die ("-n and -k are mutually exclusive.");
914 if (keep_subject
&& subject_prefix
)
915 die ("--subject-prefix and -k are mutually exclusive.");
917 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
919 die ("unrecognized argument: %s", argv
[1]);
921 if (!rev
.diffopt
.output_format
922 || rev
.diffopt
.output_format
== DIFF_FORMAT_PATCH
)
923 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_PATCH
;
925 if (!DIFF_OPT_TST(&rev
.diffopt
, TEXT
) && !no_binary_diff
)
926 DIFF_OPT_SET(&rev
.diffopt
, BINARY
);
929 output_directory
= set_outdir(prefix
, output_directory
);
931 if (output_directory
) {
933 die("standard output, or directory, which one?");
934 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
935 die("Could not create directory %s",
939 if (rev
.pending
.nr
== 1) {
940 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
942 * This is traditional behaviour of "git format-patch
943 * origin" that prepares what the origin side still
946 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
947 add_head_to_pending(&rev
);
950 * Otherwise, it is "format-patch -22 HEAD", and/or
951 * "format-patch --root HEAD". The user wants
952 * get_revision() to do the usual traversal.
957 * We cannot move this anywhere earlier because we do want to
958 * know if --root was given explicitly from the comand line.
960 rev
.show_root_diff
= 1;
963 /* remember the range */
965 for (i
= 0; i
< rev
.pending
.nr
; i
++) {
966 struct object
*o
= rev
.pending
.objects
[i
].item
;
967 if (!(o
->flags
& UNINTERESTING
))
968 head
= (struct commit
*)o
;
970 /* We can't generate a cover letter without any patches */
975 if (ignore_if_in_upstream
)
976 get_patch_ids(&rev
, &ids
, prefix
);
979 realstdout
= xfdopen(xdup(1), "w");
981 if (prepare_revision_walk(&rev
))
982 die("revision walk setup failed");
984 while ((commit
= get_revision(&rev
)) != NULL
) {
985 if (commit
->object
.flags
& BOUNDARY
) {
987 origin
= (boundary_count
== 1) ? commit
: NULL
;
992 if (commit
->parents
&& commit
->parents
->next
)
995 if (ignore_if_in_upstream
&&
996 has_commit_patch_id(commit
, &ids
))
1000 list
= xrealloc(list
, nr
* sizeof(list
[0]));
1001 list
[nr
- 1] = commit
;
1004 if (!keep_subject
&& auto_number
&& total
> 1)
1007 rev
.total
= total
+ start_number
- 1;
1008 if (in_reply_to
|| thread
|| cover_letter
)
1009 rev
.ref_message_ids
= xcalloc(1, sizeof(struct string_list
));
1011 const char *msgid
= clean_message_id(in_reply_to
);
1012 string_list_append(msgid
, rev
.ref_message_ids
);
1014 rev
.numbered_files
= numbered_files
;
1015 rev
.patch_suffix
= fmt_patch_suffix
;
1018 gen_message_id(&rev
, "cover");
1019 make_cover_letter(&rev
, use_stdout
, numbered
, numbered_files
,
1020 origin
, nr
, list
, head
);
1024 rev
.add_signoff
= add_signoff
;
1028 rev
.nr
= total
- nr
+ (start_number
- 1);
1029 /* Make the second and subsequent mails replies to the first */
1031 /* Have we already had a message ID? */
1032 if (rev
.message_id
) {
1034 * For deep threading: make every mail
1035 * a reply to the previous one, no
1036 * matter what other options are set.
1038 * For shallow threading:
1040 * Without --cover-letter and
1041 * --in-reply-to, make every mail a
1042 * reply to the one before.
1044 * With --in-reply-to but no
1045 * --cover-letter, make every mail a
1046 * reply to the <reply-to>.
1048 * With --cover-letter, make every
1049 * mail but the cover letter a reply
1050 * to the cover letter. The cover
1051 * letter is a reply to the
1052 * --in-reply-to, if specified.
1054 if (thread
== THREAD_SHALLOW
1055 && rev
.ref_message_ids
->nr
> 0
1056 && (!cover_letter
|| rev
.nr
> 1))
1057 free(rev
.message_id
);
1059 string_list_append(rev
.message_id
,
1060 rev
.ref_message_ids
);
1062 gen_message_id(&rev
, sha1_to_hex(commit
->object
.sha1
));
1065 if (!use_stdout
&& reopen_stdout(numbered_files
? NULL
: commit
,
1067 die("Failed to create output files");
1068 shown
= log_tree_commit(&rev
, commit
);
1069 free(commit
->buffer
);
1070 commit
->buffer
= NULL
;
1072 /* We put one extra blank line between formatted
1073 * patches and this flag is used by log-tree code
1074 * to see if it needs to emit a LF before showing
1075 * the log; when using one file per patch, we do
1076 * not want the extra blank line.
1081 if (rev
.mime_boundary
)
1082 printf("\n--%s%s--\n\n\n",
1083 mime_boundary_leader
,
1086 printf("-- \n%s\n\n", git_version_string
);
1092 if (ignore_if_in_upstream
)
1093 free_patch_ids(&ids
);
1097 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
1099 unsigned char sha1
[20];
1100 if (get_sha1(arg
, sha1
) == 0) {
1101 struct commit
*commit
= lookup_commit_reference(sha1
);
1103 commit
->object
.flags
|= flags
;
1104 add_pending_object(revs
, &commit
->object
, arg
);
1111 static const char cherry_usage
[] =
1112 "git cherry [-v] [<upstream> [<head> [<limit>]]]";
1113 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
1115 struct rev_info revs
;
1116 struct patch_ids ids
;
1117 struct commit
*commit
;
1118 struct commit_list
*list
= NULL
;
1119 struct branch
*current_branch
;
1120 const char *upstream
;
1121 const char *head
= "HEAD";
1122 const char *limit
= NULL
;
1125 if (argc
> 1 && !strcmp(argv
[1], "-v")) {
1142 current_branch
= branch_get(NULL
);
1143 if (!current_branch
|| !current_branch
->merge
1144 || !current_branch
->merge
[0]
1145 || !current_branch
->merge
[0]->dst
) {
1146 fprintf(stderr
, "Could not find a tracked"
1147 " remote branch, please"
1148 " specify <upstream> manually.\n");
1149 usage(cherry_usage
);
1152 upstream
= current_branch
->merge
[0]->dst
;
1155 init_revisions(&revs
, prefix
);
1157 revs
.combine_merges
= 0;
1158 revs
.ignore_merges
= 1;
1159 DIFF_OPT_SET(&revs
.diffopt
, RECURSIVE
);
1161 if (add_pending_commit(head
, &revs
, 0))
1162 die("Unknown commit %s", head
);
1163 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
1164 die("Unknown commit %s", upstream
);
1166 /* Don't say anything if head and upstream are the same. */
1167 if (revs
.pending
.nr
== 2) {
1168 struct object_array_entry
*o
= revs
.pending
.objects
;
1169 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
1173 get_patch_ids(&revs
, &ids
, prefix
);
1175 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
1176 die("Unknown commit %s", limit
);
1178 /* reverse the list of commits */
1179 if (prepare_revision_walk(&revs
))
1180 die("revision walk setup failed");
1181 while ((commit
= get_revision(&revs
)) != NULL
) {
1183 if (commit
->parents
&& commit
->parents
->next
)
1186 commit_list_insert(commit
, &list
);
1192 commit
= list
->item
;
1193 if (has_commit_patch_id(commit
, &ids
))
1197 struct strbuf buf
= STRBUF_INIT
;
1198 pretty_print_commit(CMIT_FMT_ONELINE
, commit
,
1199 &buf
, 0, NULL
, NULL
, 0, 0);
1200 printf("%c %s %s\n", sign
,
1201 sha1_to_hex(commit
->object
.sha1
), buf
.buf
);
1202 strbuf_release(&buf
);
1205 printf("%c %s\n", sign
,
1206 sha1_to_hex(commit
->object
.sha1
));
1212 free_patch_ids(&ids
);