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
;
446 while ((ch
= *m
) && (isspace(ch
) || (ch
== '<')))
451 if (!isspace(ch
) && (ch
!= '>'))
456 die("insane in-reply-to: %s", msg_id
);
459 return xmemdupz(a
, z
- a
);
462 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
464 struct commit
*commit
;
465 struct commit
**list
= NULL
;
467 int nr
= 0, total
, i
, j
;
470 int start_number
= -1;
471 int keep_subject
= 0;
472 int numbered_files
= 0; /* _just_ numbers */
473 int subject_prefix
= 0;
474 int ignore_if_in_upstream
= 0;
476 const char *in_reply_to
= NULL
;
477 struct patch_ids ids
;
478 char *add_signoff
= NULL
;
479 char message_id
[1024];
480 char ref_message_id
[1024];
482 git_config(git_format_config
);
483 init_revisions(&rev
, prefix
);
484 rev
.commit_format
= CMIT_FMT_EMAIL
;
485 rev
.verbose_header
= 1;
487 rev
.combine_merges
= 0;
488 rev
.ignore_merges
= 1;
489 rev
.diffopt
.msg_sep
= "";
490 rev
.diffopt
.recursive
= 1;
492 rev
.subject_prefix
= fmt_patch_subject_prefix
;
493 rev
.extra_headers
= extra_headers
;
496 * Parse the arguments before setup_revisions(), or something
497 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
498 * possibly a valid SHA1.
500 for (i
= 1, j
= 1; i
< argc
; i
++) {
501 if (!strcmp(argv
[i
], "--stdout"))
503 else if (!strcmp(argv
[i
], "-n") ||
504 !strcmp(argv
[i
], "--numbered"))
506 else if (!prefixcmp(argv
[i
], "--start-number="))
507 start_number
= strtol(argv
[i
] + 15, NULL
, 10);
508 else if (!strcmp(argv
[i
], "--numbered-files"))
510 else if (!strcmp(argv
[i
], "--start-number")) {
513 die("Need a number for --start-number");
514 start_number
= strtol(argv
[i
], NULL
, 10);
516 else if (!strcmp(argv
[i
], "-k") ||
517 !strcmp(argv
[i
], "--keep-subject")) {
521 else if (!strcmp(argv
[i
], "--output-directory") ||
522 !strcmp(argv
[i
], "-o")) {
525 die("Which directory?");
526 if (output_directory
)
527 die("Two output directories?");
528 output_directory
= argv
[i
];
530 else if (!strcmp(argv
[i
], "--signoff") ||
531 !strcmp(argv
[i
], "-s")) {
532 const char *committer
;
534 committer
= git_committer_info(1);
535 endpos
= strchr(committer
, '>');
537 die("bogos committer info %s\n", committer
);
538 add_signoff
= xmemdupz(committer
, endpos
- committer
+ 1);
540 else if (!strcmp(argv
[i
], "--attach")) {
541 rev
.mime_boundary
= git_version_string
;
544 else if (!prefixcmp(argv
[i
], "--attach=")) {
545 rev
.mime_boundary
= argv
[i
] + 9;
548 else if (!strcmp(argv
[i
], "--inline")) {
549 rev
.mime_boundary
= git_version_string
;
552 else if (!prefixcmp(argv
[i
], "--inline=")) {
553 rev
.mime_boundary
= argv
[i
] + 9;
556 else if (!strcmp(argv
[i
], "--ignore-if-in-upstream"))
557 ignore_if_in_upstream
= 1;
558 else if (!strcmp(argv
[i
], "--thread"))
560 else if (!prefixcmp(argv
[i
], "--in-reply-to="))
561 in_reply_to
= argv
[i
] + 14;
562 else if (!strcmp(argv
[i
], "--in-reply-to")) {
565 die("Need a Message-Id for --in-reply-to");
566 in_reply_to
= argv
[i
];
567 } else if (!prefixcmp(argv
[i
], "--subject-prefix=")) {
569 rev
.subject_prefix
= argv
[i
] + 17;
570 } else if (!prefixcmp(argv
[i
], "--suffix="))
571 fmt_patch_suffix
= argv
[i
] + 9;
577 if (start_number
< 0)
579 if (numbered
&& keep_subject
)
580 die ("-n and -k are mutually exclusive.");
581 if (keep_subject
&& subject_prefix
)
582 die ("--subject-prefix and -k are mutually exclusive.");
583 if (numbered_files
&& use_stdout
)
584 die ("--numbered-files and --stdout are mutually exclusive.");
586 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
588 die ("unrecognized argument: %s", argv
[1]);
590 if (!rev
.diffopt
.output_format
)
591 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_PATCH
;
593 if (!rev
.diffopt
.text
)
594 rev
.diffopt
.binary
= 1;
596 if (!output_directory
&& !use_stdout
)
597 output_directory
= prefix
;
599 if (output_directory
) {
601 die("standard output, or directory, which one?");
602 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
603 die("Could not create directory %s",
607 if (rev
.pending
.nr
== 1) {
608 if (rev
.max_count
< 0 && !rev
.show_root_diff
) {
610 * This is traditional behaviour of "git format-patch
611 * origin" that prepares what the origin side still
614 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
618 * Otherwise, it is "format-patch -22 HEAD", and/or
619 * "format-patch --root HEAD". The user wants
620 * get_revision() to do the usual traversal.
624 if (ignore_if_in_upstream
)
625 get_patch_ids(&rev
, &ids
, prefix
);
628 realstdout
= xfdopen(xdup(1), "w");
630 prepare_revision_walk(&rev
);
631 while ((commit
= get_revision(&rev
)) != NULL
) {
633 if (commit
->parents
&& commit
->parents
->next
)
636 if (ignore_if_in_upstream
&&
637 has_commit_patch_id(commit
, &ids
))
641 list
= xrealloc(list
, nr
* sizeof(list
[0]));
642 list
[nr
- 1] = commit
;
646 rev
.total
= total
+ start_number
- 1;
647 rev
.add_signoff
= add_signoff
;
649 rev
.ref_message_id
= clean_message_id(in_reply_to
);
653 rev
.nr
= total
- nr
+ (start_number
- 1);
654 /* Make the second and subsequent mails replies to the first */
656 if (nr
== (total
- 2)) {
657 strncpy(ref_message_id
, message_id
,
658 sizeof(ref_message_id
));
659 ref_message_id
[sizeof(ref_message_id
)-1]='\0';
660 rev
.ref_message_id
= ref_message_id
;
662 gen_message_id(message_id
, sizeof(message_id
),
663 sha1_to_hex(commit
->object
.sha1
));
664 rev
.message_id
= message_id
;
667 if (reopen_stdout(commit
, rev
.nr
, keep_subject
,
669 die("Failed to create output files");
670 shown
= log_tree_commit(&rev
, commit
);
671 free(commit
->buffer
);
672 commit
->buffer
= NULL
;
674 /* We put one extra blank line between formatted
675 * patches and this flag is used by log-tree code
676 * to see if it needs to emit a LF before showing
677 * the log; when using one file per patch, we do
678 * not want the extra blank line.
683 if (rev
.mime_boundary
)
684 printf("\n--%s%s--\n\n\n",
685 mime_boundary_leader
,
688 printf("-- \n%s\n\n", git_version_string
);
694 if (ignore_if_in_upstream
)
695 free_patch_ids(&ids
);
699 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
701 unsigned char sha1
[20];
702 if (get_sha1(arg
, sha1
) == 0) {
703 struct commit
*commit
= lookup_commit_reference(sha1
);
705 commit
->object
.flags
|= flags
;
706 add_pending_object(revs
, &commit
->object
, arg
);
713 static const char cherry_usage
[] =
714 "git-cherry [-v] <upstream> [<head>] [<limit>]";
715 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
717 struct rev_info revs
;
718 struct patch_ids ids
;
719 struct commit
*commit
;
720 struct commit_list
*list
= NULL
;
721 const char *upstream
;
722 const char *head
= "HEAD";
723 const char *limit
= NULL
;
726 if (argc
> 1 && !strcmp(argv
[1], "-v")) {
746 init_revisions(&revs
, prefix
);
748 revs
.combine_merges
= 0;
749 revs
.ignore_merges
= 1;
750 revs
.diffopt
.recursive
= 1;
752 if (add_pending_commit(head
, &revs
, 0))
753 die("Unknown commit %s", head
);
754 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
755 die("Unknown commit %s", upstream
);
757 /* Don't say anything if head and upstream are the same. */
758 if (revs
.pending
.nr
== 2) {
759 struct object_array_entry
*o
= revs
.pending
.objects
;
760 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
764 get_patch_ids(&revs
, &ids
, prefix
);
766 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
767 die("Unknown commit %s", limit
);
769 /* reverse the list of commits */
770 prepare_revision_walk(&revs
);
771 while ((commit
= get_revision(&revs
)) != NULL
) {
773 if (commit
->parents
&& commit
->parents
->next
)
776 commit_list_insert(commit
, &list
);
783 if (has_commit_patch_id(commit
, &ids
))
788 strbuf_init(&buf
, 0);
789 pretty_print_commit(CMIT_FMT_ONELINE
, commit
,
790 &buf
, 0, NULL
, NULL
, 0);
791 printf("%c %s %s\n", sign
,
792 sha1_to_hex(commit
->object
.sha1
), buf
.buf
);
793 strbuf_release(&buf
);
796 printf("%c %s\n", sign
,
797 sha1_to_hex(commit
->object
.sha1
));
803 free_patch_ids(&ids
);