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 rev
->diffopt
.recursive
= 1;
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 (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
);
80 static int cmd_log_walk(struct rev_info
*rev
)
82 struct commit
*commit
;
84 prepare_revision_walk(rev
);
85 while ((commit
= get_revision(rev
)) != NULL
) {
86 log_tree_commit(rev
, commit
);
87 if (!rev
->reflog_info
) {
88 /* we allow cycles in reflog ancestry */
90 commit
->buffer
= NULL
;
92 free_commit_list(commit
->parents
);
93 commit
->parents
= NULL
;
98 static int git_log_config(const char *var
, const char *value
)
100 if (!strcmp(var
, "format.subjectprefix")) {
102 die("format.subjectprefix without value");
103 fmt_patch_subject_prefix
= xstrdup(value
);
106 if (!strcmp(var
, "log.showroot")) {
107 default_show_root
= git_config_bool(var
, value
);
110 return git_diff_ui_config(var
, value
);
113 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
117 git_config(git_log_config
);
118 init_revisions(&rev
, prefix
);
120 rev
.simplify_history
= 0;
121 cmd_log_init(argc
, argv
, prefix
, &rev
);
122 if (!rev
.diffopt
.output_format
)
123 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
124 return cmd_log_walk(&rev
);
127 static int show_object(const unsigned char *sha1
, int suppress_header
)
130 enum object_type type
;
131 char *buf
= read_sha1_file(sha1
, &type
, &size
);
135 return error("Could not read object %s", sha1_to_hex(sha1
));
138 while (offset
< size
&& buf
[offset
++] != '\n') {
139 int new_offset
= offset
;
140 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
146 fwrite(buf
+ offset
, size
- offset
, 1, stdout
);
151 static int show_tree_object(const unsigned char *sha1
,
152 const char *base
, int baselen
,
153 const char *pathname
, unsigned mode
, int stage
)
155 printf("%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
159 int cmd_show(int argc
, const char **argv
, const char *prefix
)
162 struct object_array_entry
*objects
;
163 int i
, count
, ret
= 0;
165 git_config(git_log_config
);
166 init_revisions(&rev
, prefix
);
168 rev
.combine_merges
= 1;
169 rev
.dense_combined_merges
= 1;
170 rev
.always_show_header
= 1;
171 rev
.ignore_merges
= 0;
173 cmd_log_init(argc
, argv
, prefix
, &rev
);
175 count
= rev
.pending
.nr
;
176 objects
= rev
.pending
.objects
;
177 for (i
= 0; i
< count
&& !ret
; i
++) {
178 struct object
*o
= objects
[i
].item
;
179 const char *name
= objects
[i
].name
;
182 ret
= show_object(o
->sha1
, 0);
185 struct tag
*t
= (struct tag
*)o
;
187 printf("%stag %s%s\n\n",
188 diff_get_color(rev
.diffopt
.color_diff
,
191 diff_get_color(rev
.diffopt
.color_diff
,
193 ret
= show_object(o
->sha1
, 1);
194 objects
[i
].item
= (struct object
*)t
->tagged
;
199 printf("%stree %s%s\n\n",
200 diff_get_color(rev
.diffopt
.color_diff
,
203 diff_get_color(rev
.diffopt
.color_diff
,
205 read_tree_recursive((struct tree
*)o
, "", 0, 0, NULL
,
209 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
210 rev
.pending
.objects
= NULL
;
211 add_object_array(o
, name
, &rev
.pending
);
212 ret
= cmd_log_walk(&rev
);
215 ret
= error("Unknown type: %d", o
->type
);
223 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
225 int cmd_log_reflog(int argc
, const char **argv
, const char *prefix
)
229 git_config(git_log_config
);
230 init_revisions(&rev
, prefix
);
231 init_reflog_walk(&rev
.reflog_info
);
232 rev
.abbrev_commit
= 1;
233 rev
.verbose_header
= 1;
234 cmd_log_init(argc
, argv
, prefix
, &rev
);
237 * This means that we override whatever commit format the user gave
238 * on the cmd line. Sad, but cmd_log_init() currently doesn't
239 * allow us to set a different default.
241 rev
.commit_format
= CMIT_FMT_ONELINE
;
242 rev
.always_show_header
= 1;
245 * We get called through "git reflog", so unlike the other log
246 * routines, we need to set up our pager manually..
250 return cmd_log_walk(&rev
);
253 int cmd_log(int argc
, const char **argv
, const char *prefix
)
257 git_config(git_log_config
);
258 init_revisions(&rev
, prefix
);
259 rev
.always_show_header
= 1;
260 cmd_log_init(argc
, argv
, prefix
, &rev
);
261 return cmd_log_walk(&rev
);
265 #define FORMAT_PATCH_NAME_MAX 64
267 static int istitlechar(char c
)
269 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') ||
270 (c
>= '0' && c
<= '9') || c
== '.' || c
== '_';
273 static char *extra_headers
= NULL
;
274 static int extra_headers_size
= 0;
275 static const char *fmt_patch_suffix
= ".patch";
277 static int git_format_config(const char *var
, const char *value
)
279 if (!strcmp(var
, "format.headers")) {
283 die("format.headers without value");
285 extra_headers_size
+= len
+ 1;
286 extra_headers
= xrealloc(extra_headers
, extra_headers_size
);
287 extra_headers
[extra_headers_size
- len
- 1] = 0;
288 strcat(extra_headers
, value
);
291 if (!strcmp(var
, "format.suffix")) {
293 die("format.suffix without value");
294 fmt_patch_suffix
= xstrdup(value
);
297 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
301 return git_log_config(var
, value
);
305 static FILE *realstdout
= NULL
;
306 static const char *output_directory
= NULL
;
308 static int reopen_stdout(struct commit
*commit
, int nr
, int keep_subject
,
311 char filename
[PATH_MAX
];
314 int suffix_len
= strlen(fmt_patch_suffix
) + 1;
316 if (output_directory
) {
317 if (strlen(output_directory
) >=
318 sizeof(filename
) - FORMAT_PATCH_NAME_MAX
- suffix_len
)
319 return error("name of output directory is too long");
320 strlcpy(filename
, output_directory
, sizeof(filename
) - suffix_len
);
321 len
= strlen(filename
);
322 if (filename
[len
- 1] != '/')
323 filename
[len
++] = '/';
326 if (numbered_files
) {
327 sprintf(filename
+ len
, "%d", nr
);
328 len
= strlen(filename
);
331 sprintf(filename
+ len
, "%04d", nr
);
332 len
= strlen(filename
);
334 sol
= strstr(commit
->buffer
, "\n\n");
339 /* strip [PATCH] or [PATCH blabla] */
340 if (!keep_subject
&& !prefixcmp(sol
, "[PATCH")) {
341 char *eos
= strchr(sol
+ 6, ']');
343 while (isspace(*eos
))
350 j
< FORMAT_PATCH_NAME_MAX
- suffix_len
- 5 &&
351 len
< sizeof(filename
) - suffix_len
&&
352 sol
[j
] && sol
[j
] != '\n';
354 if (istitlechar(sol
[j
])) {
356 filename
[len
++] = '-';
359 filename
[len
++] = sol
[j
];
361 while (sol
[j
+ 1] == '.')
366 while (filename
[len
- 1] == '.'
367 || filename
[len
- 1] == '-')
371 if (len
+ suffix_len
>= sizeof(filename
))
372 return error("Patch pathname too long");
373 strcpy(filename
+ len
, fmt_patch_suffix
);
376 fprintf(realstdout
, "%s\n", filename
);
377 if (freopen(filename
, "w", stdout
) == NULL
)
378 return error("Cannot open patch file %s",filename
);
383 static void get_patch_ids(struct rev_info
*rev
, struct patch_ids
*ids
, const char *prefix
)
385 struct rev_info check_rev
;
386 struct commit
*commit
;
387 struct object
*o1
, *o2
;
388 unsigned flags1
, flags2
;
390 if (rev
->pending
.nr
!= 2)
391 die("Need exactly one range.");
393 o1
= rev
->pending
.objects
[0].item
;
395 o2
= rev
->pending
.objects
[1].item
;
398 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
403 /* given a range a..b get all patch ids for b..a */
404 init_revisions(&check_rev
, prefix
);
405 o1
->flags
^= UNINTERESTING
;
406 o2
->flags
^= UNINTERESTING
;
407 add_pending_object(&check_rev
, o1
, "o1");
408 add_pending_object(&check_rev
, o2
, "o2");
409 prepare_revision_walk(&check_rev
);
411 while ((commit
= get_revision(&check_rev
)) != NULL
) {
413 if (commit
->parents
&& commit
->parents
->next
)
416 add_commit_patch_id(commit
, ids
);
419 /* reset for next revision walk */
420 clear_commit_marks((struct commit
*)o1
,
421 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
422 clear_commit_marks((struct commit
*)o2
,
423 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
428 static void gen_message_id(char *dest
, unsigned int length
, char *base
)
430 const char *committer
= git_committer_info(-1);
431 const char *email_start
= strrchr(committer
, '<');
432 const char *email_end
= strrchr(committer
, '>');
433 if(!email_start
|| !email_end
|| email_start
> email_end
- 1)
434 die("Could not extract email from committer identity.");
435 snprintf(dest
, length
, "%s.%lu.git.%.*s", base
,
436 (unsigned long) time(NULL
),
437 (int)(email_end
- email_start
- 1), email_start
+ 1);
440 static const char *clean_message_id(const char *msg_id
)
443 const char *a
, *z
, *m
;
448 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
453 if (!isspace(ch
) && (ch
!= '>'))
458 die("insane in-reply-to: %s", msg_id
);
462 n
= xmalloc(len
+ 1);
468 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
470 struct commit
*commit
;
471 struct commit
**list
= NULL
;
473 int nr
= 0, total
, i
, j
;
476 int start_number
= -1;
477 int keep_subject
= 0;
478 int numbered_files
= 0; /* _just_ numbers */
479 int subject_prefix
= 0;
480 int ignore_if_in_upstream
= 0;
482 const char *in_reply_to
= NULL
;
483 struct patch_ids ids
;
484 char *add_signoff
= NULL
;
485 char message_id
[1024];
486 char ref_message_id
[1024];
488 git_config(git_format_config
);
489 init_revisions(&rev
, prefix
);
490 rev
.commit_format
= CMIT_FMT_EMAIL
;
491 rev
.verbose_header
= 1;
493 rev
.combine_merges
= 0;
494 rev
.ignore_merges
= 1;
495 rev
.diffopt
.msg_sep
= "";
496 rev
.diffopt
.recursive
= 1;
498 rev
.subject_prefix
= fmt_patch_subject_prefix
;
499 rev
.extra_headers
= extra_headers
;
502 * Parse the arguments before setup_revisions(), or something
503 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
504 * possibly a valid SHA1.
506 for (i
= 1, j
= 1; i
< argc
; i
++) {
507 if (!strcmp(argv
[i
], "--stdout"))
509 else if (!strcmp(argv
[i
], "-n") ||
510 !strcmp(argv
[i
], "--numbered"))
512 else if (!prefixcmp(argv
[i
], "--start-number="))
513 start_number
= strtol(argv
[i
] + 15, NULL
, 10);
514 else if (!strcmp(argv
[i
], "--numbered-files"))
516 else if (!strcmp(argv
[i
], "--start-number")) {
519 die("Need a number for --start-number");
520 start_number
= strtol(argv
[i
], NULL
, 10);
522 else if (!strcmp(argv
[i
], "-k") ||
523 !strcmp(argv
[i
], "--keep-subject")) {
527 else if (!strcmp(argv
[i
], "--output-directory") ||
528 !strcmp(argv
[i
], "-o")) {
531 die("Which directory?");
532 if (output_directory
)
533 die("Two output directories?");
534 output_directory
= argv
[i
];
536 else if (!strcmp(argv
[i
], "--signoff") ||
537 !strcmp(argv
[i
], "-s")) {
538 const char *committer
;
540 committer
= git_committer_info(1);
541 endpos
= strchr(committer
, '>');
543 die("bogos committer info %s\n", committer
);
544 add_signoff
= xmalloc(endpos
- committer
+ 2);
545 memcpy(add_signoff
, committer
, endpos
- committer
+ 1);
546 add_signoff
[endpos
- committer
+ 1] = 0;
548 else if (!strcmp(argv
[i
], "--attach")) {
549 rev
.mime_boundary
= git_version_string
;
552 else if (!prefixcmp(argv
[i
], "--attach=")) {
553 rev
.mime_boundary
= argv
[i
] + 9;
556 else if (!strcmp(argv
[i
], "--inline")) {
557 rev
.mime_boundary
= git_version_string
;
560 else if (!prefixcmp(argv
[i
], "--inline=")) {
561 rev
.mime_boundary
= argv
[i
] + 9;
564 else if (!strcmp(argv
[i
], "--ignore-if-in-upstream"))
565 ignore_if_in_upstream
= 1;
566 else if (!strcmp(argv
[i
], "--thread"))
568 else if (!prefixcmp(argv
[i
], "--in-reply-to="))
569 in_reply_to
= argv
[i
] + 14;
570 else if (!strcmp(argv
[i
], "--in-reply-to")) {
573 die("Need a Message-Id for --in-reply-to");
574 in_reply_to
= argv
[i
];
575 } else if (!prefixcmp(argv
[i
], "--subject-prefix=")) {
577 rev
.subject_prefix
= argv
[i
] + 17;
578 } else if (!prefixcmp(argv
[i
], "--suffix="))
579 fmt_patch_suffix
= argv
[i
] + 9;
585 if (start_number
< 0)
587 if (numbered
&& keep_subject
)
588 die ("-n and -k are mutually exclusive.");
589 if (keep_subject
&& subject_prefix
)
590 die ("--subject-prefix and -k are mutually exclusive.");
591 if (numbered_files
&& use_stdout
)
592 die ("--numbered-files and --stdout are mutually exclusive.");
594 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
596 die ("unrecognized argument: %s", argv
[1]);
598 if (!rev
.diffopt
.output_format
)
599 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_PATCH
;
601 if (!rev
.diffopt
.text
)
602 rev
.diffopt
.binary
= 1;
604 if (!output_directory
&& !use_stdout
)
605 output_directory
= prefix
;
607 if (output_directory
) {
609 die("standard output, or directory, which one?");
610 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
611 die("Could not create directory %s",
615 if (rev
.pending
.nr
== 1) {
616 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
618 * This is traditional behaviour of "git format-patch
619 * origin" that prepares what the origin side still
622 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
626 * Otherwise, it is "format-patch -22 HEAD", and/or
627 * "format-patch --root HEAD". The user wants
628 * get_revision() to do the usual traversal.
632 if (ignore_if_in_upstream
)
633 get_patch_ids(&rev
, &ids
, prefix
);
636 realstdout
= xfdopen(xdup(1), "w");
638 prepare_revision_walk(&rev
);
639 while ((commit
= get_revision(&rev
)) != NULL
) {
641 if (commit
->parents
&& commit
->parents
->next
)
644 if (ignore_if_in_upstream
&&
645 has_commit_patch_id(commit
, &ids
))
649 list
= xrealloc(list
, nr
* sizeof(list
[0]));
650 list
[nr
- 1] = commit
;
654 rev
.total
= total
+ start_number
- 1;
655 rev
.add_signoff
= add_signoff
;
657 rev
.ref_message_id
= clean_message_id(in_reply_to
);
661 rev
.nr
= total
- nr
+ (start_number
- 1);
662 /* Make the second and subsequent mails replies to the first */
664 if (nr
== (total
- 2)) {
665 strncpy(ref_message_id
, message_id
,
666 sizeof(ref_message_id
));
667 ref_message_id
[sizeof(ref_message_id
)-1]='\0';
668 rev
.ref_message_id
= ref_message_id
;
670 gen_message_id(message_id
, sizeof(message_id
),
671 sha1_to_hex(commit
->object
.sha1
));
672 rev
.message_id
= message_id
;
675 if (reopen_stdout(commit
, rev
.nr
, keep_subject
,
677 die("Failed to create output files");
678 shown
= log_tree_commit(&rev
, commit
);
679 free(commit
->buffer
);
680 commit
->buffer
= NULL
;
682 /* We put one extra blank line between formatted
683 * patches and this flag is used by log-tree code
684 * to see if it needs to emit a LF before showing
685 * the log; when using one file per patch, we do
686 * not want the extra blank line.
691 if (rev
.mime_boundary
)
692 printf("\n--%s%s--\n\n\n",
693 mime_boundary_leader
,
696 printf("-- \n%s\n\n", git_version_string
);
702 if (ignore_if_in_upstream
)
703 free_patch_ids(&ids
);
707 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
709 unsigned char sha1
[20];
710 if (get_sha1(arg
, sha1
) == 0) {
711 struct commit
*commit
= lookup_commit_reference(sha1
);
713 commit
->object
.flags
|= flags
;
714 add_pending_object(revs
, &commit
->object
, arg
);
721 static const char cherry_usage
[] =
722 "git-cherry [-v] <upstream> [<head>] [<limit>]";
723 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
725 struct rev_info revs
;
726 struct patch_ids ids
;
727 struct commit
*commit
;
728 struct commit_list
*list
= NULL
;
729 const char *upstream
;
730 const char *head
= "HEAD";
731 const char *limit
= NULL
;
734 if (argc
> 1 && !strcmp(argv
[1], "-v")) {
754 init_revisions(&revs
, prefix
);
756 revs
.combine_merges
= 0;
757 revs
.ignore_merges
= 1;
758 revs
.diffopt
.recursive
= 1;
760 if (add_pending_commit(head
, &revs
, 0))
761 die("Unknown commit %s", head
);
762 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
763 die("Unknown commit %s", upstream
);
765 /* Don't say anything if head and upstream are the same. */
766 if (revs
.pending
.nr
== 2) {
767 struct object_array_entry
*o
= revs
.pending
.objects
;
768 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
772 get_patch_ids(&revs
, &ids
, prefix
);
774 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
775 die("Unknown commit %s", limit
);
777 /* reverse the list of commits */
778 prepare_revision_walk(&revs
);
779 while ((commit
= get_revision(&revs
)) != NULL
) {
781 if (commit
->parents
&& commit
->parents
->next
)
784 commit_list_insert(commit
, &list
);
791 if (has_commit_patch_id(commit
, &ids
))
796 unsigned long buflen
= 0;
797 pretty_print_commit(CMIT_FMT_ONELINE
, commit
, ~0,
798 &buf
, &buflen
, 0, NULL
, NULL
, 0);
799 printf("%c %s %s\n", sign
,
800 sha1_to_hex(commit
->object
.sha1
), buf
);
804 printf("%c %s\n", sign
,
805 sha1_to_hex(commit
->object
.sha1
));
811 free_patch_ids(&ids
);