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;
20 /* this is in builtin-diff.c */
21 void add_head(struct rev_info *revs);
23 static void add_name_decoration(const char *prefix, const char *name, struct object *obj)
25 int plen = strlen(prefix);
26 int nlen = strlen(name);
27 struct name_decoration *res = xmalloc(sizeof(struct name_decoration) + plen + nlen);
28 memcpy(res->name, prefix, plen);
29 memcpy(res->name + plen, name, nlen + 1);
30 res->next = add_decoration(&name_decoration, obj, res);
33 static int add_ref_decoration(const char *refname, const unsigned char *sha1, int flags, void *cb_data)
35 struct object *obj = parse_object(sha1);
38 add_name_decoration("", refname, obj);
39 while (obj->type == OBJ_TAG) {
40 obj = ((struct tag *)obj)->tagged;
43 add_name_decoration("tag: ", refname, obj);
48 static void cmd_log_init(int argc, const char **argv, const char *prefix,
54 rev->abbrev = DEFAULT_ABBREV;
55 rev->commit_format = CMIT_FMT_DEFAULT;
56 rev->verbose_header = 1;
57 rev->show_root_diff = default_show_root;
58 argc = setup_revisions(argc, argv, rev, "HEAD");
59 if (rev->diffopt.pickaxe || rev->diffopt.filter)
60 rev->always_show_header = 0;
61 if (rev->diffopt.follow_renames) {
62 rev->always_show_header = 0;
63 if (rev->diffopt.nr_paths != 1)
64 usage("git logs can only follow renames on one pathname at a time");
66 for (i = 1; i < argc; i++) {
67 const char *arg = argv[i];
68 if (!strcmp(arg, "--decorate")) {
70 for_each_ref(add_ref_decoration, NULL);
73 die("unrecognized argument: %s", arg);
77 static int cmd_log_walk(struct rev_info *rev)
79 struct commit *commit;
81 prepare_revision_walk(rev);
82 while ((commit = get_revision(rev)) != NULL) {
83 log_tree_commit(rev, commit);
84 if (!rev->reflog_info) {
85 /* we allow cycles in reflog ancestry */
87 commit->buffer = NULL;
89 free_commit_list(commit->parents);
90 commit->parents = NULL;
95 static int git_log_config(const char *var, const char *value)
97 if (!strcmp(var, "log.showroot")) {
98 default_show_root = git_config_bool(var, value);
101 return git_diff_ui_config(var, value);
104 int cmd_whatchanged(int argc, const char **argv, const char *prefix)
108 git_config(git_log_config);
109 init_revisions(&rev, prefix);
111 rev.diffopt.recursive = 1;
112 rev.simplify_history = 0;
113 cmd_log_init(argc, argv, prefix, &rev);
114 if (!rev.diffopt.output_format)
115 rev.diffopt.output_format = DIFF_FORMAT_RAW;
116 return cmd_log_walk(&rev);
119 static int show_object(const unsigned char *sha1, int suppress_header)
122 enum object_type type;
123 char *buf = read_sha1_file(sha1, &type, &size);
127 return error("Could not read object %s", sha1_to_hex(sha1));
130 while (offset < size && buf[offset++] != '\n') {
131 int new_offset = offset;
132 while (new_offset < size && buf[new_offset++] != '\n')
138 fwrite(buf + offset, size - offset, 1, stdout);
143 static int show_tree_object(const unsigned char *sha1,
144 const char *base, int baselen,
145 const char *pathname, unsigned mode, int stage)
147 printf("%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
151 int cmd_show(int argc, const char **argv, const char *prefix)
154 struct object_array_entry *objects;
155 int i, count, ret = 0;
157 git_config(git_log_config);
158 init_revisions(&rev, prefix);
160 rev.diffopt.recursive = 1;
161 rev.combine_merges = 1;
162 rev.dense_combined_merges = 1;
163 rev.always_show_header = 1;
164 rev.ignore_merges = 0;
166 cmd_log_init(argc, argv, prefix, &rev);
168 count = rev.pending.nr;
169 objects = rev.pending.objects;
170 for (i = 0; i < count && !ret; i++) {
171 struct object *o = objects[i].item;
172 const char *name = objects[i].name;
175 ret = show_object(o->sha1, 0);
178 struct tag *t = (struct tag *)o;
180 printf("%stag %s%s\n\n",
181 diff_get_color(rev.diffopt.color_diff,
184 diff_get_color(rev.diffopt.color_diff,
186 ret = show_object(o->sha1, 1);
187 objects[i].item = (struct object *)t->tagged;
192 printf("%stree %s%s\n\n",
193 diff_get_color(rev.diffopt.color_diff,
196 diff_get_color(rev.diffopt.color_diff,
198 read_tree_recursive((struct tree *)o, "", 0, 0, NULL,
202 rev.pending.nr = rev.pending.alloc = 0;
203 rev.pending.objects = NULL;
204 add_object_array(o, name, &rev.pending);
205 ret = cmd_log_walk(&rev);
208 ret = error("Unknown type: %d", o->type);
216 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
218 int cmd_log_reflog(int argc, const char **argv, const char *prefix)
222 git_config(git_log_config);
223 init_revisions(&rev, prefix);
224 init_reflog_walk(&rev.reflog_info);
225 rev.abbrev_commit = 1;
226 rev.verbose_header = 1;
227 cmd_log_init(argc, argv, prefix, &rev);
230 * This means that we override whatever commit format the user gave
231 * on the cmd line. Sad, but cmd_log_init() currently doesn't
232 * allow us to set a different default.
234 rev.commit_format = CMIT_FMT_ONELINE;
235 rev.always_show_header = 1;
238 * We get called through "git reflog", so unlike the other log
239 * routines, we need to set up our pager manually..
243 return cmd_log_walk(&rev);
246 int cmd_log(int argc, const char **argv, const char *prefix)
250 git_config(git_log_config);
251 init_revisions(&rev, prefix);
252 rev.always_show_header = 1;
253 cmd_log_init(argc, argv, prefix, &rev);
254 return cmd_log_walk(&rev);
258 #define FORMAT_PATCH_NAME_MAX 64
260 static int istitlechar(char c)
262 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
263 (c >= '0' && c <= '9') || c == '.' || c == '_';
266 static char *extra_headers = NULL;
267 static int extra_headers_size = 0;
268 static const char *fmt_patch_suffix = ".patch";
270 static int git_format_config(const char *var, const char *value)
272 if (!strcmp(var, "format.headers")) {
276 die("format.headers without value");
278 extra_headers_size += len + 1;
279 extra_headers = xrealloc(extra_headers, extra_headers_size);
280 extra_headers[extra_headers_size - len - 1] = 0;
281 strcat(extra_headers, value);
284 if (!strcmp(var, "format.suffix")) {
286 die("format.suffix without value");
287 fmt_patch_suffix = xstrdup(value);
290 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
293 return git_log_config(var, value);
297 static FILE *realstdout = NULL;
298 static const char *output_directory = NULL;
300 static int reopen_stdout(struct commit *commit, int nr, int keep_subject,
303 char filename[PATH_MAX];
306 int suffix_len = strlen(fmt_patch_suffix) + 1;
308 if (output_directory) {
309 if (strlen(output_directory) >=
310 sizeof(filename) - FORMAT_PATCH_NAME_MAX - suffix_len)
311 return error("name of output directory is too long");
312 strlcpy(filename, output_directory, sizeof(filename) - suffix_len);
313 len = strlen(filename);
314 if (filename[len - 1] != '/')
315 filename[len++] = '/';
318 if (numbered_files) {
319 sprintf(filename + len, "%d", nr);
320 len = strlen(filename);
323 sprintf(filename + len, "%04d", nr);
324 len = strlen(filename);
326 sol = strstr(commit->buffer, "\n\n");
331 /* strip [PATCH] or [PATCH blabla] */
332 if (!keep_subject && !prefixcmp(sol, "[PATCH")) {
333 char *eos = strchr(sol + 6, ']');
335 while (isspace(*eos))
342 j < FORMAT_PATCH_NAME_MAX - suffix_len - 5 &&
343 len < sizeof(filename) - suffix_len &&
344 sol[j] && sol[j] != '\n';
346 if (istitlechar(sol[j])) {
348 filename[len++] = '-';
351 filename[len++] = sol[j];
353 while (sol[j + 1] == '.')
358 while (filename[len - 1] == '.'
359 || filename[len - 1] == '-')
363 if (len + suffix_len >= sizeof(filename))
364 return error("Patch pathname too long");
365 strcpy(filename + len, fmt_patch_suffix);
368 fprintf(realstdout, "%s\n", filename);
369 if (freopen(filename, "w", stdout) == NULL)
370 return error("Cannot open patch file %s",filename);
375 static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids, const char *prefix)
377 struct rev_info check_rev;
378 struct commit *commit;
379 struct object *o1, *o2;
380 unsigned flags1, flags2;
382 if (rev->pending.nr != 2)
383 die("Need exactly one range.");
385 o1 = rev->pending.objects[0].item;
387 o2 = rev->pending.objects[1].item;
390 if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
395 /* given a range a..b get all patch ids for b..a */
396 init_revisions(&check_rev, prefix);
397 o1->flags ^= UNINTERESTING;
398 o2->flags ^= UNINTERESTING;
399 add_pending_object(&check_rev, o1, "o1");
400 add_pending_object(&check_rev, o2, "o2");
401 prepare_revision_walk(&check_rev);
403 while ((commit = get_revision(&check_rev)) != NULL) {
405 if (commit->parents && commit->parents->next)
408 add_commit_patch_id(commit, ids);
411 /* reset for next revision walk */
412 clear_commit_marks((struct commit *)o1,
413 SEEN | UNINTERESTING | SHOWN | ADDED);
414 clear_commit_marks((struct commit *)o2,
415 SEEN | UNINTERESTING | SHOWN | ADDED);
420 static void gen_message_id(char *dest, unsigned int length, char *base)
422 const char *committer = git_committer_info(-1);
423 const char *email_start = strrchr(committer, '<');
424 const char *email_end = strrchr(committer, '>');
425 if(!email_start || !email_end || email_start > email_end - 1)
426 die("Could not extract email from committer identity.");
427 snprintf(dest, length, "%s.%lu.git.%.*s", base,
428 (unsigned long) time(NULL),
429 (int)(email_end - email_start - 1), email_start + 1);
432 int cmd_format_patch(int argc, const char **argv, const char *prefix)
434 struct commit *commit;
435 struct commit **list = NULL;
437 int nr = 0, total, i, j;
440 int start_number = -1;
441 int keep_subject = 0;
442 int numbered_files = 0; /* _just_ numbers */
443 int subject_prefix = 0;
444 int ignore_if_in_upstream = 0;
446 const char *in_reply_to = NULL;
447 struct patch_ids ids;
448 char *add_signoff = NULL;
449 char message_id[1024];
450 char ref_message_id[1024];
452 git_config(git_format_config);
453 init_revisions(&rev, prefix);
454 rev.commit_format = CMIT_FMT_EMAIL;
455 rev.verbose_header = 1;
457 rev.combine_merges = 0;
458 rev.ignore_merges = 1;
459 rev.diffopt.msg_sep = "";
460 rev.diffopt.recursive = 1;
462 rev.extra_headers = extra_headers;
465 * Parse the arguments before setup_revisions(), or something
466 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
467 * possibly a valid SHA1.
469 for (i = 1, j = 1; i < argc; i++) {
470 if (!strcmp(argv[i], "--stdout"))
472 else if (!strcmp(argv[i], "-n") ||
473 !strcmp(argv[i], "--numbered"))
475 else if (!prefixcmp(argv[i], "--start-number="))
476 start_number = strtol(argv[i] + 15, NULL, 10);
477 else if (!strcmp(argv[i], "--numbered-files"))
479 else if (!strcmp(argv[i], "--start-number")) {
482 die("Need a number for --start-number");
483 start_number = strtol(argv[i], NULL, 10);
485 else if (!strcmp(argv[i], "-k") ||
486 !strcmp(argv[i], "--keep-subject")) {
490 else if (!strcmp(argv[i], "--output-directory") ||
491 !strcmp(argv[i], "-o")) {
494 die("Which directory?");
495 if (output_directory)
496 die("Two output directories?");
497 output_directory = argv[i];
499 else if (!strcmp(argv[i], "--signoff") ||
500 !strcmp(argv[i], "-s")) {
501 const char *committer;
503 committer = git_committer_info(1);
504 endpos = strchr(committer, '>');
506 die("bogos committer info %s\n", committer);
507 add_signoff = xmalloc(endpos - committer + 2);
508 memcpy(add_signoff, committer, endpos - committer + 1);
509 add_signoff[endpos - committer + 1] = 0;
511 else if (!strcmp(argv[i], "--attach")) {
512 rev.mime_boundary = git_version_string;
515 else if (!prefixcmp(argv[i], "--attach=")) {
516 rev.mime_boundary = argv[i] + 9;
519 else if (!strcmp(argv[i], "--inline")) {
520 rev.mime_boundary = git_version_string;
523 else if (!prefixcmp(argv[i], "--inline=")) {
524 rev.mime_boundary = argv[i] + 9;
527 else if (!strcmp(argv[i], "--ignore-if-in-upstream"))
528 ignore_if_in_upstream = 1;
529 else if (!strcmp(argv[i], "--thread"))
531 else if (!prefixcmp(argv[i], "--in-reply-to="))
532 in_reply_to = argv[i] + 14;
533 else if (!strcmp(argv[i], "--in-reply-to")) {
536 die("Need a Message-Id for --in-reply-to");
537 in_reply_to = argv[i];
538 } else if (!prefixcmp(argv[i], "--subject-prefix=")) {
540 rev.subject_prefix = argv[i] + 17;
541 } else if (!prefixcmp(argv[i], "--suffix="))
542 fmt_patch_suffix = argv[i] + 9;
548 if (start_number < 0)
550 if (numbered && keep_subject)
551 die ("-n and -k are mutually exclusive.");
552 if (keep_subject && subject_prefix)
553 die ("--subject-prefix and -k are mutually exclusive.");
554 if (numbered_files && use_stdout)
555 die ("--numbered-files and --stdout are mutually exclusive.");
557 argc = setup_revisions(argc, argv, &rev, "HEAD");
559 die ("unrecognized argument: %s", argv[1]);
561 if (!rev.diffopt.output_format)
562 rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY | DIFF_FORMAT_PATCH;
564 if (!rev.diffopt.text)
565 rev.diffopt.binary = 1;
567 if (!output_directory && !use_stdout)
568 output_directory = prefix;
570 if (output_directory) {
572 die("standard output, or directory, which one?");
573 if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
574 die("Could not create directory %s",
578 if (rev.pending.nr == 1) {
579 if (rev.max_count < 0) {
580 rev.pending.objects[0].item->flags |= UNINTERESTING;
583 /* Otherwise, it is "format-patch -22 HEAD", and
584 * get_revision() would return only the specified count.
588 if (ignore_if_in_upstream)
589 get_patch_ids(&rev, &ids, prefix);
592 realstdout = fdopen(dup(1), "w");
594 prepare_revision_walk(&rev);
595 while ((commit = get_revision(&rev)) != NULL) {
597 if (commit->parents && commit->parents->next)
600 if (ignore_if_in_upstream &&
601 has_commit_patch_id(commit, &ids))
605 list = xrealloc(list, nr * sizeof(list[0]));
606 list[nr - 1] = commit;
610 rev.total = total + start_number - 1;
611 rev.add_signoff = add_signoff;
612 rev.ref_message_id = in_reply_to;
616 rev.nr = total - nr + (start_number - 1);
617 /* Make the second and subsequent mails replies to the first */
619 if (nr == (total - 2)) {
620 strncpy(ref_message_id, message_id,
621 sizeof(ref_message_id));
622 ref_message_id[sizeof(ref_message_id)-1]='\0';
623 rev.ref_message_id = ref_message_id;
625 gen_message_id(message_id, sizeof(message_id),
626 sha1_to_hex(commit->object.sha1));
627 rev.message_id = message_id;
630 if (reopen_stdout(commit, rev.nr, keep_subject,
632 die("Failed to create output files");
633 shown = log_tree_commit(&rev, commit);
634 free(commit->buffer);
635 commit->buffer = NULL;
637 /* We put one extra blank line between formatted
638 * patches and this flag is used by log-tree code
639 * to see if it needs to emit a LF before showing
640 * the log; when using one file per patch, we do
641 * not want the extra blank line.
646 if (rev.mime_boundary)
647 printf("\n--%s%s--\n\n\n",
648 mime_boundary_leader,
651 printf("-- \n%s\n\n", git_version_string);
657 if (ignore_if_in_upstream)
658 free_patch_ids(&ids);
662 static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
664 unsigned char sha1[20];
665 if (get_sha1(arg, sha1) == 0) {
666 struct commit *commit = lookup_commit_reference(sha1);
668 commit->object.flags |= flags;
669 add_pending_object(revs, &commit->object, arg);
676 static const char cherry_usage[] =
677 "git-cherry [-v] <upstream> [<head>] [<limit>]";
678 int cmd_cherry(int argc, const char **argv, const char *prefix)
680 struct rev_info revs;
681 struct patch_ids ids;
682 struct commit *commit;
683 struct commit_list *list = NULL;
684 const char *upstream;
685 const char *head = "HEAD";
686 const char *limit = NULL;
689 if (argc > 1 && !strcmp(argv[1], "-v")) {
709 init_revisions(&revs, prefix);
711 revs.combine_merges = 0;
712 revs.ignore_merges = 1;
713 revs.diffopt.recursive = 1;
715 if (add_pending_commit(head, &revs, 0))
716 die("Unknown commit %s", head);
717 if (add_pending_commit(upstream, &revs, UNINTERESTING))
718 die("Unknown commit %s", upstream);
720 /* Don't say anything if head and upstream are the same. */
721 if (revs.pending.nr == 2) {
722 struct object_array_entry *o = revs.pending.objects;
723 if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
727 get_patch_ids(&revs, &ids, prefix);
729 if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
730 die("Unknown commit %s", limit);
732 /* reverse the list of commits */
733 prepare_revision_walk(&revs);
734 while ((commit = get_revision(&revs)) != NULL) {
736 if (commit->parents && commit->parents->next)
739 commit_list_insert(commit, &list);
746 if (has_commit_patch_id(commit, &ids))
751 unsigned long buflen = 0;
752 pretty_print_commit(CMIT_FMT_ONELINE, commit, ~0,
753 &buf, &buflen, 0, NULL, NULL, 0);
754 printf("%c %s %s\n", sign,
755 sha1_to_hex(commit->object.sha1), buf);
759 printf("%c %s\n", sign,
760 sha1_to_hex(commit->object.sha1));
766 free_patch_ids(&ids);