2 * Builtin "git log" and related commands (show, whatchanged)
4 * (C) Copyright 2006 Linus Torvalds
14 /* this is in builtin-diff.c */
15 void add_head(struct rev_info
*revs
);
17 static int cmd_log_wc(int argc
, const char **argv
, char **envp
,
20 struct commit
*commit
;
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
->always_show_header
) {
27 if (rev
->diffopt
.pickaxe
|| rev
->diffopt
.filter
) {
28 rev
->always_show_header
= 0;
29 if (rev
->diffopt
.output_format
== DIFF_FORMAT_RAW
)
30 rev
->diffopt
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
35 die("unrecognized argument: %s", argv
[1]);
37 prepare_revision_walk(rev
);
39 while ((commit
= get_revision(rev
)) != NULL
) {
40 log_tree_commit(rev
, commit
);
42 commit
->buffer
= NULL
;
43 free_commit_list(commit
->parents
);
44 commit
->parents
= NULL
;
49 int cmd_whatchanged(int argc
, const char **argv
, char **envp
)
55 rev
.diffopt
.recursive
= 1;
56 rev
.simplify_history
= 0;
57 return cmd_log_wc(argc
, argv
, envp
, &rev
);
60 int cmd_show(int argc
, const char **argv
, char **envp
)
66 rev
.diffopt
.recursive
= 1;
67 rev
.combine_merges
= 1;
68 rev
.dense_combined_merges
= 1;
69 rev
.always_show_header
= 1;
70 rev
.ignore_merges
= 0;
72 return cmd_log_wc(argc
, argv
, envp
, &rev
);
75 int cmd_log(int argc
, const char **argv
, char **envp
)
80 rev
.always_show_header
= 1;
81 rev
.diffopt
.recursive
= 1;
82 return cmd_log_wc(argc
, argv
, envp
, &rev
);
85 static int istitlechar(char c
)
87 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') ||
88 (c
>= '0' && c
<= '9') || c
== '.' || c
== '_';
91 static char *extra_headers
= NULL
;
92 static int extra_headers_size
= 0;
94 static int git_format_config(const char *var
, const char *value
)
96 if (!strcmp(var
, "format.headers")) {
97 int len
= strlen(value
);
98 extra_headers_size
+= len
+ 1;
99 extra_headers
= realloc(extra_headers
, extra_headers_size
);
100 extra_headers
[extra_headers_size
- len
- 1] = 0;
101 strcat(extra_headers
, value
);
104 return git_default_config(var
, value
);
108 static FILE *realstdout
= NULL
;
109 static const char *output_directory
= NULL
;
111 static void reopen_stdout(struct commit
*commit
, int nr
, int keep_subject
)
117 if (output_directory
) {
118 strlcpy(filename
, output_directory
, 1010);
119 len
= strlen(filename
);
120 if (filename
[len
- 1] != '/')
121 filename
[len
++] = '/';
124 sprintf(filename
+ len
, "%04d", nr
);
125 len
= strlen(filename
);
127 sol
= strstr(commit
->buffer
, "\n\n");
132 /* strip [PATCH] or [PATCH blabla] */
133 if (!keep_subject
&& !strncmp(sol
, "[PATCH", 6)) {
134 char *eos
= strchr(sol
+ 6, ']');
136 while (isspace(*eos
))
142 for (j
= 0; len
< 1024 - 6 && sol
[j
] && sol
[j
] != '\n'; j
++) {
143 if (istitlechar(sol
[j
])) {
145 filename
[len
++] = '-';
148 filename
[len
++] = sol
[j
];
150 while (sol
[j
+ 1] == '.')
155 while (filename
[len
- 1] == '.' || filename
[len
- 1] == '-')
158 strcpy(filename
+ len
, ".txt");
159 fprintf(realstdout
, "%s\n", filename
);
160 freopen(filename
, "w", stdout
);
163 static void reset_all_objects_flags()
167 for (i
= 0; i
< obj_allocs
; i
++)
172 static int get_patch_id(struct commit
*commit
, struct diff_options
*options
,
175 diff_tree_sha1(commit
->parents
->item
->object
.sha1
, commit
->object
.sha1
,
177 diffcore_std(options
);
178 return diff_flush_patch_id(options
, sha1
);
181 static void get_patch_ids(struct rev_info
*rev
, struct diff_options
*options
)
183 struct rev_info check_rev
;
184 struct commit
*commit
;
185 struct object
*o1
, *o2
;
186 unsigned flags1
, flags2
;
187 unsigned char sha1
[20];
189 if (rev
->pending
.nr
!= 2)
190 die("Need exactly one range.");
192 o1
= rev
->pending
.objects
[0].item
;
194 o2
= rev
->pending
.objects
[1].item
;
197 if ((flags1
& UNINTERESTING
) == (flags2
& UNINTERESTING
))
201 options
->recursive
= 1;
202 if (diff_setup_done(options
) < 0)
203 die("diff_setup_done failed");
205 /* given a range a..b get all patch ids for b..a */
206 init_revisions(&check_rev
);
207 o1
->flags
^= UNINTERESTING
;
208 o2
->flags
^= UNINTERESTING
;
209 add_pending_object(&check_rev
, o1
, "o1");
210 add_pending_object(&check_rev
, o2
, "o2");
211 prepare_revision_walk(&check_rev
);
213 while ((commit
= get_revision(&check_rev
)) != NULL
) {
215 if (commit
->parents
&& commit
->parents
->next
)
218 if (!get_patch_id(commit
, options
, sha1
))
219 created_object(sha1
, xcalloc(1, sizeof(struct object
)));
222 /* reset for next revision walk */
223 reset_all_objects_flags();
228 int cmd_format_patch(int argc
, const char **argv
, char **envp
)
230 struct commit
*commit
;
231 struct commit
**list
= NULL
;
233 int nr
= 0, total
, i
, j
;
236 int start_number
= -1;
237 int keep_subject
= 0;
238 int ignore_if_in_upstream
= 0;
239 struct diff_options patch_id_opts
;
240 char *add_signoff
= NULL
;
242 init_revisions(&rev
);
243 rev
.commit_format
= CMIT_FMT_EMAIL
;
244 rev
.verbose_header
= 1;
246 rev
.diffopt
.with_raw
= 0;
247 rev
.diffopt
.with_stat
= 1;
248 rev
.combine_merges
= 0;
249 rev
.ignore_merges
= 1;
250 rev
.diffopt
.output_format
= DIFF_FORMAT_PATCH
;
252 git_config(git_format_config
);
253 rev
.extra_headers
= extra_headers
;
256 * Parse the arguments before setup_revisions(), or something
257 * like "git fmt-patch -o a123 HEAD^.." may fail; a123 is
258 * possibly a valid SHA1.
260 for (i
= 1, j
= 1; i
< argc
; i
++) {
261 if (!strcmp(argv
[i
], "--stdout"))
263 else if (!strcmp(argv
[i
], "-n") ||
264 !strcmp(argv
[i
], "--numbered"))
266 else if (!strncmp(argv
[i
], "--start-number=", 15))
267 start_number
= strtol(argv
[i
] + 15, NULL
, 10);
268 else if (!strcmp(argv
[i
], "--start-number")) {
271 die("Need a number for --start-number");
272 start_number
= strtol(argv
[i
], NULL
, 10);
274 else if (!strcmp(argv
[i
], "-k") ||
275 !strcmp(argv
[i
], "--keep-subject")) {
279 else if (!strcmp(argv
[i
], "--output-directory") ||
280 !strcmp(argv
[i
], "-o")) {
283 die("Which directory?");
284 if (output_directory
)
285 die("Two output directories?");
286 output_directory
= argv
[i
];
288 else if (!strcmp(argv
[i
], "--signoff") ||
289 !strcmp(argv
[i
], "-s")) {
290 const char *committer
;
293 committer
= git_committer_info(1);
294 endpos
= strchr(committer
, '>');
296 die("bogos committer info %s\n", committer
);
297 add_signoff
= xmalloc(endpos
- committer
+ 2);
298 memcpy(add_signoff
, committer
, endpos
- committer
+ 1);
299 add_signoff
[endpos
- committer
+ 1] = 0;
301 else if (!strcmp(argv
[i
], "--attach"))
302 rev
.mime_boundary
= git_version_string
;
303 else if (!strncmp(argv
[i
], "--attach=", 9))
304 rev
.mime_boundary
= argv
[i
] + 9;
305 else if (!strcmp(argv
[i
], "--ignore-if-in-upstream"))
306 ignore_if_in_upstream
= 1;
312 if (start_number
< 0)
314 if (numbered
&& keep_subject
)
315 die ("-n and -k are mutually exclusive.");
317 argc
= setup_revisions(argc
, argv
, &rev
, "HEAD");
319 die ("unrecognized argument: %s", argv
[1]);
321 if (output_directory
) {
323 die("standard output, or directory, which one?");
324 if (mkdir(output_directory
, 0777) < 0 && errno
!= EEXIST
)
325 die("Could not create directory %s",
329 if (rev
.pending
.nr
== 1) {
330 rev
.pending
.objects
[0].item
->flags
|= UNINTERESTING
;
334 if (ignore_if_in_upstream
)
335 get_patch_ids(&rev
, &patch_id_opts
);
338 realstdout
= fdopen(dup(1), "w");
340 prepare_revision_walk(&rev
);
341 while ((commit
= get_revision(&rev
)) != NULL
) {
342 unsigned char sha1
[20];
345 if (commit
->parents
&& commit
->parents
->next
)
348 if (ignore_if_in_upstream
&&
349 !get_patch_id(commit
, &patch_id_opts
, sha1
) &&
354 list
= realloc(list
, nr
* sizeof(list
[0]));
355 list
[nr
- 1] = commit
;
359 rev
.total
= total
+ start_number
- 1;
360 rev
.add_signoff
= add_signoff
;
364 rev
.nr
= total
- nr
+ (start_number
- 1);
366 reopen_stdout(commit
, rev
.nr
, keep_subject
);
367 shown
= log_tree_commit(&rev
, commit
);
368 free(commit
->buffer
);
369 commit
->buffer
= NULL
;
371 /* We put one extra blank line between formatted
372 * patches and this flag is used by log-tree code
373 * to see if it needs to emit a LF before showing
374 * the log; when using one file per patch, we do
375 * not want the extra blank line.
380 if (rev
.mime_boundary
)
381 printf("\n--%s%s--\n\n\n",
382 mime_boundary_leader
,
385 printf("-- \n%s\n\n", git_version_string
);