2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
14 #include "reflog-walk.h"
15 #include "patch-ids.h"
18 static int default_show_root
= 1;
19 static const char *fmt_patch_subject_prefix
= "PATCH";
21 /* this is in builtin-diff.c */
22 void add_head(struct rev_info
*revs
);
24 static void add_name_decoration(const char *prefix
, const char *name
, struct object
*obj
)
26 int plen
= strlen(prefix
);
27 int nlen
= strlen(name
);
28 struct name_decoration
*res
= xmalloc(sizeof(struct name_decoration
) + plen
+ nlen
);
29 memcpy(res
->name
, prefix
, plen
);
30 memcpy(res
->name
+ plen
, name
, nlen
+ 1);
31 res
->next
= add_decoration(&name_decoration
, obj
, res
);
34 static int add_ref_decoration(const char *refname
, const unsigned char *sha1
, int flags
, void *cb_data
)
36 struct object
*obj
= parse_object(sha1
);
39 add_name_decoration("", refname
, obj
);
40 while (obj
->type
== OBJ_TAG
) {
41 obj
= ((struct tag
*)obj
)->tagged
;
44 add_name_decoration("tag: ", refname
, obj
);
49 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
55 rev
->abbrev
= DEFAULT_ABBREV
;
56 rev
->commit_format
= CMIT_FMT_DEFAULT
;
57 rev
->verbose_header
= 1;
58 DIFF_OPT_SET(&rev
->diffopt
, RECURSIVE
);
59 rev
->show_root_diff
= default_show_root
;
60 rev
->subject_prefix
= fmt_patch_subject_prefix
;
61 argc
= setup_revisions(argc
, argv
, rev
, "HEAD");
62 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
)
63 rev
->always_show_header
= 0;
64 if (DIFF_OPT_TST(&rev
->diffopt
, FOLLOW_RENAMES
)) {
65 rev
->always_show_header
= 0;
66 if (rev
->diffopt
.nr_paths
!= 1)
67 usage("git logs can only follow renames on one pathname at a time");
69 for (i
= 1; i
< argc
; i
++) {
70 const char *arg
= argv
[i
];
71 if (!strcmp(arg
, "--decorate")) {
73 for_each_ref(add_ref_decoration
, NULL
);
76 die("unrecognized argument: %s", arg
);
81 * This gives a rough estimate for how many commits we
82 * will print out in the list.
84 static int estimate_commit_count(struct rev_info
*rev
, struct commit_list
*list
)
89 struct commit
*commit
= list
->item
;
90 unsigned int flags
= commit
->object
.flags
;
92 if (!(flags
& (TREESAME
| UNINTERESTING
)))
98 static void show_early_header(struct rev_info
*rev
, const char *stage
, int nr
)
100 if (rev
->shown_one
) {
102 if (rev
->commit_format
!= CMIT_FMT_ONELINE
)
103 putchar(rev
->diffopt
.line_termination
);
105 printf("Final output: %d %s\n", nr
, stage
);
108 struct itimerval early_output_timer
;
110 static void log_show_early(struct rev_info
*revs
, struct commit_list
*list
)
112 int i
= revs
->early_output
;
115 sort_in_topological_order(&list
, revs
->lifo
);
117 struct commit
*commit
= list
->item
;
118 switch (simplify_commit(revs
, commit
)) {
121 int n
= estimate_commit_count(revs
, list
);
122 show_early_header(revs
, "incomplete", n
);
125 log_tree_commit(revs
, commit
);
136 /* Did we already get enough commits for the early output? */
141 * ..if no, then repeat it twice a second until we
144 * NOTE! We don't use "it_interval", because if the
145 * reader isn't listening, we want our output to be
146 * throttled by the writing, and not have the timer
147 * trigger every second even if we're blocked on a
150 early_output_timer
.it_value
.tv_sec
= 0;
151 early_output_timer
.it_value
.tv_usec
= 500000;
152 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
155 static void early_output(int signal
)
157 show_early_output
= log_show_early
;
160 static void setup_early_output(struct rev_info
*rev
)
165 * Set up the signal handler, minimally intrusively:
166 * we only set a single volatile integer word (not
167 * using sigatomic_t - trying to avoid unnecessary
168 * system dependencies and headers), and using
171 memset(&sa
, 0, sizeof(sa
));
172 sa
.sa_handler
= early_output
;
173 sigemptyset(&sa
.sa_mask
);
174 sa
.sa_flags
= SA_RESTART
;
175 sigaction(SIGALRM
, &sa
, NULL
);
178 * If we can get the whole output in less than a
179 * tenth of a second, don't even bother doing the
180 * early-output thing..
182 * This is a one-time-only trigger.
184 early_output_timer
.it_value
.tv_sec
= 0;
185 early_output_timer
.it_value
.tv_usec
= 100000;
186 setitimer(ITIMER_REAL
, &early_output_timer
, NULL
);
189 static void finish_early_output(struct rev_info
*rev
)
191 int n
= estimate_commit_count(rev
, rev
->commits
);
192 signal(SIGALRM
, SIG_IGN
);
193 show_early_header(rev
, "done", n
);
196 static int cmd_log_walk(struct rev_info
*rev
)
198 struct commit
*commit
;
200 if (rev
->early_output
)
201 setup_early_output(rev
);
203 prepare_revision_walk(rev
);
205 if (rev
->early_output
)
206 finish_early_output(rev
);
208 while ((commit
= get_revision(rev
)) != NULL
) {
209 log_tree_commit(rev
, commit
);
210 if (!rev
->reflog_info
) {
211 /* we allow cycles in reflog ancestry */
212 free(commit
->buffer
);
213 commit
->buffer
= NULL
;
215 free_commit_list(commit
->parents
);
216 commit
->parents
= NULL
;
221 static int git_log_config(const char *var
, const char *value
)
223 if (!strcmp(var
, "format.subjectprefix")) {
225 die("format.subjectprefix without value");
226 fmt_patch_subject_prefix
= xstrdup(value
);
229 if (!strcmp(var
, "log.showroot")) {
230 default_show_root
= git_config_bool(var
, value
);
233 return git_diff_ui_config(var
, value
);
236 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
240 git_config(git_log_config
);
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 int show_object(const unsigned char *sha1
, int suppress_header
)
253 enum object_type type
;
254 char *buf
= read_sha1_file(sha1
, &type
, &size
);
258 return error("Could not read object %s", sha1_to_hex(sha1
));
261 while (offset
< size
&& buf
[offset
++] != '\n') {
262 int new_offset
= offset
;
263 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
269 fwrite(buf
+ offset
, size
- offset
, 1, stdout
);
274 static int show_tree_object(const unsigned char *sha1
,
275 const char *base
, int baselen
,
276 const char *pathname
, unsigned mode
, int stage
)
278 printf("%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
282 int cmd_show(int argc
, const char **argv
, const char *prefix
)
285 struct object_array_entry
*objects
;
286 int i
, count
, ret
= 0;
288 git_config(git_log_config
);
289 init_revisions(&rev
, prefix
);
291 rev
.combine_merges
= 1;
292 rev
.dense_combined_merges
= 1;
293 rev
.always_show_header
= 1;
294 rev
.ignore_merges
= 0;
296 cmd_log_init(argc
, argv
, prefix
, &rev
);
298 count
= rev
.pending
.nr
;
299 objects
= rev
.pending
.objects
;
300 for (i
= 0; i
< count
&& !ret
; i
++) {
301 struct object
*o
= objects
[i
].item
;
302 const char *name
= objects
[i
].name
;
305 ret
= show_object(o
->sha1
, 0);
308 struct tag
*t
= (struct tag
*)o
;
310 printf("%stag %s%s\n\n",
311 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
313 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
314 ret
= show_object(o
->sha1
, 1);
315 objects
[i
].item
= (struct object
*)t
->tagged
;
320 printf("%stree %s%s\n\n",
321 diff_get_color_opt(&rev
.diffopt
, DIFF_COMMIT
),
323 diff_get_color_opt(&rev
.diffopt
, DIFF_RESET
));
324 read_tree_recursive((struct tree
*)o
, "", 0, 0, NULL
,
328 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
329 rev
.pending
.objects
= NULL
;
330 add_object_array(o
, name
, &rev
.pending
);
331 ret
= cmd_log_walk(&rev
);
334 ret
= error("Unknown type: %d", o
->type
);
342 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
344 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
348 git_config(git_log_config
);
349 init_revisions(&rev
, prefix
);
350 init_reflog_walk(&rev
.reflog_info
);
351 rev
.abbrev_commit
= 1;
352 rev
.verbose_header
= 1;
353 cmd_log_init(argc
, argv
, prefix
, &rev
);
356 * This means that we override whatever commit format the user gave
357 * on the cmd line. Sad, but cmd_log_init() currently doesn't
358 * allow us to set a different default.
360 rev
.commit_format
= CMIT_FMT_ONELINE
;
361 rev
.always_show_header
= 1;
364 * We get called through "git reflog", so unlike the other log
365 * routines, we need to set up our pager manually..
369 return cmd_log_walk(&rev
);
372 int cmd_log(int argc
, const char **argv
, const char *prefix
)
376 git_config(git_log_config
);
377 init_revisions(&rev
, prefix
);
378 rev
.always_show_header
= 1;
379 cmd_log_init(argc
, argv
, prefix
, &rev
);
380 return cmd_log_walk(&rev
);
384 #define FORMAT_PATCH_NAME_MAX 64
386 static int istitlechar(char c
)
388 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') ||
389 (c
>= '0' && c
<= '9') || c
== '.' || c
== '_';
392 static char *extra_headers
= NULL
;
393 static int extra_headers_size
= 0;
394 static const char *fmt_patch_suffix
= ".patch";
395 static int numbered
= 0;
396 static int auto_number
= 0;
398 static int git_format_config(const char *var
, const char *value
)
400 if (!strcmp(var
, "format.headers")) {
404 die("format.headers without value");
406 extra_headers_size
+= len
+ 1;
407 extra_headers
= xrealloc(extra_headers
, extra_headers_size
);
408 extra_headers
[extra_headers_size
- len
- 1] = 0;
409 strcat(extra_headers
, value
);
412 if (!strcmp(var
, "format.suffix")) {
414 die("format.suffix without value");
415 fmt_patch_suffix
= xstrdup(value
);
418 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
421 if (!strcmp(var
, "format.numbered")) {
422 if (!strcasecmp(value
, "auto")) {
427 numbered
= git_config_bool(var
, value
);
431 return git_log_config(var
, value
);
435 static FILE *realstdout
= NULL
;
436 static const char *output_directory
= NULL
;
438 static int reopen_stdout(struct commit
*commit
, int nr
, int keep_subject
,
441 char filename
[PATH_MAX
];
444 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
446 if (output_directory
) {
447 if (strlen(output_directory
) >=
448 sizeof(filename
) - FORMAT_PATCH_NAME_MAX
- suffix_len
)
449 return error("name of output directory is too long");
450 strlcpy(filename
, output_directory
, sizeof(filename
) - suffix_len
);
451 len
= strlen(filename
);
452 if (filename
[len
- 1] != '/')
453 filename
[len
++] = '/';
456 if (numbered_files
) {
457 sprintf(filename
+ len
, "%d", nr
);
458 len
= strlen(filename
);
461 sprintf(filename
+ len
, "%04d", nr
);
462 len
= strlen(filename
);
464 sol
= strstr(commit
->buffer
, "\n\n");
469 /* strip [PATCH] or [PATCH blabla] */
470 if (!keep_subject
&& !prefixcmp(sol
, "[PATCH")) {
471 char *eos
= strchr(sol
+ 6, ']');
473 while (isspace(*eos
))
480 j
< FORMAT_PATCH_NAME_MAX
- suffix_len
- 5 &&
481 len
< sizeof(filename
) - suffix_len
&&
482 sol
[j
] && sol
[j
] != '\n';
484 if (istitlechar(sol
[j
])) {
486 filename
[len
++] = '-';
489 filename
[len
++] = sol
[j
];
491 while (sol
[j
+ 1] == '.')
496 while (filename
[len
- 1] == '.'
497 || filename
[len
- 1] == '-')
501 if (len
+ suffix_len
>= sizeof(filename
))
502 return error("Patch pathname too long");
503 strcpy(filename
+ len
, fmt_patch_suffix
);
506 fprintf(realstdout
, "%s\n", filename
);
507 if (freopen(filename
, "w", stdout
) == NULL
)
508 return error("Cannot open patch file %s",filename
);
513 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
, const char *prefix
)
515 struct rev_info check_rev
;
516 struct commit
*commit
;
517 struct object
*o1
, *o2
;
518 unsigned flags1
, flags2
;
520 if (rev
->pending
.nr
!= 2)
521 die("Need exactly one range.");
523 o1
= rev
->pending
.objects
[0].item
;
525 o2
= rev
->pending
.objects
[1].item
;
528 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
533 /* given a range a..b get all patch ids for b..a */
534 init_revisions(&check_rev
, prefix
);
535 o1
->flags
^= UNINTERESTING
;
536 o2
->flags
^= UNINTERESTING
;
537 add_pending_object(&check_rev
, o1
, "o1");
538 add_pending_object(&check_rev
, o2
, "o2");
539 prepare_revision_walk(&check_rev
);
541 while ((commit
= get_revision(&check_rev
)) != NULL
) {
543 if (commit
->parents
&& commit
->parents
->next
)
546 add_commit_patch_id(commit
, ids
);
549 /* reset for next revision walk */
550 clear_commit_marks((struct commit
*)o1
,
551 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
552 clear_commit_marks((struct commit
*)o2
,
553 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
558 static void gen_message_id(char *dest
, unsigned int length
, char *base
)
560 const char *committer
= git_committer_info(IDENT_WARN_ON_NO_NAME
);
561 const char *email_start
= strrchr(committer
, '<');
562 const char *email_end
= strrchr(committer
, '>');
563 if(!email_start
|| !email_end
|| email_start
> email_end
- 1)
564 die("Could not extract email from committer identity.");
565 snprintf(dest
, length
, "%s.%lu.git.%.*s", base
,
566 (unsigned long) time(NULL
),
567 (int)(email_end
- email_start
- 1), email_start
+ 1);
570 static const char *clean_message_id(const char *msg_id
)
573 const char *a
, *z
, *m
;
576 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
581 if (!isspace(ch
) && (ch
!= '>'))
586 die("insane in-reply-to: %s", msg_id
);
589 return xmemdupz(a
, z
- a
);
592 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
594 struct commit
*commit
;
595 struct commit
**list
= NULL
;
597 int nr
= 0, total
, i
, j
;
599 int start_number
= -1;
600 int keep_subject
= 0;
601 int numbered_files
= 0; /* _just_ numbers */
602 int subject_prefix
= 0;
603 int ignore_if_in_upstream
= 0;
605 const char *in_reply_to
= NULL
;
606 struct patch_ids ids
;
607 char *add_signoff
= NULL
;
608 char message_id
[1024];
609 char ref_message_id
[1024];
611 git_config(git_format_config
);
612 init_revisions(&rev
, prefix
);
613 rev
.commit_format
= CMIT_FMT_EMAIL
;
614 rev
.verbose_header
= 1;
616 rev
.combine_merges
= 0;
617 rev
.ignore_merges
= 1;
618 rev
.diffopt
.msg_sep
= "";
619 DIFF_OPT_SET(&rev
.diffopt
, RECURSIVE
);
621 rev
.subject_prefix
= fmt_patch_subject_prefix
;
622 rev
.extra_headers
= extra_headers
;
625 * Parse the arguments before setup_revisions(), or something
626 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
627 * possibly a valid SHA1.
629 for (i
= 1, j
= 1; i
< argc
; i
++) {
630 if (!strcmp(argv
[i
], "--stdout"))
632 else if (!strcmp(argv
[i
], "-n") ||
633 !strcmp(argv
[i
], "--numbered"))
635 else if (!strcmp(argv
[i
], "-N") ||
636 !strcmp(argv
[i
], "--no-numbered")) {
640 else if (!prefixcmp(argv
[i
], "--start-number="))
641 start_number
= strtol(argv
[i
] + 15, NULL
, 10);
642 else if (!strcmp(argv
[i
], "--numbered-files"))
644 else if (!strcmp(argv
[i
], "--start-number")) {
647 die("Need a number for --start-number");
648 start_number
= strtol(argv
[i
], NULL
, 10);
650 else if (!strcmp(argv
[i
], "-k") ||
651 !strcmp(argv
[i
], "--keep-subject")) {
655 else if (!strcmp(argv
[i
], "--output-directory") ||
656 !strcmp(argv
[i
], "-o")) {
659 die("Which directory?");
660 if (output_directory
)
661 die("Two output directories?");
662 output_directory
= argv
[i
];
664 else if (!strcmp(argv
[i
], "--signoff") ||
665 !strcmp(argv
[i
], "-s")) {
666 const char *committer
;
668 committer
= git_committer_info(IDENT_ERROR_ON_NO_NAME
);
669 endpos
= strchr(committer
, '>');
671 die("bogos committer info %s\n", committer
);
672 add_signoff
= xmemdupz(committer
, endpos
- committer
+ 1);
674 else if (!strcmp(argv
[i
], "--attach")) {
675 rev
.mime_boundary
= git_version_string
;
678 else if (!prefixcmp(argv
[i
], "--attach=")) {
679 rev
.mime_boundary
= argv
[i
] + 9;
682 else if (!strcmp(argv
[i
], "--inline")) {
683 rev
.mime_boundary
= git_version_string
;
686 else if (!prefixcmp(argv
[i
], "--inline=")) {
687 rev
.mime_boundary
= argv
[i
] + 9;
690 else if (!strcmp(argv
[i
], "--ignore-if-in-upstream"))
691 ignore_if_in_upstream
= 1;
692 else if (!strcmp(argv
[i
], "--thread"))
694 else if (!prefixcmp(argv
[i
], "--in-reply-to="))
695 in_reply_to
= argv
[i
] + 14;
696 else if (!strcmp(argv
[i
], "--in-reply-to")) {
699 die("Need a Message-Id for --in-reply-to");
700 in_reply_to
= argv
[i
];
701 } else if (!prefixcmp(argv
[i
], "--subject-prefix=")) {
703 rev
.subject_prefix
= argv
[i
] + 17;
704 } else if (!prefixcmp(argv
[i
], "--suffix="))
705 fmt_patch_suffix
= argv
[i
] + 9;
711 if (start_number
< 0)
713 if (numbered
&& keep_subject
)
714 die ("-n and -k are mutually exclusive.");
715 if (keep_subject
&& subject_prefix
)
716 die ("--subject-prefix and -k are mutually exclusive.");
717 if (numbered_files
&& use_stdout
)
718 die ("--numbered-files and --stdout are mutually exclusive.");
720 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
722 die ("unrecognized argument: %s", argv
[1]);
724 if (!rev
.diffopt
.output_format
)
725 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_PATCH
;
727 if (!DIFF_OPT_TST(&rev
.diffopt
, TEXT
))
728 DIFF_OPT_SET(&rev
.diffopt
, BINARY
);
730 if (!output_directory
&& !use_stdout
)
731 output_directory
= prefix
;
733 if (output_directory
) {
735 die("standard output, or directory, which one?");
736 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
737 die("Could not create directory %s",
741 if (rev
.pending
.nr
== 1) {
742 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
744 * This is traditional behaviour of "git format-patch
745 * origin" that prepares what the origin side still
748 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
752 * Otherwise, it is "format-patch -22 HEAD", and/or
753 * "format-patch --root HEAD". The user wants
754 * get_revision() to do the usual traversal.
758 if (ignore_if_in_upstream
)
759 get_patch_ids(&rev
, &ids
, prefix
);
762 realstdout
= xfdopen(xdup(1), "w");
764 prepare_revision_walk(&rev
);
765 while ((commit
= get_revision(&rev
)) != NULL
) {
767 if (commit
->parents
&& commit
->parents
->next
)
770 if (ignore_if_in_upstream
&&
771 has_commit_patch_id(commit
, &ids
))
775 list
= xrealloc(list
, nr
* sizeof(list
[0]));
776 list
[nr
- 1] = commit
;
779 if (!keep_subject
&& auto_number
&& total
> 1)
782 rev
.total
= total
+ start_number
- 1;
783 rev
.add_signoff
= add_signoff
;
785 rev
.ref_message_id
= clean_message_id(in_reply_to
);
789 rev
.nr
= total
- nr
+ (start_number
- 1);
790 /* Make the second and subsequent mails replies to the first */
792 if (nr
== (total
- 2)) {
793 strncpy(ref_message_id
, message_id
,
794 sizeof(ref_message_id
));
795 ref_message_id
[sizeof(ref_message_id
)-1]='\0';
796 rev
.ref_message_id
= ref_message_id
;
798 gen_message_id(message_id
, sizeof(message_id
),
799 sha1_to_hex(commit
->object
.sha1
));
800 rev
.message_id
= message_id
;
803 if (reopen_stdout(commit
, rev
.nr
, keep_subject
,
805 die("Failed to create output files");
806 shown
= log_tree_commit(&rev
, commit
);
807 free(commit
->buffer
);
808 commit
->buffer
= NULL
;
810 /* We put one extra blank line between formatted
811 * patches and this flag is used by log-tree code
812 * to see if it needs to emit a LF before showing
813 * the log; when using one file per patch, we do
814 * not want the extra blank line.
819 if (rev
.mime_boundary
)
820 printf("\n--%s%s--\n\n\n",
821 mime_boundary_leader
,
824 printf("-- \n%s\n\n", git_version_string
);
830 if (ignore_if_in_upstream
)
831 free_patch_ids(&ids
);
835 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
837 unsigned char sha1
[20];
838 if (get_sha1(arg
, sha1
) == 0) {
839 struct commit
*commit
= lookup_commit_reference(sha1
);
841 commit
->object
.flags
|= flags
;
842 add_pending_object(revs
, &commit
->object
, arg
);
849 static const char cherry_usage
[] =
850 "git-cherry [-v] <upstream> [<head>] [<limit>]";
851 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
853 struct rev_info revs
;
854 struct patch_ids ids
;
855 struct commit
*commit
;
856 struct commit_list
*list
= NULL
;
857 const char *upstream
;
858 const char *head
= "HEAD";
859 const char *limit
= NULL
;
862 if (argc
> 1 && !strcmp(argv
[1], "-v")) {
882 init_revisions(&revs
, prefix
);
884 revs
.combine_merges
= 0;
885 revs
.ignore_merges
= 1;
886 DIFF_OPT_SET(&revs
.diffopt
, RECURSIVE
);
888 if (add_pending_commit(head
, &revs
, 0))
889 die("Unknown commit %s", head
);
890 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
891 die("Unknown commit %s", upstream
);
893 /* Don't say anything if head and upstream are the same. */
894 if (revs
.pending
.nr
== 2) {
895 struct object_array_entry
*o
= revs
.pending
.objects
;
896 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
900 get_patch_ids(&revs
, &ids
, prefix
);
902 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
903 die("Unknown commit %s", limit
);
905 /* reverse the list of commits */
906 prepare_revision_walk(&revs
);
907 while ((commit
= get_revision(&revs
)) != NULL
) {
909 if (commit
->parents
&& commit
->parents
->next
)
912 commit_list_insert(commit
, &list
);
919 if (has_commit_patch_id(commit
, &ids
))
924 strbuf_init(&buf
, 0);
925 pretty_print_commit(CMIT_FMT_ONELINE
, commit
,
926 &buf
, 0, NULL
, NULL
, 0, 0);
927 printf("%c %s %s\n", sign
,
928 sha1_to_hex(commit
->object
.sha1
), buf
.buf
);
929 strbuf_release(&buf
);
932 printf("%c %s\n", sign
,
933 sha1_to_hex(commit
->object
.sha1
));
939 free_patch_ids(&ids
);