2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
15 static int default_show_root
= 1;
17 /* this is in builtin-diff.c */
18 void add_head(struct rev_info
*revs
);
20 static void cmd_log_init(int argc
, const char **argv
, const char *prefix
,
25 rev
->abbrev
= DEFAULT_ABBREV
;
26 rev
->commit_format
= CMIT_FMT_DEFAULT
;
27 rev
->verbose_header
= 1;
28 rev
->show_root_diff
= default_show_root
;
29 argc
= setup_revisions(argc
, argv
, rev
, "HEAD");
30 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
)
31 rev
->always_show_header
= 0;
32 for (i
= 1; i
< argc
; i
++) {
33 const char *arg
= argv
[i
];
34 if (!strncmp(arg
, "--encoding=", 11)) {
36 if (strcmp(arg
, "none"))
37 git_log_output_encoding
= strdup(arg
);
39 git_log_output_encoding
= "";
42 die("unrecognized argument: %s", arg
);
46 static int cmd_log_walk(struct rev_info
*rev
)
48 struct commit
*commit
;
50 prepare_revision_walk(rev
);
51 while ((commit
= get_revision(rev
)) != NULL
) {
52 log_tree_commit(rev
, commit
);
53 if (!rev
->reflog_info
) {
54 /* we allow cycles in reflog ancestry */
56 commit
->buffer
= NULL
;
58 free_commit_list(commit
->parents
);
59 commit
->parents
= NULL
;
64 static int git_log_config(const char *var
, const char *value
)
66 if (!strcmp(var
, "log.showroot")) {
67 default_show_root
= git_config_bool(var
, value
);
70 return git_diff_ui_config(var
, value
);
73 int cmd_whatchanged(int argc
, const char **argv
, const char *prefix
)
77 git_config(git_log_config
);
78 init_revisions(&rev
, prefix
);
80 rev
.diffopt
.recursive
= 1;
81 rev
.simplify_history
= 0;
82 cmd_log_init(argc
, argv
, prefix
, &rev
);
83 if (!rev
.diffopt
.output_format
)
84 rev
.diffopt
.output_format
= DIFF_FORMAT_RAW
;
85 return cmd_log_walk(&rev
);
88 static int show_object(const unsigned char *sha1
, int suppress_header
)
92 char *buf
= read_sha1_file(sha1
, type
, &size
);
96 return error("Could not read object %s", sha1_to_hex(sha1
));
99 while (offset
< size
&& buf
[offset
++] != '\n') {
100 int new_offset
= offset
;
101 while (new_offset
< size
&& buf
[new_offset
++] != '\n')
107 fwrite(buf
+ offset
, size
- offset
, 1, stdout
);
112 static int show_tree_object(const unsigned char *sha1
,
113 const char *base
, int baselen
,
114 const char *pathname
, unsigned mode
, int stage
)
116 printf("%s%s\n", pathname
, S_ISDIR(mode
) ? "/" : "");
120 int cmd_show(int argc
, const char **argv
, const char *prefix
)
123 struct object_array_entry
*objects
;
124 int i
, count
, ret
= 0;
126 git_config(git_log_config
);
127 init_revisions(&rev
, prefix
);
129 rev
.diffopt
.recursive
= 1;
130 rev
.combine_merges
= 1;
131 rev
.dense_combined_merges
= 1;
132 rev
.always_show_header
= 1;
133 rev
.ignore_merges
= 0;
135 cmd_log_init(argc
, argv
, prefix
, &rev
);
137 count
= rev
.pending
.nr
;
138 objects
= rev
.pending
.objects
;
139 for (i
= 0; i
< count
&& !ret
; i
++) {
140 struct object
*o
= objects
[i
].item
;
141 const char *name
= objects
[i
].name
;
144 ret
= show_object(o
->sha1
, 0);
147 struct tag
*t
= (struct tag
*)o
;
149 printf("%stag %s%s\n\n",
150 diff_get_color(rev
.diffopt
.color_diff
,
153 diff_get_color(rev
.diffopt
.color_diff
,
155 ret
= show_object(o
->sha1
, 1);
156 objects
[i
].item
= (struct object
*)t
->tagged
;
161 printf("%stree %s%s\n\n",
162 diff_get_color(rev
.diffopt
.color_diff
,
165 diff_get_color(rev
.diffopt
.color_diff
,
167 read_tree_recursive((struct tree
*)o
, "", 0, 0, NULL
,
171 rev
.pending
.nr
= rev
.pending
.alloc
= 0;
172 rev
.pending
.objects
= NULL
;
173 add_object_array(o
, name
, &rev
.pending
);
174 ret
= cmd_log_walk(&rev
);
177 ret
= error("Unknown type: %d", o
->type
);
184 int cmd_log(int argc
, const char **argv
, const char *prefix
)
188 git_config(git_log_config
);
189 init_revisions(&rev
, prefix
);
190 rev
.always_show_header
= 1;
191 cmd_log_init(argc
, argv
, prefix
, &rev
);
192 return cmd_log_walk(&rev
);
195 static int istitlechar(char c
)
197 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') ||
198 (c
>= '0' && c
<= '9') || c
== '.' || c
== '_';
201 static char *extra_headers
= NULL
;
202 static int extra_headers_size
= 0;
203 static const char *fmt_patch_suffix
= ".patch";
205 static int git_format_config(const char *var
, const char *value
)
207 if (!strcmp(var
, "format.headers")) {
211 die("format.headers without value");
213 extra_headers_size
+= len
+ 1;
214 extra_headers
= xrealloc(extra_headers
, extra_headers_size
);
215 extra_headers
[extra_headers_size
- len
- 1] = 0;
216 strcat(extra_headers
, value
);
219 if (!strcmp(var
, "format.suffix")) {
221 die("format.suffix without value");
222 fmt_patch_suffix
= xstrdup(value
);
225 if (!strcmp(var
, "diff.color") || !strcmp(var
, "color.diff")) {
228 return git_log_config(var
, value
);
232 static FILE *realstdout
= NULL
;
233 static const char *output_directory
= NULL
;
235 static void reopen_stdout(struct commit
*commit
, int nr
, int keep_subject
)
240 int suffix_len
= strlen(fmt_patch_suffix
) + 10; /* ., NUL and slop */
242 if (output_directory
) {
243 strlcpy(filename
, output_directory
, 1000);
244 len
= strlen(filename
);
245 if (filename
[len
- 1] != '/')
246 filename
[len
++] = '/';
249 sprintf(filename
+ len
, "%04d", nr
);
250 len
= strlen(filename
);
252 sol
= strstr(commit
->buffer
, "\n\n");
257 /* strip [PATCH] or [PATCH blabla] */
258 if (!keep_subject
&& !strncmp(sol
, "[PATCH", 6)) {
259 char *eos
= strchr(sol
+ 6, ']');
261 while (isspace(*eos
))
268 len
< sizeof(filename
) - suffix_len
&&
269 sol
[j
] && sol
[j
] != '\n';
271 if (istitlechar(sol
[j
])) {
273 filename
[len
++] = '-';
276 filename
[len
++] = sol
[j
];
278 while (sol
[j
+ 1] == '.')
283 while (filename
[len
- 1] == '.' || filename
[len
- 1] == '-')
286 strcpy(filename
+ len
, fmt_patch_suffix
);
287 fprintf(realstdout
, "%s\n", filename
);
288 freopen(filename
, "w", stdout
);
291 static int get_patch_id(struct commit
*commit
, struct diff_options
*options
,
295 diff_tree_sha1(commit
->parents
->item
->object
.sha1
,
296 commit
->object
.sha1
, "", options
);
298 diff_root_tree_sha1(commit
->object
.sha1
, "", options
);
299 diffcore_std(options
);
300 return diff_flush_patch_id(options
, sha1
);
303 static void get_patch_ids(struct rev_info
*rev
, struct diff_options
*options
, const char *prefix
)
305 struct rev_info check_rev
;
306 struct commit
*commit
;
307 struct object
*o1
, *o2
;
308 unsigned flags1
, flags2
;
309 unsigned char sha1
[20];
311 if (rev
->pending
.nr
!= 2)
312 die("Need exactly one range.");
314 o1
= rev
->pending
.objects
[0].item
;
316 o2
= rev
->pending
.objects
[1].item
;
319 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
323 options
->recursive
= 1;
324 if (diff_setup_done(options
) < 0)
325 die("diff_setup_done failed");
327 /* given a range a..b get all patch ids for b..a */
328 init_revisions(&check_rev
, prefix
);
329 o1
->flags
^= UNINTERESTING
;
330 o2
->flags
^= UNINTERESTING
;
331 add_pending_object(&check_rev
, o1
, "o1");
332 add_pending_object(&check_rev
, o2
, "o2");
333 prepare_revision_walk(&check_rev
);
335 while ((commit
= get_revision(&check_rev
)) != NULL
) {
337 if (commit
->parents
&& commit
->parents
->next
)
340 if (!get_patch_id(commit
, options
, sha1
))
341 created_object(sha1
, xcalloc(1, sizeof(struct object
)));
344 /* reset for next revision walk */
345 clear_commit_marks((struct commit
*)o1
,
346 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
347 clear_commit_marks((struct commit
*)o2
,
348 SEEN
| UNINTERESTING
| SHOWN
| ADDED
);
353 static void gen_message_id(char *dest
, unsigned int length
, char *base
)
355 const char *committer
= git_committer_info(-1);
356 const char *email_start
= strrchr(committer
, '<');
357 const char *email_end
= strrchr(committer
, '>');
358 if(!email_start
|| !email_end
|| email_start
> email_end
- 1)
359 die("Could not extract email from committer identity.");
360 snprintf(dest
, length
, "%s.%lu.git.%.*s", base
,
361 (unsigned long) time(NULL
),
362 (int)(email_end
- email_start
- 1), email_start
+ 1);
365 int cmd_format_patch(int argc
, const char **argv
, const char *prefix
)
367 struct commit
*commit
;
368 struct commit
**list
= NULL
;
370 int nr
= 0, total
, i
, j
;
373 int start_number
= -1;
374 int keep_subject
= 0;
375 int ignore_if_in_upstream
= 0;
377 const char *in_reply_to
= NULL
;
378 struct diff_options patch_id_opts
;
379 char *add_signoff
= NULL
;
380 char message_id
[1024];
381 char ref_message_id
[1024];
383 git_config(git_format_config
);
384 init_revisions(&rev
, prefix
);
385 rev
.commit_format
= CMIT_FMT_EMAIL
;
386 rev
.verbose_header
= 1;
388 rev
.combine_merges
= 0;
389 rev
.ignore_merges
= 1;
390 rev
.diffopt
.msg_sep
= "";
391 rev
.diffopt
.recursive
= 1;
393 rev
.extra_headers
= extra_headers
;
396 * Parse the arguments before setup_revisions(), or something
397 * like "git fmt-patch -o a123 HEAD^.." may fail; a123 is
398 * possibly a valid SHA1.
400 for (i
= 1, j
= 1; i
< argc
; i
++) {
401 if (!strcmp(argv
[i
], "--stdout"))
403 else if (!strcmp(argv
[i
], "-n") ||
404 !strcmp(argv
[i
], "--numbered"))
406 else if (!strncmp(argv
[i
], "--start-number=", 15))
407 start_number
= strtol(argv
[i
] + 15, NULL
, 10);
408 else if (!strcmp(argv
[i
], "--start-number")) {
411 die("Need a number for --start-number");
412 start_number
= strtol(argv
[i
], NULL
, 10);
414 else if (!strcmp(argv
[i
], "-k") ||
415 !strcmp(argv
[i
], "--keep-subject")) {
419 else if (!strcmp(argv
[i
], "--output-directory") ||
420 !strcmp(argv
[i
], "-o")) {
423 die("Which directory?");
424 if (output_directory
)
425 die("Two output directories?");
426 output_directory
= argv
[i
];
428 else if (!strcmp(argv
[i
], "--signoff") ||
429 !strcmp(argv
[i
], "-s")) {
430 const char *committer
;
432 committer
= git_committer_info(1);
433 endpos
= strchr(committer
, '>');
435 die("bogos committer info %s\n", committer
);
436 add_signoff
= xmalloc(endpos
- committer
+ 2);
437 memcpy(add_signoff
, committer
, endpos
- committer
+ 1);
438 add_signoff
[endpos
- committer
+ 1] = 0;
440 else if (!strcmp(argv
[i
], "--attach"))
441 rev
.mime_boundary
= git_version_string
;
442 else if (!strncmp(argv
[i
], "--attach=", 9))
443 rev
.mime_boundary
= argv
[i
] + 9;
444 else if (!strcmp(argv
[i
], "--ignore-if-in-upstream"))
445 ignore_if_in_upstream
= 1;
446 else if (!strcmp(argv
[i
], "--thread"))
448 else if (!strncmp(argv
[i
], "--in-reply-to=", 14))
449 in_reply_to
= argv
[i
] + 14;
450 else if (!strcmp(argv
[i
], "--in-reply-to")) {
453 die("Need a Message-Id for --in-reply-to");
454 in_reply_to
= argv
[i
];
456 else if (!strncmp(argv
[i
], "--suffix=", 9))
457 fmt_patch_suffix
= argv
[i
] + 9;
463 if (start_number
< 0)
465 if (numbered
&& keep_subject
)
466 die ("-n and -k are mutually exclusive.");
468 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
470 die ("unrecognized argument: %s", argv
[1]);
472 if (!rev
.diffopt
.output_format
)
473 rev
.diffopt
.output_format
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_PATCH
;
475 if (!rev
.diffopt
.text
)
476 rev
.diffopt
.binary
= 1;
478 if (!output_directory
&& !use_stdout
)
479 output_directory
= prefix
;
481 if (output_directory
) {
483 die("standard output, or directory, which one?");
484 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
485 die("Could not create directory %s",
489 if (rev
.pending
.nr
== 1) {
490 if (rev
.max_count
< 0) {
491 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
494 /* Otherwise, it is "format-patch -22 HEAD", and
495 * get_revision() would return only the specified count.
499 if (ignore_if_in_upstream
)
500 get_patch_ids(&rev
, &patch_id_opts
, prefix
);
503 realstdout
= fdopen(dup(1), "w");
505 prepare_revision_walk(&rev
);
506 while ((commit
= get_revision(&rev
)) != NULL
) {
507 unsigned char sha1
[20];
510 if (commit
->parents
&& commit
->parents
->next
)
513 if (ignore_if_in_upstream
&&
514 !get_patch_id(commit
, &patch_id_opts
, sha1
) &&
519 list
= xrealloc(list
, nr
* sizeof(list
[0]));
520 list
[nr
- 1] = commit
;
524 rev
.total
= total
+ start_number
- 1;
525 rev
.add_signoff
= add_signoff
;
526 rev
.ref_message_id
= in_reply_to
;
530 rev
.nr
= total
- nr
+ (start_number
- 1);
531 /* Make the second and subsequent mails replies to the first */
533 if (nr
== (total
- 2)) {
534 strncpy(ref_message_id
, message_id
,
535 sizeof(ref_message_id
));
536 ref_message_id
[sizeof(ref_message_id
)-1]='\0';
537 rev
.ref_message_id
= ref_message_id
;
539 gen_message_id(message_id
, sizeof(message_id
),
540 sha1_to_hex(commit
->object
.sha1
));
541 rev
.message_id
= message_id
;
544 reopen_stdout(commit
, rev
.nr
, keep_subject
);
545 shown
= log_tree_commit(&rev
, commit
);
546 free(commit
->buffer
);
547 commit
->buffer
= NULL
;
549 /* We put one extra blank line between formatted
550 * patches and this flag is used by log-tree code
551 * to see if it needs to emit a LF before showing
552 * the log; when using one file per patch, we do
553 * not want the extra blank line.
558 if (rev
.mime_boundary
)
559 printf("\n--%s%s--\n\n\n",
560 mime_boundary_leader
,
563 printf("-- \n%s\n\n", git_version_string
);
572 static int add_pending_commit(const char *arg
, struct rev_info
*revs
, int flags
)
574 unsigned char sha1
[20];
575 if (get_sha1(arg
, sha1
) == 0) {
576 struct commit
*commit
= lookup_commit_reference(sha1
);
578 commit
->object
.flags
|= flags
;
579 add_pending_object(revs
, &commit
->object
, arg
);
586 static const char cherry_usage
[] =
587 "git-cherry [-v] <upstream> [<head>] [<limit>]";
588 int cmd_cherry(int argc
, const char **argv
, const char *prefix
)
590 struct rev_info revs
;
591 struct diff_options patch_id_opts
;
592 struct commit
*commit
;
593 struct commit_list
*list
= NULL
;
594 const char *upstream
;
595 const char *head
= "HEAD";
596 const char *limit
= NULL
;
599 if (argc
> 1 && !strcmp(argv
[1], "-v")) {
619 init_revisions(&revs
, prefix
);
621 revs
.combine_merges
= 0;
622 revs
.ignore_merges
= 1;
623 revs
.diffopt
.recursive
= 1;
625 if (add_pending_commit(head
, &revs
, 0))
626 die("Unknown commit %s", head
);
627 if (add_pending_commit(upstream
, &revs
, UNINTERESTING
))
628 die("Unknown commit %s", upstream
);
630 /* Don't say anything if head and upstream are the same. */
631 if (revs
.pending
.nr
== 2) {
632 struct object_array_entry
*o
= revs
.pending
.objects
;
633 if (hashcmp(o
[0].item
->sha1
, o
[1].item
->sha1
) == 0)
637 get_patch_ids(&revs
, &patch_id_opts
, prefix
);
639 if (limit
&& add_pending_commit(limit
, &revs
, UNINTERESTING
))
640 die("Unknown commit %s", limit
);
642 /* reverse the list of commits */
643 prepare_revision_walk(&revs
);
644 while ((commit
= get_revision(&revs
)) != NULL
) {
646 if (commit
->parents
&& commit
->parents
->next
)
649 commit_list_insert(commit
, &list
);
653 unsigned char sha1
[20];
657 if (!get_patch_id(commit
, &patch_id_opts
, sha1
) &&
662 static char buf
[16384];
663 pretty_print_commit(CMIT_FMT_ONELINE
, commit
, ~0,
664 buf
, sizeof(buf
), 0, NULL
, NULL
, 0);
665 printf("%c %s %s\n", sign
,
666 sha1_to_hex(commit
->object
.sha1
), buf
);
669 printf("%c %s\n", sign
,
670 sha1_to_hex(commit
->object
.sha1
));