2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
16 /* this is in builtin-diff.c */
17 void add_head(struct rev_info *revs);
19 static void cmd_log_init(int argc, const char **argv, const char *prefix,
22 rev->abbrev = DEFAULT_ABBREV;
23 rev->commit_format = CMIT_FMT_DEFAULT;
24 rev->verbose_header = 1;
25 argc = setup_revisions(argc, argv, rev, "HEAD");
26 if (rev->diffopt.pickaxe || rev->diffopt.filter)
27 rev->always_show_header = 0;
29 die("unrecognized argument: %s", argv[1]);
32 static int cmd_log_walk(struct rev_info *rev)
34 struct commit *commit;
36 prepare_revision_walk(rev);
37 while ((commit = get_revision(rev)) != NULL) {
38 log_tree_commit(rev, commit);
40 commit->buffer = NULL;
41 free_commit_list(commit->parents);
42 commit->parents = NULL;
47 int cmd_whatchanged(int argc, const char **argv, const char *prefix)
51 git_config(git_diff_ui_config);
52 init_revisions(&rev, prefix);
54 rev.diffopt.recursive = 1;
55 rev.simplify_history = 0;
56 cmd_log_init(argc, argv, prefix, &rev);
57 if (!rev.diffopt.output_format)
58 rev.diffopt.output_format = DIFF_FORMAT_RAW;
59 return cmd_log_walk(&rev);
62 int cmd_show(int argc, const char **argv, const char *prefix)
66 git_config(git_diff_ui_config);
67 init_revisions(&rev, prefix);
69 rev.diffopt.recursive = 1;
70 rev.combine_merges = 1;
71 rev.dense_combined_merges = 1;
72 rev.always_show_header = 1;
73 rev.ignore_merges = 0;
75 cmd_log_init(argc, argv, prefix, &rev);
76 return cmd_log_walk(&rev);
79 int cmd_log(int argc, const char **argv, const char *prefix)
83 git_config(git_diff_ui_config);
84 init_revisions(&rev, prefix);
85 rev.always_show_header = 1;
86 cmd_log_init(argc, argv, prefix, &rev);
87 return cmd_log_walk(&rev);
90 static int istitlechar(char c)
92 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
93 (c >= '0' && c <= '9') || c == '.' || c == '_';
96 static char *extra_headers = NULL;
97 static int extra_headers_size = 0;
99 static int git_format_config(const char *var, const char *value)
101 if (!strcmp(var, "format.headers")) {
102 int len = strlen(value);
103 extra_headers_size += len + 1;
104 extra_headers = xrealloc(extra_headers, extra_headers_size);
105 extra_headers[extra_headers_size - len - 1] = 0;
106 strcat(extra_headers, value);
109 if (!strcmp(var, "diff.color")) {
112 return git_diff_ui_config(var, value);
116 static FILE *realstdout = NULL;
117 static const char *output_directory = NULL;
119 static void reopen_stdout(struct commit *commit, int nr, int keep_subject)
125 if (output_directory) {
126 strlcpy(filename, output_directory, 1010);
127 len = strlen(filename);
128 if (filename[len - 1] != '/')
129 filename[len++] = '/';
132 sprintf(filename + len, "%04d", nr);
133 len = strlen(filename);
135 sol = strstr(commit->buffer, "\n\n");
140 /* strip [PATCH] or [PATCH blabla] */
141 if (!keep_subject && !strncmp(sol, "[PATCH", 6)) {
142 char *eos = strchr(sol + 6, ']');
144 while (isspace(*eos))
150 for (j = 0; len < 1024 - 6 && sol[j] && sol[j] != '\n'; j++) {
151 if (istitlechar(sol[j])) {
153 filename[len++] = '-';
156 filename[len++] = sol[j];
158 while (sol[j + 1] == '.')
163 while (filename[len - 1] == '.' || filename[len - 1] == '-')
166 strcpy(filename + len, ".txt");
167 fprintf(realstdout, "%s\n", filename);
168 freopen(filename, "w", stdout);
171 static int get_patch_id(struct commit *commit, struct diff_options *options,
174 diff_tree_sha1(commit->parents->item->object.sha1, commit->object.sha1,
176 diffcore_std(options);
177 return diff_flush_patch_id(options, sha1);
180 static void get_patch_ids(struct rev_info *rev, struct diff_options *options, const char *prefix)
182 struct rev_info check_rev;
183 struct commit *commit;
184 struct object *o1, *o2;
185 unsigned flags1, flags2;
186 unsigned char sha1[20];
188 if (rev->pending.nr != 2)
189 die("Need exactly one range.");
191 o1 = rev->pending.objects[0].item;
193 o2 = rev->pending.objects[1].item;
196 if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
200 options->recursive = 1;
201 if (diff_setup_done(options) < 0)
202 die("diff_setup_done failed");
204 /* given a range a..b get all patch ids for b..a */
205 init_revisions(&check_rev, prefix);
206 o1->flags ^= UNINTERESTING;
207 o2->flags ^= UNINTERESTING;
208 add_pending_object(&check_rev, o1, "o1");
209 add_pending_object(&check_rev, o2, "o2");
210 prepare_revision_walk(&check_rev);
212 while ((commit = get_revision(&check_rev)) != NULL) {
214 if (commit->parents && commit->parents->next)
217 if (!get_patch_id(commit, options, sha1))
218 created_object(sha1, xcalloc(1, sizeof(struct object)));
221 /* reset for next revision walk */
222 clear_commit_marks((struct commit *)o1,
223 SEEN | UNINTERESTING | SHOWN | ADDED);
224 clear_commit_marks((struct commit *)o2,
225 SEEN | UNINTERESTING | SHOWN | ADDED);
230 static void gen_message_id(char *dest, unsigned int length, char *base)
232 const char *committer = git_committer_info(1);
233 const char *email_start = strrchr(committer, '<');
234 const char *email_end = strrchr(committer, '>');
235 if(!email_start || !email_end || email_start > email_end - 1)
236 die("Could not extract email from committer identity.");
237 snprintf(dest, length, "%s.%lu.git.%.*s", base,
238 (unsigned long) time(NULL),
239 (int)(email_end - email_start - 1), email_start + 1);
242 int cmd_format_patch(int argc, const char **argv, const char *prefix)
244 struct commit *commit;
245 struct commit **list = NULL;
247 int nr = 0, total, i, j;
250 int start_number = -1;
251 int keep_subject = 0;
252 int ignore_if_in_upstream = 0;
254 const char *in_reply_to = NULL;
255 struct diff_options patch_id_opts;
256 char *add_signoff = NULL;
257 char message_id[1024];
258 char ref_message_id[1024];
261 git_config(git_format_config);
262 init_revisions(&rev, prefix);
263 rev.commit_format = CMIT_FMT_EMAIL;
264 rev.verbose_header = 1;
266 rev.combine_merges = 0;
267 rev.ignore_merges = 1;
268 rev.diffopt.msg_sep = "";
269 rev.diffopt.recursive = 1;
271 rev.extra_headers = extra_headers;
274 * Parse the arguments before setup_revisions(), or something
275 * like "git fmt-patch -o a123 HEAD^.." may fail; a123 is
276 * possibly a valid SHA1.
278 for (i = 1, j = 1; i < argc; i++) {
279 if (!strcmp(argv[i], "--stdout"))
281 else if (!strcmp(argv[i], "-n") ||
282 !strcmp(argv[i], "--numbered"))
284 else if (!strncmp(argv[i], "--start-number=", 15))
285 start_number = strtol(argv[i] + 15, NULL, 10);
286 else if (!strcmp(argv[i], "--start-number")) {
289 die("Need a number for --start-number");
290 start_number = strtol(argv[i], NULL, 10);
292 else if (!strcmp(argv[i], "-k") ||
293 !strcmp(argv[i], "--keep-subject")) {
297 else if (!strcmp(argv[i], "--output-directory") ||
298 !strcmp(argv[i], "-o")) {
301 die("Which directory?");
302 if (output_directory)
303 die("Two output directories?");
304 output_directory = argv[i];
306 else if (!strcmp(argv[i], "--signoff") ||
307 !strcmp(argv[i], "-s")) {
308 const char *committer;
310 committer = git_committer_info(1);
311 endpos = strchr(committer, '>');
313 die("bogos committer info %s\n", committer);
314 add_signoff = xmalloc(endpos - committer + 2);
315 memcpy(add_signoff, committer, endpos - committer + 1);
316 add_signoff[endpos - committer + 1] = 0;
318 else if (!strcmp(argv[i], "--attach"))
319 rev.mime_boundary = git_version_string;
320 else if (!strncmp(argv[i], "--attach=", 9))
321 rev.mime_boundary = argv[i] + 9;
322 else if (!strcmp(argv[i], "--ignore-if-in-upstream"))
323 ignore_if_in_upstream = 1;
324 else if (!strcmp(argv[i], "--thread"))
326 else if (!strncmp(argv[i], "--in-reply-to=", 14))
327 in_reply_to = argv[i] + 14;
328 else if (!strcmp(argv[i], "--in-reply-to")) {
331 die("Need a Message-Id for --in-reply-to");
332 in_reply_to = argv[i];
339 if (start_number < 0)
341 if (numbered && keep_subject)
342 die ("-n and -k are mutually exclusive.");
344 argc = setup_revisions(argc, argv, &rev, "HEAD");
346 die ("unrecognized argument: %s", argv[1]);
348 if (!rev.diffopt.output_format)
349 rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH;
351 if (!output_directory)
352 output_directory = prefix;
354 if (output_directory) {
356 die("standard output, or directory, which one?");
357 if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
358 die("Could not create directory %s",
362 if (rev.pending.nr == 1) {
363 rev.pending.objects[0].item->flags |= UNINTERESTING;
367 if (ignore_if_in_upstream)
368 get_patch_ids(&rev, &patch_id_opts, prefix);
371 realstdout = fdopen(dup(1), "w");
373 prepare_revision_walk(&rev);
374 while ((commit = get_revision(&rev)) != NULL) {
375 unsigned char sha1[20];
378 if (commit->parents && commit->parents->next)
381 if (ignore_if_in_upstream &&
382 !get_patch_id(commit, &patch_id_opts, sha1) &&
387 list = xrealloc(list, nr * sizeof(list[0]));
388 list[nr - 1] = commit;
392 rev.total = total + start_number - 1;
393 rev.add_signoff = add_signoff;
394 rev.ref_message_id = in_reply_to;
398 rev.nr = total - nr + (start_number - 1);
399 /* Make the second and subsequent mails replies to the first */
401 if (nr == (total - 2)) {
402 strncpy(ref_message_id, message_id,
403 sizeof(ref_message_id));
404 ref_message_id[sizeof(ref_message_id)-1]='\0';
405 rev.ref_message_id = ref_message_id;
407 gen_message_id(message_id, sizeof(message_id),
408 sha1_to_hex(commit->object.sha1));
409 rev.message_id = message_id;
412 reopen_stdout(commit, rev.nr, keep_subject);
413 shown = log_tree_commit(&rev, commit);
414 free(commit->buffer);
415 commit->buffer = NULL;
417 /* We put one extra blank line between formatted
418 * patches and this flag is used by log-tree code
419 * to see if it needs to emit a LF before showing
420 * the log; when using one file per patch, we do
421 * not want the extra blank line.
426 if (rev.mime_boundary)
427 printf("\n--%s%s--\n\n\n",
428 mime_boundary_leader,
431 printf("-- \n%s\n\n", git_version_string);