]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/log.c
Replace deprecated OPT_BOOLEAN by OPT_BOOL
[thirdparty/git.git] / builtin / log.c
CommitLineData
70827b15
LT
1/*
2 * Builtin "git log" and related commands (show, whatchanged)
3 *
4 * (C) Copyright 2006 Linus Torvalds
5 * 2006 Junio Hamano
6 */
7#include "cache.h"
6b2f2d98 8#include "color.h"
70827b15
LT
9#include "commit.h"
10#include "diff.h"
11#include "revision.h"
12#include "log-tree.h"
91efcf60 13#include "builtin.h"
5d7eeee2 14#include "tag.h"
cf39f54e 15#include "reflog-walk.h"
5d23e133 16#include "patch-ids.h"
a5a27c79 17#include "run-command.h"
2bda2cf4 18#include "shortlog.h"
f2968022 19#include "remote.h"
b079c50e 20#include "string-list.h"
fff02ee6 21#include "parse-options.h"
12da1d1f 22#include "line-log.h"
739453a3 23#include "branch.h"
74775a09 24#include "streaming.h"
816fb46b 25#include "version.h"
ea57bc0d 26#include "mailmap.h"
6005dbb9 27#include "gpg-interface.h"
70827b15 28
dd0ffd5b
HO
29/* Set a default date-time format for git log ("log.date" config variable) */
30static const char *default_date_mode = NULL;
31
0c47695a 32static int default_abbrev_commit;
0f03ca94 33static int default_show_root = 1;
8a3d203b 34static int decoration_style;
1c40c36b 35static int decoration_given;
e6bb5f78 36static int use_mailmap_config;
d54276f2 37static const char *fmt_patch_subject_prefix = "PATCH";
94c22a5e 38static const char *fmt_pretty;
0f03ca94 39
1c40c36b 40static const char * const builtin_log_usage[] = {
e495afcd 41 N_("git log [<options>] [<revision range>] [[--] <path>...]\n")
e62cd35a 42 N_(" or: git show [options] <object>..."),
1c40c36b
CMN
43 NULL
44};
1c370ea4 45
12da1d1f
TR
46struct line_opt_callback_data {
47 struct rev_info *rev;
48 const char *prefix;
49 struct string_list args;
50};
51
8a3d203b
JH
52static int parse_decoration_style(const char *var, const char *value)
53{
54 switch (git_config_maybe_bool(var, value)) {
55 case 1:
56 return DECORATE_SHORT_REFS;
57 case 0:
58 return 0;
59 default:
60 break;
61 }
62 if (!strcmp(value, "full"))
63 return DECORATE_FULL_REFS;
64 else if (!strcmp(value, "short"))
65 return DECORATE_SHORT_REFS;
66 return -1;
67}
68
1c40c36b
CMN
69static int decorate_callback(const struct option *opt, const char *arg, int unset)
70{
71 if (unset)
72 decoration_style = 0;
73 else if (arg)
74 decoration_style = parse_decoration_style("command line", arg);
75 else
76 decoration_style = DECORATE_SHORT_REFS;
77
78 if (decoration_style < 0)
79 die("invalid --decorate option: %s", arg);
80
81 decoration_given = 1;
82
83 return 0;
84}
85
12da1d1f
TR
86static int log_line_range_callback(const struct option *option, const char *arg, int unset)
87{
88 struct line_opt_callback_data *data = option->value;
89
90 if (!arg)
91 return -1;
92
93 data->rev->line_level_traverse = 1;
94 string_list_append(&data->args, arg);
95
96 return 0;
97}
98
ef803fd4 99static void cmd_log_init_defaults(struct rev_info *rev)
70827b15 100{
94c22a5e 101 if (fmt_pretty)
4da45bef 102 get_commit_format(fmt_pretty, rev);
70827b15 103 rev->verbose_header = 1;
8f67f8ae 104 DIFF_OPT_SET(&rev->diffopt, RECURSIVE);
5e0ec15e 105 rev->diffopt.stat_width = -1; /* use full terminal width */
df44483a 106 rev->diffopt.stat_graph_width = -1; /* respect statGraphWidth config */
0c47695a 107 rev->abbrev_commit = default_abbrev_commit;
0f03ca94 108 rev->show_root_diff = default_show_root;
d54276f2 109 rev->subject_prefix = fmt_patch_subject_prefix;
5ec11af6 110 DIFF_OPT_SET(&rev->diffopt, ALLOW_TEXTCONV);
dd0ffd5b
HO
111
112 if (default_date_mode)
113 rev->date_mode = parse_date_format(default_date_mode);
ef803fd4 114}
dd0ffd5b 115
ef803fd4
MG
116static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
117 struct rev_info *rev, struct setup_revision_opt *opt)
118{
ef803fd4 119 struct userformat_want w;
ea57bc0d 120 int quiet = 0, source = 0, mailmap = 0;
12da1d1f 121 static struct line_opt_callback_data line_cb = {NULL, NULL, STRING_LIST_INIT_DUP};
1c40c36b
CMN
122
123 const struct option builtin_log_options[] = {
aa089cd9
FC
124 OPT_BOOL(0, "quiet", &quiet, N_("suppress diff output")),
125 OPT_BOOL(0, "source", &source, N_("show source")),
126 OPT_BOOL(0, "use-mailmap", &mailmap, N_("Use mail map file")),
e62cd35a 127 { OPTION_CALLBACK, 0, "decorate", NULL, NULL, N_("decorate options"),
1c40c36b 128 PARSE_OPT_OPTARG, decorate_callback},
12da1d1f
TR
129 OPT_CALLBACK('L', NULL, &line_cb, "n,m:file",
130 "Process line range n,m in file, counting from 1",
131 log_line_range_callback),
1c40c36b
CMN
132 OPT_END()
133 };
134
12da1d1f
TR
135 line_cb.rev = rev;
136 line_cb.prefix = prefix;
137
e6bb5f78 138 mailmap = use_mailmap_config;
1c40c36b
CMN
139 argc = parse_options(argc, argv, prefix,
140 builtin_log_options, builtin_log_usage,
141 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
142 PARSE_OPT_KEEP_DASHDASH);
52883fbd 143
01771a8e
JH
144 if (quiet)
145 rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
f9c75d85 146 argc = setup_revisions(argc, argv, rev, opt);
dd0ffd5b 147
1c40c36b
CMN
148 /* Any arguments at this point are not recognized */
149 if (argc > 1)
150 die("unrecognized argument: %s", argv[1]);
151
5b163603
JG
152 memset(&w, 0, sizeof(w));
153 userformat_find_requirements(NULL, &w);
154
155 if (!rev->show_notes_given && (!rev->pretty_given || w.notes))
66b2ed09 156 rev->show_notes = 1;
894a9d33
TR
157 if (rev->show_notes)
158 init_display_notes(&rev->notes_opt);
66b2ed09 159
9dafea26
TH
160 if (rev->diffopt.pickaxe || rev->diffopt.filter)
161 rev->always_show_header = 0;
8f67f8ae 162 if (DIFF_OPT_TST(&rev->diffopt, FOLLOW_RENAMES)) {
750f7b66 163 rev->always_show_header = 0;
66f13625 164 if (rev->diffopt.pathspec.nr != 1)
750f7b66
LT
165 usage("git logs can only follow renames on one pathname at a time");
166 }
1c40c36b
CMN
167
168 if (source)
169 rev->show_source = 1;
635530a2 170
ea57bc0d
AP
171 if (mailmap) {
172 rev->mailmap = xcalloc(1, sizeof(struct string_list));
173 read_mailmap(rev->mailmap, NULL);
174 }
175
0c47695a
JS
176 if (rev->pretty_given && rev->commit_format == CMIT_FMT_RAW) {
177 /*
178 * "log --pretty=raw" is special; ignore UI oriented
179 * configuration variables such as decoration.
180 */
181 if (!decoration_given)
182 decoration_style = 0;
183 if (!rev->abbrev_commit_given)
184 rev->abbrev_commit = 0;
185 }
635530a2 186
33e7018c
LH
187 if (decoration_style) {
188 rev->show_decorations = 1;
189 load_ref_decorations(decoration_style);
190 }
12da1d1f
TR
191
192 if (rev->line_level_traverse)
193 line_log_init(rev, line_cb.prefix, &line_cb.args);
194
1fda91b5 195 setup_pager();
9dafea26
TH
196}
197
ef803fd4
MG
198static void cmd_log_init(int argc, const char **argv, const char *prefix,
199 struct rev_info *rev, struct setup_revision_opt *opt)
200{
201 cmd_log_init_defaults(rev);
202 cmd_log_init_finish(argc, argv, prefix, rev, opt);
203}
204
252a7c02
LT
205/*
206 * This gives a rough estimate for how many commits we
207 * will print out in the list.
208 */
209static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
210{
211 int n = 0;
212
213 while (list) {
214 struct commit *commit = list->item;
215 unsigned int flags = commit->object.flags;
252a7c02 216 list = list->next;
7dc0fe3b 217 if (!(flags & (TREESAME | UNINTERESTING)))
53b2c823 218 n++;
252a7c02
LT
219 }
220 return n;
221}
222
223static void show_early_header(struct rev_info *rev, const char *stage, int nr)
224{
225 if (rev->shown_one) {
226 rev->shown_one = 0;
227 if (rev->commit_format != CMIT_FMT_ONELINE)
228 putchar(rev->diffopt.line_termination);
229 }
5c5f1d7c 230 printf(_("Final output: %d %s\n"), nr, stage);
252a7c02
LT
231}
232
2af202be 233static struct itimerval early_output_timer;
252a7c02 234
cdcefbc9
LT
235static void log_show_early(struct rev_info *revs, struct commit_list *list)
236{
237 int i = revs->early_output;
252a7c02 238 int show_header = 1;
cdcefbc9 239
08f704f2 240 sort_in_topological_order(&list, revs->sort_order);
cdcefbc9
LT
241 while (list && i) {
242 struct commit *commit = list->item;
252a7c02
LT
243 switch (simplify_commit(revs, commit)) {
244 case commit_show:
245 if (show_header) {
246 int n = estimate_commit_count(revs, list);
247 show_early_header(revs, "incomplete", n);
248 show_header = 0;
249 }
250 log_tree_commit(revs, commit);
251 i--;
252 break;
253 case commit_ignore:
254 break;
255 case commit_error:
256 return;
257 }
cdcefbc9 258 list = list->next;
cdcefbc9 259 }
252a7c02
LT
260
261 /* Did we already get enough commits for the early output? */
262 if (!i)
263 return;
264
265 /*
266 * ..if no, then repeat it twice a second until we
267 * do.
268 *
269 * NOTE! We don't use "it_interval", because if the
270 * reader isn't listening, we want our output to be
271 * throttled by the writing, and not have the timer
272 * trigger every second even if we're blocked on a
273 * reader!
274 */
275 early_output_timer.it_value.tv_sec = 0;
276 early_output_timer.it_value.tv_usec = 500000;
277 setitimer(ITIMER_REAL, &early_output_timer, NULL);
cdcefbc9
LT
278}
279
280static void early_output(int signal)
281{
282 show_early_output = log_show_early;
283}
284
285static void setup_early_output(struct rev_info *rev)
286{
287 struct sigaction sa;
cdcefbc9
LT
288
289 /*
290 * Set up the signal handler, minimally intrusively:
291 * we only set a single volatile integer word (not
292 * using sigatomic_t - trying to avoid unnecessary
293 * system dependencies and headers), and using
294 * SA_RESTART.
295 */
296 memset(&sa, 0, sizeof(sa));
297 sa.sa_handler = early_output;
298 sigemptyset(&sa.sa_mask);
299 sa.sa_flags = SA_RESTART;
300 sigaction(SIGALRM, &sa, NULL);
301
302 /*
303 * If we can get the whole output in less than a
304 * tenth of a second, don't even bother doing the
305 * early-output thing..
306 *
307 * This is a one-time-only trigger.
308 */
252a7c02
LT
309 early_output_timer.it_value.tv_sec = 0;
310 early_output_timer.it_value.tv_usec = 100000;
311 setitimer(ITIMER_REAL, &early_output_timer, NULL);
cdcefbc9
LT
312}
313
314static void finish_early_output(struct rev_info *rev)
315{
252a7c02 316 int n = estimate_commit_count(rev, rev->commits);
cdcefbc9 317 signal(SIGALRM, SIG_IGN);
252a7c02 318 show_early_header(rev, "done", n);
cdcefbc9
LT
319}
320
9dafea26
TH
321static int cmd_log_walk(struct rev_info *rev)
322{
323 struct commit *commit;
f31027c9
JH
324 int saved_nrl = 0;
325 int saved_dcctc = 0;
70827b15 326
cdcefbc9
LT
327 if (rev->early_output)
328 setup_early_output(rev);
329
3d51e1b5 330 if (prepare_revision_walk(rev))
5c5f1d7c 331 die(_("revision walk setup failed"));
cdcefbc9
LT
332
333 if (rev->early_output)
334 finish_early_output(rev);
335
036d17fe 336 /*
84102a33
PVM
337 * For --check and --exit-code, the exit code is based on CHECK_FAILED
338 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
339 * retain that state information if replacing rev->diffopt in this loop
036d17fe 340 */
70827b15 341 while ((commit = get_revision(rev)) != NULL) {
251df09b
MM
342 if (!log_tree_commit(rev, commit) &&
343 rev->max_count >= 0)
344 /*
345 * We decremented max_count in get_revision,
346 * but we didn't actually show the commit.
347 */
348 rev->max_count++;
a6c73064
JS
349 if (!rev->reflog_info) {
350 /* we allow cycles in reflog ancestry */
351 free(commit->buffer);
352 commit->buffer = NULL;
353 }
cb115748
LT
354 free_commit_list(commit->parents);
355 commit->parents = NULL;
f31027c9
JH
356 if (saved_nrl < rev->diffopt.needed_rename_limit)
357 saved_nrl = rev->diffopt.needed_rename_limit;
358 if (rev->diffopt.degraded_cc_to_c)
359 saved_dcctc = 1;
70827b15 360 }
f31027c9
JH
361 rev->diffopt.degraded_cc_to_c = saved_dcctc;
362 rev->diffopt.needed_rename_limit = saved_nrl;
363
036d17fe
PVM
364 if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
365 DIFF_OPT_TST(&rev->diffopt, CHECK_FAILED)) {
366 return 02;
367 }
84102a33 368 return diff_result_code(&rev->diffopt, 0);
70827b15
LT
369}
370
ef90d6d4 371static int git_log_config(const char *var, const char *value, void *cb)
0f03ca94 372{
94c22a5e
CR
373 if (!strcmp(var, "format.pretty"))
374 return git_config_string(&fmt_pretty, var, value);
70cff3ac
BH
375 if (!strcmp(var, "format.subjectprefix"))
376 return git_config_string(&fmt_patch_subject_prefix, var, value);
0c47695a
JS
377 if (!strcmp(var, "log.abbrevcommit")) {
378 default_abbrev_commit = git_config_bool(var, value);
379 return 0;
380 }
dd0ffd5b
HO
381 if (!strcmp(var, "log.date"))
382 return git_config_string(&default_date_mode, var, value);
eb734454 383 if (!strcmp(var, "log.decorate")) {
8a3d203b
JH
384 decoration_style = parse_decoration_style(var, value);
385 if (decoration_style < 0)
386 decoration_style = 0; /* maybe warn? */
eb734454
SD
387 return 0;
388 }
0f03ca94
PB
389 if (!strcmp(var, "log.showroot")) {
390 default_show_root = git_config_bool(var, value);
391 return 0;
392 }
5e11bee6
NR
393 if (!prefixcmp(var, "color.decorate."))
394 return parse_decorate_color_config(var, 15, value);
e6bb5f78
AP
395 if (!strcmp(var, "log.mailmap")) {
396 use_mailmap_config = git_config_bool(var, value);
397 return 0;
398 }
399
0657bcbf
JH
400 if (grep_config(var, value, cb) < 0)
401 return -1;
6005dbb9 402 if (git_gpg_config(var, value, cb) < 0)
0657bcbf 403 return -1;
ef90d6d4 404 return git_diff_ui_config(var, value, cb);
0f03ca94
PB
405}
406
a633fca0 407int cmd_whatchanged(int argc, const char **argv, const char *prefix)
70827b15
LT
408{
409 struct rev_info rev;
32962c9b 410 struct setup_revision_opt opt;
70827b15 411
0657bcbf 412 init_grep_defaults();
ef90d6d4 413 git_config(git_log_config, NULL);
6b2f2d98 414
db6296a5 415 init_revisions(&rev, prefix);
70827b15 416 rev.diff = 1;
9202434c 417 rev.simplify_history = 0;
32962c9b
JH
418 memset(&opt, 0, sizeof(opt));
419 opt.def = "HEAD";
d5f6b1d7 420 opt.revarg_opt = REVARG_COMMITTISH;
32962c9b 421 cmd_log_init(argc, argv, prefix, &rev, &opt);
9dafea26
TH
422 if (!rev.diffopt.output_format)
423 rev.diffopt.output_format = DIFF_FORMAT_RAW;
424 return cmd_log_walk(&rev);
70827b15
LT
425}
426
56122ed8
JS
427static void show_tagger(char *buf, int len, struct rev_info *rev)
428{
ea718e65 429 struct strbuf out = STRBUF_INIT;
6bf13944 430 struct pretty_print_context pp = {0};
56122ed8 431
6bf13944
JK
432 pp.fmt = rev->commit_format;
433 pp.date_mode = rev->date_mode;
434 pp_user_info(&pp, "Tagger", &out, buf, get_log_output_encoding());
ca4ca9ed 435 printf("%s", out.buf);
ea718e65 436 strbuf_release(&out);
56122ed8
JS
437}
438
74775a09
NTND
439static int show_blob_object(const unsigned char *sha1, struct rev_info *rev)
440{
441 fflush(stdout);
442 return stream_blob_to_fd(1, sha1, NULL, 0);
443}
444
445static int show_tag_object(const unsigned char *sha1, struct rev_info *rev)
5d7eeee2
JS
446{
447 unsigned long size;
21666f1a
NP
448 enum object_type type;
449 char *buf = read_sha1_file(sha1, &type, &size);
5d7eeee2
JS
450 int offset = 0;
451
452 if (!buf)
5c5f1d7c 453 return error(_("Could not read object %s"), sha1_to_hex(sha1));
5d7eeee2 454
74775a09
NTND
455 assert(type == OBJ_TAG);
456 while (offset < size && buf[offset] != '\n') {
457 int new_offset = offset + 1;
458 while (new_offset < size && buf[new_offset++] != '\n')
459 ; /* do nothing */
460 if (!prefixcmp(buf + offset, "tagger "))
461 show_tagger(buf + offset + 7,
462 new_offset - offset - 7, rev);
463 offset = new_offset;
464 }
5d7eeee2
JS
465
466 if (offset < size)
467 fwrite(buf + offset, size - offset, 1, stdout);
468 free(buf);
469 return 0;
470}
471
472static int show_tree_object(const unsigned char *sha1,
473 const char *base, int baselen,
671f0707 474 const char *pathname, unsigned mode, int stage, void *context)
5d7eeee2
JS
475{
476 printf("%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
477 return 0;
478}
479
b4490059
JH
480static void show_rev_tweak_rev(struct rev_info *rev, struct setup_revision_opt *opt)
481{
2bf65873
JH
482 if (rev->ignore_merges) {
483 /* There was no "-m" on the command line */
484 rev->ignore_merges = 0;
485 if (!rev->first_parent_only && !rev->combine_merges) {
486 /* No "--first-parent", "-c", nor "--cc" */
487 rev->combine_merges = 1;
488 rev->dense_combined_merges = 1;
489 }
490 }
b4490059
JH
491 if (!rev->diffopt.output_format)
492 rev->diffopt.output_format = DIFF_FORMAT_PATCH;
493}
494
a633fca0 495int cmd_show(int argc, const char **argv, const char *prefix)
70827b15
LT
496{
497 struct rev_info rev;
5d7eeee2 498 struct object_array_entry *objects;
32962c9b 499 struct setup_revision_opt opt;
f0096c06 500 struct pathspec match_all;
5d7eeee2 501 int i, count, ret = 0;
70827b15 502
0657bcbf 503 init_grep_defaults();
ef90d6d4 504 git_config(git_log_config, NULL);
6b2f2d98 505
f0096c06 506 init_pathspec(&match_all, NULL);
db6296a5 507 init_revisions(&rev, prefix);
70827b15 508 rev.diff = 1;
70827b15 509 rev.always_show_header = 1;
ca92e59e 510 rev.no_walk = REVISION_WALK_NO_WALK_SORTED;
666c92a2
ZJS
511 rev.diffopt.stat_width = -1; /* Scale to real terminal size */
512
32962c9b
JH
513 memset(&opt, 0, sizeof(opt));
514 opt.def = "HEAD";
b4490059 515 opt.tweak = show_rev_tweak_rev;
32962c9b 516 cmd_log_init(argc, argv, prefix, &rev, &opt);
5d7eeee2 517
c5941f1a
JH
518 if (!rev.no_walk)
519 return cmd_log_walk(&rev);
520
5d7eeee2
JS
521 count = rev.pending.nr;
522 objects = rev.pending.objects;
523 for (i = 0; i < count && !ret; i++) {
524 struct object *o = objects[i].item;
525 const char *name = objects[i].name;
526 switch (o->type) {
527 case OBJ_BLOB:
74775a09 528 ret = show_blob_object(o->sha1, NULL);
5d7eeee2
JS
529 break;
530 case OBJ_TAG: {
531 struct tag *t = (struct tag *)o;
532
ae03ee64
JK
533 if (rev.shown_one)
534 putchar('\n');
56122ed8 535 printf("%stag %s%s\n",
8f67f8ae 536 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
5d7eeee2 537 t->tag,
8f67f8ae 538 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
74775a09 539 ret = show_tag_object(o->sha1, &rev);
ae03ee64 540 rev.shown_one = 1;
d2dadfe8
JH
541 if (ret)
542 break;
543 o = parse_object(t->tagged->sha1);
544 if (!o)
5c5f1d7c 545 ret = error(_("Could not read object %s"),
d2dadfe8
JH
546 sha1_to_hex(t->tagged->sha1));
547 objects[i].item = o;
5d7eeee2
JS
548 i--;
549 break;
550 }
551 case OBJ_TREE:
ae03ee64
JK
552 if (rev.shown_one)
553 putchar('\n');
5d7eeee2 554 printf("%stree %s%s\n\n",
8f67f8ae 555 diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
5d7eeee2 556 name,
8f67f8ae 557 diff_get_color_opt(&rev.diffopt, DIFF_RESET));
f0096c06 558 read_tree_recursive((struct tree *)o, "", 0, 0, &match_all,
671f0707 559 show_tree_object, NULL);
ae03ee64 560 rev.shown_one = 1;
5d7eeee2
JS
561 break;
562 case OBJ_COMMIT:
563 rev.pending.nr = rev.pending.alloc = 0;
564 rev.pending.objects = NULL;
565 add_object_array(o, name, &rev.pending);
566 ret = cmd_log_walk(&rev);
567 break;
568 default:
5c5f1d7c 569 ret = error(_("Unknown type: %d"), o->type);
5d7eeee2
JS
570 }
571 }
572 free(objects);
573 return ret;
70827b15
LT
574}
575
cf39f54e
LT
576/*
577 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
578 */
579int cmd_log_reflog(int argc, const char **argv, const char *prefix)
580{
581 struct rev_info rev;
32962c9b 582 struct setup_revision_opt opt;
cf39f54e 583
0657bcbf 584 init_grep_defaults();
ef90d6d4 585 git_config(git_log_config, NULL);
6b2f2d98 586
cf39f54e
LT
587 init_revisions(&rev, prefix);
588 init_reflog_walk(&rev.reflog_info);
cf39f54e 589 rev.verbose_header = 1;
32962c9b
JH
590 memset(&opt, 0, sizeof(opt));
591 opt.def = "HEAD";
4b56cf58 592 cmd_log_init_defaults(&rev);
0c47695a 593 rev.abbrev_commit = 1;
cf39f54e 594 rev.commit_format = CMIT_FMT_ONELINE;
4da45bef 595 rev.use_terminator = 1;
cf39f54e 596 rev.always_show_header = 1;
4b56cf58 597 cmd_log_init_finish(argc, argv, prefix, &rev, &opt);
cf39f54e 598
cf39f54e
LT
599 return cmd_log_walk(&rev);
600}
601
a633fca0 602int cmd_log(int argc, const char **argv, const char *prefix)
70827b15
LT
603{
604 struct rev_info rev;
32962c9b 605 struct setup_revision_opt opt;
70827b15 606
0657bcbf 607 init_grep_defaults();
ef90d6d4 608 git_config(git_log_config, NULL);
6b2f2d98 609
db6296a5 610 init_revisions(&rev, prefix);
70827b15 611 rev.always_show_header = 1;
32962c9b
JH
612 memset(&opt, 0, sizeof(opt));
613 opt.def = "HEAD";
d5f6b1d7 614 opt.revarg_opt = REVARG_COMMITTISH;
32962c9b 615 cmd_log_init(argc, argv, prefix, &rev, &opt);
9dafea26 616 return cmd_log_walk(&rev);
70827b15 617}
91efcf60 618
c06d2daa 619/* format-patch */
0377db77 620
917a8f89 621static const char *fmt_patch_suffix = ".patch";
49604a4d 622static int numbered = 0;
a567fdcb 623static int auto_number = 1;
20ff0680 624
0db5260b
JW
625static char *default_attach = NULL;
626
ca9e0a1b
SB
627static struct string_list extra_hdr;
628static struct string_list extra_to;
629static struct string_list extra_cc;
3ee79d9f
DB
630
631static void add_header(const char *value)
632{
ca9e0a1b 633 struct string_list_item *item;
3ee79d9f 634 int len = strlen(value);
c8c4450e 635 while (len && value[len - 1] == '\n')
3ee79d9f 636 len--;
ca9e0a1b 637
3ee79d9f 638 if (!strncasecmp(value, "to: ", 4)) {
1d2f80fa 639 item = string_list_append(&extra_to, value + 4);
ca9e0a1b
SB
640 len -= 4;
641 } else if (!strncasecmp(value, "cc: ", 4)) {
1d2f80fa 642 item = string_list_append(&extra_cc, value + 4);
ca9e0a1b
SB
643 len -= 4;
644 } else {
1d2f80fa 645 item = string_list_append(&extra_hdr, value);
3ee79d9f 646 }
ca9e0a1b
SB
647
648 item->string[len] = '\0';
3ee79d9f
DB
649}
650
30984ed2
TR
651#define THREAD_SHALLOW 1
652#define THREAD_DEEP 2
6622d9c7
SB
653static int thread;
654static int do_signoff;
655static const char *signature = git_version_string;
2a4c2607
FC
656static int config_cover_letter;
657
658enum {
659 COVER_UNSET,
660 COVER_OFF,
661 COVER_ON,
662 COVER_AUTO
663};
30984ed2 664
ef90d6d4 665static int git_format_config(const char *var, const char *value, void *cb)
20ff0680
JS
666{
667 if (!strcmp(var, "format.headers")) {
d7fb91c6 668 if (!value)
5c5f1d7c 669 die(_("format.headers without value"));
3ee79d9f 670 add_header(value);
20ff0680
JS
671 return 0;
672 }
70cff3ac
BH
673 if (!strcmp(var, "format.suffix"))
674 return git_config_string(&fmt_patch_suffix, var, value);
ae6c098f
SD
675 if (!strcmp(var, "format.to")) {
676 if (!value)
677 return config_error_nonbool(var);
1d2f80fa 678 string_list_append(&extra_to, value);
ae6c098f
SD
679 return 0;
680 }
fe8928e6
MV
681 if (!strcmp(var, "format.cc")) {
682 if (!value)
683 return config_error_nonbool(var);
1d2f80fa 684 string_list_append(&extra_cc, value);
fe8928e6
MV
685 return 0;
686 }
787570c7
PYH
687 if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") ||
688 !strcmp(var, "color.ui")) {
f3aafa4d
RA
689 return 0;
690 }
49604a4d 691 if (!strcmp(var, "format.numbered")) {
90f5c186 692 if (value && !strcasecmp(value, "auto")) {
49604a4d
BG
693 auto_number = 1;
694 return 0;
695 }
49604a4d 696 numbered = git_config_bool(var, value);
a567fdcb 697 auto_number = auto_number && numbered;
49604a4d
BG
698 return 0;
699 }
0db5260b
JW
700 if (!strcmp(var, "format.attach")) {
701 if (value && *value)
702 default_attach = xstrdup(value);
703 else
704 default_attach = xstrdup(git_version_string);
705 return 0;
706 }
30984ed2
TR
707 if (!strcmp(var, "format.thread")) {
708 if (value && !strcasecmp(value, "deep")) {
709 thread = THREAD_DEEP;
710 return 0;
711 }
712 if (value && !strcasecmp(value, "shallow")) {
713 thread = THREAD_SHALLOW;
714 return 0;
715 }
716 thread = git_config_bool(var, value) && THREAD_SHALLOW;
717 return 0;
718 }
1d1876e9
HV
719 if (!strcmp(var, "format.signoff")) {
720 do_signoff = git_config_bool(var, value);
721 return 0;
722 }
6622d9c7
SB
723 if (!strcmp(var, "format.signature"))
724 return git_config_string(&signature, var, value);
2a4c2607
FC
725 if (!strcmp(var, "format.coverletter")) {
726 if (value && !strcasecmp(value, "auto")) {
727 config_cover_letter = COVER_AUTO;
728 return 0;
729 }
730 config_cover_letter = git_config_bool(var, value) ? COVER_ON : COVER_OFF;
731 return 0;
732 }
dbd21447 733
ef90d6d4 734 return git_log_config(var, value, cb);
20ff0680
JS
735}
736
81f3a188 737static FILE *realstdout = NULL;
efd02016 738static const char *output_directory = NULL;
9800a754 739static int outdir_offset;
81f3a188 740
a21c2f94
JK
741static int reopen_stdout(struct commit *commit, const char *subject,
742 struct rev_info *rev, int quiet)
0377db77 743{
cd2ef591 744 struct strbuf filename = STRBUF_INIT;
68cb7b6f 745 int suffix_len = strlen(rev->patch_suffix) + 1;
0377db77 746
2448482b 747 if (output_directory) {
cd2ef591
SB
748 strbuf_addstr(&filename, output_directory);
749 if (filename.len >=
750 PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len)
5c5f1d7c 751 return error(_("name of output directory is too long"));
cd2ef591
SB
752 if (filename.buf[filename.len - 1] != '/')
753 strbuf_addch(&filename, '/');
2448482b 754 }
0377db77 755
38ec23ac
JH
756 if (rev->numbered_files)
757 strbuf_addf(&filename, "%d", rev->nr);
d28b5d47
JH
758 else if (commit)
759 fmt_output_commit(&filename, commit, rev);
38ec23ac 760 else
d28b5d47 761 fmt_output_subject(&filename, subject, rev);
e6ff0f42 762
250087f2 763 if (!quiet)
cd2ef591 764 fprintf(realstdout, "%s\n", filename.buf + outdir_offset);
ec2956df 765
cd2ef591 766 if (freopen(filename.buf, "w", stdout) == NULL)
5c5f1d7c 767 return error(_("Cannot open patch file %s"), filename.buf);
c06d2daa 768
cd2ef591 769 strbuf_release(&filename);
e6ff0f42 770 return 0;
0377db77
JS
771}
772
811929f1 773static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids)
9c6efa36
JS
774{
775 struct rev_info check_rev;
776 struct commit *commit;
777 struct object *o1, *o2;
778 unsigned flags1, flags2;
9c6efa36
JS
779
780 if (rev->pending.nr != 2)
5c5f1d7c 781 die(_("Need exactly one range."));
9c6efa36
JS
782
783 o1 = rev->pending.objects[0].item;
784 flags1 = o1->flags;
785 o2 = rev->pending.objects[1].item;
786 flags2 = o2->flags;
787
788 if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
5c5f1d7c 789 die(_("Not a range."));
9c6efa36 790
5d23e133 791 init_patch_ids(ids);
9c6efa36
JS
792
793 /* given a range a..b get all patch ids for b..a */
811929f1 794 init_revisions(&check_rev, rev->prefix);
51f4de3a 795 check_rev.max_parents = 1;
9c6efa36
JS
796 o1->flags ^= UNINTERESTING;
797 o2->flags ^= UNINTERESTING;
798 add_pending_object(&check_rev, o1, "o1");
799 add_pending_object(&check_rev, o2, "o2");
3d51e1b5 800 if (prepare_revision_walk(&check_rev))
5c5f1d7c 801 die(_("revision walk setup failed"));
9c6efa36
JS
802
803 while ((commit = get_revision(&check_rev)) != NULL) {
5d23e133 804 add_commit_patch_id(commit, ids);
9c6efa36
JS
805 }
806
807 /* reset for next revision walk */
81db0941
JS
808 clear_commit_marks((struct commit *)o1,
809 SEEN | UNINTERESTING | SHOWN | ADDED);
810 clear_commit_marks((struct commit *)o2,
811 SEEN | UNINTERESTING | SHOWN | ADDED);
9c6efa36
JS
812 o1->flags = flags1;
813 o2->flags = flags2;
814}
815
e1a37346 816static void gen_message_id(struct rev_info *info, char *base)
d1566f78 817{
f285a2d7 818 struct strbuf buf = STRBUF_INIT;
43ae9f47 819 strbuf_addf(&buf, "%s.%lu.git.%s", base,
c73f384f 820 (unsigned long) time(NULL),
59f9b8a9 821 git_committer_info(IDENT_NO_NAME|IDENT_NO_DATE|IDENT_STRICT));
e1a37346 822 info->message_id = strbuf_detach(&buf, NULL);
d1566f78
JT
823}
824
6622d9c7
SB
825static void print_signature(void)
826{
827 if (signature && *signature)
828 printf("-- \n%s\n\n", signature);
829}
830
739453a3
JH
831static void add_branch_description(struct strbuf *buf, const char *branch_name)
832{
833 struct strbuf desc = STRBUF_INIT;
834 if (!branch_name || !*branch_name)
835 return;
836 read_branch_desc(&desc, branch_name);
837 if (desc.len) {
838 strbuf_addch(buf, '\n');
839 strbuf_add(buf, desc.buf, desc.len);
840 strbuf_addch(buf, '\n');
841 }
842}
843
d7ddad01
FC
844static char *find_branch_name(struct rev_info *rev)
845{
846 int i, positive = -1;
847 unsigned char branch_sha1[20];
848 const unsigned char *tip_sha1;
849 const char *ref;
850 char *full_ref, *branch = NULL;
851
852 for (i = 0; i < rev->cmdline.nr; i++) {
853 if (rev->cmdline.rev[i].flags & UNINTERESTING)
854 continue;
855 if (positive < 0)
856 positive = i;
857 else
858 return NULL;
859 }
860 if (positive < 0)
861 return NULL;
862 ref = rev->cmdline.rev[positive].name;
863 tip_sha1 = rev->cmdline.rev[positive].item->sha1;
864 if (dwim_ref(ref, strlen(ref), branch_sha1, &full_ref) &&
865 !prefixcmp(full_ref, "refs/heads/") &&
866 !hashcmp(tip_sha1, branch_sha1))
867 branch = xstrdup(full_ref + strlen("refs/heads/"));
868 free(full_ref);
869 return branch;
870}
871
2bda2cf4 872static void make_cover_letter(struct rev_info *rev, int use_stdout,
2bda2cf4 873 struct commit *origin,
d7ddad01 874 int nr, struct commit **list,
739453a3 875 const char *branch_name,
250087f2 876 int quiet)
a5a27c79
DB
877{
878 const char *committer;
a5a27c79
DB
879 const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
880 const char *msg;
2bda2cf4 881 struct shortlog log;
f285a2d7 882 struct strbuf sb = STRBUF_INIT;
2bda2cf4 883 int i;
330db18c 884 const char *encoding = "UTF-8";
39fe578b 885 struct diff_options opts;
267123b4 886 int need_8bit_cte = 0;
6bf13944 887 struct pretty_print_context pp = {0};
d7ddad01 888 struct commit *head = list[0];
a5a27c79
DB
889
890 if (rev->commit_format != CMIT_FMT_EMAIL)
5c5f1d7c 891 die(_("Cover letter needs email format"));
a5a27c79 892
cd2ef591 893 committer = git_committer_info(0);
6df514af 894
a21c2f94 895 if (!use_stdout &&
ce37596c 896 reopen_stdout(NULL, rev->numbered_files ? NULL : "cover-letter", rev, quiet))
a5a27c79
DB
897 return;
898
6bf13944 899 log_write_email_headers(rev, head, &pp.subject, &pp.after_subject,
267123b4 900 &need_8bit_cte);
a5a27c79 901
0a7f4483
JS
902 for (i = 0; !need_8bit_cte && i < nr; i++)
903 if (has_non_ascii(list[i]->buffer))
904 need_8bit_cte = 1;
905
d7ddad01
FC
906 if (!branch_name)
907 branch_name = find_branch_name(rev);
908
a5a27c79 909 msg = body;
6bf13944
JK
910 pp.fmt = CMIT_FMT_EMAIL;
911 pp.date_mode = DATE_RFC2822;
912 pp_user_info(&pp, NULL, &sb, committer, encoding);
913 pp_title_line(&pp, &msg, &sb, encoding, need_8bit_cte);
914 pp_remainder(&pp, &msg, &sb, 0);
739453a3 915 add_branch_description(&sb, branch_name);
a5a27c79
DB
916 printf("%s\n", sb.buf);
917
918 strbuf_release(&sb);
919
2bda2cf4 920 shortlog_init(&log);
859c4fbe
JS
921 log.wrap_lines = 1;
922 log.wrap = 72;
923 log.in1 = 2;
924 log.in2 = 4;
2bda2cf4
DB
925 for (i = 0; i < nr; i++)
926 shortlog_add_commit(&log, list[i]);
927
928 shortlog_output(&log);
929
a5a27c79 930 /*
2bda2cf4 931 * We can only do diffstat with a unique reference point
a5a27c79
DB
932 */
933 if (!origin)
934 return;
935
5d02294c
JS
936 memcpy(&opts, &rev->diffopt, sizeof(opts));
937 opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
a5a27c79 938
39fe578b
DB
939 diff_setup_done(&opts);
940
941 diff_tree_sha1(origin->tree->object.sha1,
942 head->tree->object.sha1,
943 "", &opts);
944 diffcore_std(&opts);
945 diff_flush(&opts);
a5a27c79 946
a5a27c79 947 printf("\n");
6622d9c7 948 print_signature();
d1566f78
JT
949}
950
8419d2ee
JH
951static const char *clean_message_id(const char *msg_id)
952{
953 char ch;
954 const char *a, *z, *m;
8419d2ee
JH
955
956 m = msg_id;
957 while ((ch = *m) && (isspace(ch) || (ch == '<')))
958 m++;
959 a = m;
960 z = NULL;
961 while ((ch = *m)) {
962 if (!isspace(ch) && (ch != '>'))
963 z = m;
964 m++;
965 }
966 if (!z)
5c5f1d7c 967 die(_("insane in-reply-to: %s"), msg_id);
8419d2ee
JH
968 if (++z == m)
969 return a;
182af834 970 return xmemdupz(a, z - a);
8419d2ee
JH
971}
972
9800a754
JH
973static const char *set_outdir(const char *prefix, const char *output_directory)
974{
975 if (output_directory && is_absolute_path(output_directory))
976 return output_directory;
977
978 if (!prefix || !*prefix) {
979 if (output_directory)
980 return output_directory;
981 /* The user did not explicitly ask for "./" */
982 outdir_offset = 2;
983 return "./";
984 }
985
986 outdir_offset = strlen(prefix);
987 if (!output_directory)
988 return prefix;
989
990 return xstrdup(prefix_filename(prefix, outdir_offset,
991 output_directory));
992}
993
fff02ee6 994static const char * const builtin_format_patch_usage[] = {
61007a58 995 N_("git format-patch [options] [<since> | <revision range>]"),
fff02ee6
SB
996 NULL
997};
998
999static int keep_subject = 0;
1000
1001static int keep_callback(const struct option *opt, const char *arg, int unset)
1002{
1003 ((struct rev_info *)opt->value)->total = -1;
1004 keep_subject = 1;
1005 return 0;
1006}
1007
1008static int subject_prefix = 0;
1009
1010static int subject_prefix_callback(const struct option *opt, const char *arg,
1011 int unset)
1012{
1013 subject_prefix = 1;
1014 ((struct rev_info *)opt->value)->subject_prefix = arg;
1015 return 0;
1016}
1017
1af4731b
JH
1018static int numbered_cmdline_opt = 0;
1019
fff02ee6
SB
1020static int numbered_callback(const struct option *opt, const char *arg,
1021 int unset)
1022{
1af4731b 1023 *(int *)opt->value = numbered_cmdline_opt = unset ? 0 : 1;
fff02ee6
SB
1024 if (unset)
1025 auto_number = 0;
1026 return 0;
1027}
1028
1029static int no_numbered_callback(const struct option *opt, const char *arg,
1030 int unset)
1031{
1032 return numbered_callback(opt, arg, 1);
1033}
1034
1035static int output_directory_callback(const struct option *opt, const char *arg,
1036 int unset)
1037{
1038 const char **dir = (const char **)opt->value;
1039 if (*dir)
5c5f1d7c 1040 die(_("Two output directories?"));
fff02ee6
SB
1041 *dir = arg;
1042 return 0;
1043}
1044
1045static int thread_callback(const struct option *opt, const char *arg, int unset)
1046{
1047 int *thread = (int *)opt->value;
1048 if (unset)
1049 *thread = 0;
1050 else if (!arg || !strcmp(arg, "shallow"))
1051 *thread = THREAD_SHALLOW;
1052 else if (!strcmp(arg, "deep"))
1053 *thread = THREAD_DEEP;
1054 else
1055 return 1;
1056 return 0;
1057}
1058
1059static int attach_callback(const struct option *opt, const char *arg, int unset)
1060{
1061 struct rev_info *rev = (struct rev_info *)opt->value;
1062 if (unset)
1063 rev->mime_boundary = NULL;
1064 else if (arg)
1065 rev->mime_boundary = arg;
1066 else
1067 rev->mime_boundary = git_version_string;
1068 rev->no_inline = unset ? 0 : 1;
1069 return 0;
1070}
1071
1072static int inline_callback(const struct option *opt, const char *arg, int unset)
1073{
1074 struct rev_info *rev = (struct rev_info *)opt->value;
1075 if (unset)
1076 rev->mime_boundary = NULL;
1077 else if (arg)
1078 rev->mime_boundary = arg;
1079 else
1080 rev->mime_boundary = git_version_string;
1081 rev->no_inline = 0;
1082 return 0;
1083}
1084
1085static int header_callback(const struct option *opt, const char *arg, int unset)
1086{
c4260034
SB
1087 if (unset) {
1088 string_list_clear(&extra_hdr, 0);
1089 string_list_clear(&extra_to, 0);
1090 string_list_clear(&extra_cc, 0);
1091 } else {
1092 add_header(arg);
1093 }
fff02ee6
SB
1094 return 0;
1095}
1096
ae6c098f
SD
1097static int to_callback(const struct option *opt, const char *arg, int unset)
1098{
c4260034
SB
1099 if (unset)
1100 string_list_clear(&extra_to, 0);
1101 else
1d2f80fa 1102 string_list_append(&extra_to, arg);
fff02ee6
SB
1103 return 0;
1104}
1105
1106static int cc_callback(const struct option *opt, const char *arg, int unset)
1107{
c4260034
SB
1108 if (unset)
1109 string_list_clear(&extra_cc, 0);
1110 else
1d2f80fa 1111 string_list_append(&extra_cc, arg);
fff02ee6
SB
1112 return 0;
1113}
1114
a9080475
JK
1115static int from_callback(const struct option *opt, const char *arg, int unset)
1116{
1117 char **from = opt->value;
1118
1119 free(*from);
1120
1121 if (unset)
1122 *from = NULL;
1123 else if (arg)
1124 *from = xstrdup(arg);
1125 else
1126 *from = xstrdup(git_committer_info(IDENT_NO_DATE));
1127 return 0;
1128}
1129
a633fca0 1130int cmd_format_patch(int argc, const char **argv, const char *prefix)
91efcf60
JH
1131{
1132 struct commit *commit;
1133 struct commit **list = NULL;
1134 struct rev_info rev;
32962c9b 1135 struct setup_revision_opt s_r_opt;
fff02ee6 1136 int nr = 0, total, i;
0377db77 1137 int use_stdout = 0;
fa0f02df 1138 int start_number = -1;
ce37596c 1139 int just_numbers = 0;
9c6efa36 1140 int ignore_if_in_upstream = 0;
2a4c2607 1141 int cover_letter = -1;
2bda2cf4 1142 int boundary_count = 0;
37c22a4b 1143 int no_binary_diff = 0;
d7ddad01 1144 struct commit *origin = NULL;
76af0734 1145 const char *in_reply_to = NULL;
5d23e133 1146 struct patch_ids ids;
f285a2d7 1147 struct strbuf buf = STRBUF_INIT;
1d46f2ea 1148 int use_patch_format = 0;
250087f2 1149 int quiet = 0;
5fe10fe8 1150 int reroll_count = -1;
739453a3 1151 char *branch_name = NULL;
a9080475 1152 char *from = NULL;
fff02ee6
SB
1153 const struct option builtin_format_patch_options[] = {
1154 { OPTION_CALLBACK, 'n', "numbered", &numbered, NULL,
61007a58 1155 N_("use [PATCH n/m] even with a single patch"),
fff02ee6
SB
1156 PARSE_OPT_NOARG, numbered_callback },
1157 { OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL,
61007a58 1158 N_("use [PATCH] even with multiple patches"),
fff02ee6 1159 PARSE_OPT_NOARG, no_numbered_callback },
aa089cd9
FC
1160 OPT_BOOL('s', "signoff", &do_signoff, N_("add Signed-off-by:")),
1161 OPT_BOOL(0, "stdout", &use_stdout,
61007a58 1162 N_("print patches to standard out")),
aa089cd9 1163 OPT_BOOL(0, "cover-letter", &cover_letter,
61007a58 1164 N_("generate a cover letter")),
aa089cd9 1165 OPT_BOOL(0, "numbered-files", &just_numbers,
61007a58
NTND
1166 N_("use simple number sequence for output file names")),
1167 OPT_STRING(0, "suffix", &fmt_patch_suffix, N_("sfx"),
1168 N_("use <sfx> instead of '.patch'")),
fff02ee6 1169 OPT_INTEGER(0, "start-number", &start_number,
61007a58 1170 N_("start numbering patches at <n> instead of 1")),
7952ea66 1171 OPT_INTEGER('v', "reroll-count", &reroll_count,
5fe10fe8 1172 N_("mark the series as Nth re-roll")),
61007a58
NTND
1173 { OPTION_CALLBACK, 0, "subject-prefix", &rev, N_("prefix"),
1174 N_("Use [<prefix>] instead of [PATCH]"),
fff02ee6
SB
1175 PARSE_OPT_NONEG, subject_prefix_callback },
1176 { OPTION_CALLBACK, 'o', "output-directory", &output_directory,
61007a58 1177 N_("dir"), N_("store resulting files in <dir>"),
fff02ee6
SB
1178 PARSE_OPT_NONEG, output_directory_callback },
1179 { OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL,
61007a58 1180 N_("don't strip/add [PATCH]"),
fff02ee6 1181 PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback },
d5d09d47
SB
1182 OPT_BOOL(0, "no-binary", &no_binary_diff,
1183 N_("don't output binary diffs")),
1184 OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream,
1185 N_("don't include a patch matching a commit upstream")),
4741edd5 1186 { OPTION_SET_INT, 'p', "no-stat", &use_patch_format, NULL,
61007a58 1187 N_("show patch format instead of default (patch + stat)"),
4741edd5 1188 PARSE_OPT_NONEG | PARSE_OPT_NOARG, NULL, 1},
61007a58
NTND
1189 OPT_GROUP(N_("Messaging")),
1190 { OPTION_CALLBACK, 0, "add-header", NULL, N_("header"),
1191 N_("add email header"), 0, header_callback },
1192 { OPTION_CALLBACK, 0, "to", NULL, N_("email"), N_("add To: header"),
c4260034 1193 0, to_callback },
61007a58 1194 { OPTION_CALLBACK, 0, "cc", NULL, N_("email"), N_("add Cc: header"),
c4260034 1195 0, cc_callback },
a9080475
JK
1196 { OPTION_CALLBACK, 0, "from", &from, N_("ident"),
1197 N_("set From address to <ident> (or committer ident if absent)"),
1198 PARSE_OPT_OPTARG, from_callback },
61007a58
NTND
1199 OPT_STRING(0, "in-reply-to", &in_reply_to, N_("message-id"),
1200 N_("make first mail a reply to <message-id>")),
1201 { OPTION_CALLBACK, 0, "attach", &rev, N_("boundary"),
1202 N_("attach the patch"), PARSE_OPT_OPTARG,
fff02ee6 1203 attach_callback },
61007a58
NTND
1204 { OPTION_CALLBACK, 0, "inline", &rev, N_("boundary"),
1205 N_("inline the patch"),
fff02ee6
SB
1206 PARSE_OPT_OPTARG | PARSE_OPT_NONEG,
1207 inline_callback },
61007a58
NTND
1208 { OPTION_CALLBACK, 0, "thread", &thread, N_("style"),
1209 N_("enable message threading, styles: shallow, deep"),
fff02ee6 1210 PARSE_OPT_OPTARG, thread_callback },
61007a58
NTND
1211 OPT_STRING(0, "signature", &signature, N_("signature"),
1212 N_("add a signature")),
250087f2 1213 OPT_BOOLEAN(0, "quiet", &quiet,
61007a58 1214 N_("don't print the patch filenames")),
fff02ee6
SB
1215 OPT_END()
1216 };
91efcf60 1217
ca9e0a1b
SB
1218 extra_hdr.strdup_strings = 1;
1219 extra_to.strdup_strings = 1;
1220 extra_cc.strdup_strings = 1;
0657bcbf 1221 init_grep_defaults();
ef90d6d4 1222 git_config(git_format_config, NULL);
db6296a5 1223 init_revisions(&rev, prefix);
91efcf60
JH
1224 rev.commit_format = CMIT_FMT_EMAIL;
1225 rev.verbose_header = 1;
1226 rev.diff = 1;
ad5aeede 1227 rev.max_parents = 1;
8f67f8ae 1228 DIFF_OPT_SET(&rev.diffopt, RECURSIVE);
dbd21447 1229 rev.subject_prefix = fmt_patch_subject_prefix;
32962c9b
JH
1230 memset(&s_r_opt, 0, sizeof(s_r_opt));
1231 s_r_opt.def = "HEAD";
d5f6b1d7 1232 s_r_opt.revarg_opt = REVARG_COMMITTISH;
20ff0680 1233
0db5260b
JW
1234 if (default_attach) {
1235 rev.mime_boundary = default_attach;
1236 rev.no_inline = 1;
1237 }
1238
2448482b
JS
1239 /*
1240 * Parse the arguments before setup_revisions(), or something
2dc189a3 1241 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
2448482b
JS
1242 * possibly a valid SHA1.
1243 */
37782920 1244 argc = parse_options(argc, argv, prefix, builtin_format_patch_options,
fff02ee6 1245 builtin_format_patch_usage,
382da402
FC
1246 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
1247 PARSE_OPT_KEEP_DASHDASH);
2448482b 1248
5fe10fe8
JH
1249 if (0 < reroll_count) {
1250 struct strbuf sprefix = STRBUF_INIT;
1251 strbuf_addf(&sprefix, "%s v%d",
1252 rev.subject_prefix, reroll_count);
1253 rev.reroll_count = reroll_count;
1254 rev.subject_prefix = strbuf_detach(&sprefix, NULL);
1255 }
1256
ca9e0a1b
SB
1257 for (i = 0; i < extra_hdr.nr; i++) {
1258 strbuf_addstr(&buf, extra_hdr.items[i].string);
3ee79d9f
DB
1259 strbuf_addch(&buf, '\n');
1260 }
1261
ca9e0a1b 1262 if (extra_to.nr)
3ee79d9f 1263 strbuf_addstr(&buf, "To: ");
ca9e0a1b 1264 for (i = 0; i < extra_to.nr; i++) {
3ee79d9f
DB
1265 if (i)
1266 strbuf_addstr(&buf, " ");
ca9e0a1b
SB
1267 strbuf_addstr(&buf, extra_to.items[i].string);
1268 if (i + 1 < extra_to.nr)
3ee79d9f
DB
1269 strbuf_addch(&buf, ',');
1270 strbuf_addch(&buf, '\n');
1271 }
1272
ca9e0a1b 1273 if (extra_cc.nr)
3ee79d9f 1274 strbuf_addstr(&buf, "Cc: ");
ca9e0a1b 1275 for (i = 0; i < extra_cc.nr; i++) {
3ee79d9f
DB
1276 if (i)
1277 strbuf_addstr(&buf, " ");
ca9e0a1b
SB
1278 strbuf_addstr(&buf, extra_cc.items[i].string);
1279 if (i + 1 < extra_cc.nr)
3ee79d9f
DB
1280 strbuf_addch(&buf, ',');
1281 strbuf_addch(&buf, '\n');
1282 }
1283
2af202be 1284 rev.extra_headers = strbuf_detach(&buf, NULL);
3ee79d9f 1285
a9080475
JK
1286 if (from) {
1287 if (split_ident_line(&rev.from_ident, from, strlen(from)))
1288 die(_("invalid ident line: %s"), from);
1289 }
1290
add5c8a5 1291 if (start_number < 0)
fa0f02df 1292 start_number = 1;
ca6b91d2
JM
1293
1294 /*
1295 * If numbered is set solely due to format.numbered in config,
1296 * and it would conflict with --keep-subject (-k) from the
1297 * command line, reset "numbered".
1298 */
1299 if (numbered && keep_subject && !numbered_cmdline_opt)
1300 numbered = 0;
1301
63b398a4 1302 if (numbered && keep_subject)
5c5f1d7c 1303 die (_("-n and -k are mutually exclusive."));
2d9e4a47 1304 if (keep_subject && subject_prefix)
5c5f1d7c 1305 die (_("--subject-prefix and -k are mutually exclusive."));
9553d2b2 1306 rev.preserve_subject = keep_subject;
8ac80a57 1307
32962c9b 1308 argc = setup_revisions(argc, argv, &rev, &s_r_opt);
2448482b 1309 if (argc > 1)
5c5f1d7c 1310 die (_("unrecognized argument: %s"), argv[1]);
0377db77 1311
02bc5b03 1312 if (rev.diffopt.output_format & DIFF_FORMAT_NAME)
f338cb83 1313 die(_("--name-only does not make sense"));
02bc5b03 1314 if (rev.diffopt.output_format & DIFF_FORMAT_NAME_STATUS)
f338cb83 1315 die(_("--name-status does not make sense"));
02bc5b03 1316 if (rev.diffopt.output_format & DIFF_FORMAT_CHECKDIFF)
f338cb83 1317 die(_("--check does not make sense"));
02bc5b03
BG
1318
1319 if (!use_patch_format &&
1320 (!rev.diffopt.output_format ||
1321 rev.diffopt.output_format == DIFF_FORMAT_PATCH))
1322 rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY;
1323
1324 /* Always generate a patch */
1325 rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
c9b5ef99 1326
37c22a4b 1327 if (!DIFF_OPT_TST(&rev.diffopt, TEXT) && !no_binary_diff)
8f67f8ae 1328 DIFF_OPT_SET(&rev.diffopt, BINARY);
e47f306d 1329
894a9d33
TR
1330 if (rev.show_notes)
1331 init_display_notes(&rev.notes_opt);
1332
9800a754
JH
1333 if (!use_stdout)
1334 output_directory = set_outdir(prefix, output_directory);
38a94bb6
TRC
1335 else
1336 setup_pager();
77e565d8 1337
efd02016
JH
1338 if (output_directory) {
1339 if (use_stdout)
5c5f1d7c 1340 die(_("standard output, or directory, which one?"));
efd02016 1341 if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
5c5f1d7c 1342 die_errno(_("Could not create directory '%s'"),
0721c314 1343 output_directory);
efd02016
JH
1344 }
1345
1f1e895f 1346 if (rev.pending.nr == 1) {
427a8ec5
FC
1347 int check_head = 0;
1348
8a1d076e
JH
1349 if (rev.max_count < 0 && !rev.show_root_diff) {
1350 /*
1351 * This is traditional behaviour of "git format-patch
1352 * origin" that prepares what the origin side still
1353 * does not have.
1354 */
7c496280 1355 rev.pending.objects[0].item->flags |= UNINTERESTING;
3384a2df 1356 add_head_to_pending(&rev);
427a8ec5 1357 check_head = 1;
7c496280 1358 }
8a1d076e
JH
1359 /*
1360 * Otherwise, it is "format-patch -22 HEAD", and/or
1361 * "format-patch --root HEAD". The user wants
1362 * get_revision() to do the usual traversal.
7c496280 1363 */
427a8ec5
FC
1364
1365 if (!strcmp(rev.pending.objects[0].name, "HEAD"))
1366 check_head = 1;
1367
1368 if (check_head) {
1369 unsigned char sha1[20];
1370 const char *ref;
1371 ref = resolve_ref_unsafe("HEAD", sha1, 1, NULL);
1372 if (ref && !prefixcmp(ref, "refs/heads/"))
1373 branch_name = xstrdup(ref + strlen("refs/heads/"));
1374 else
1375 branch_name = xstrdup(""); /* no branch */
1376 }
e686eb98 1377 }
68c2ec7f
JH
1378
1379 /*
1380 * We cannot move this anywhere earlier because we do want to
9517e6b8 1381 * know if --root was given explicitly from the command line.
68c2ec7f
JH
1382 */
1383 rev.show_root_diff = 1;
1384
657ab61e
KB
1385 if (ignore_if_in_upstream) {
1386 /* Don't say anything if head and upstream are the same. */
1387 if (rev.pending.nr == 2) {
1388 struct object_array_entry *o = rev.pending.objects;
1389 if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
1390 return 0;
1391 }
811929f1 1392 get_patch_ids(&rev, &ids);
657ab61e 1393 }
9c6efa36 1394
81f3a188 1395 if (!use_stdout)
f5788250 1396 realstdout = xfdopen(xdup(1), "w");
81f3a188 1397
3d51e1b5 1398 if (prepare_revision_walk(&rev))
5c5f1d7c 1399 die(_("revision walk setup failed"));
2bda2cf4 1400 rev.boundary = 1;
91efcf60 1401 while ((commit = get_revision(&rev)) != NULL) {
2bda2cf4 1402 if (commit->object.flags & BOUNDARY) {
2bda2cf4
DB
1403 boundary_count++;
1404 origin = (boundary_count == 1) ? commit : NULL;
1405 continue;
1406 }
1407
9c6efa36 1408 if (ignore_if_in_upstream &&
5d23e133 1409 has_commit_patch_id(commit, &ids))
9c6efa36
JS
1410 continue;
1411
91efcf60 1412 nr++;
83572c1a 1413 list = xrealloc(list, nr * sizeof(list[0]));
91efcf60
JH
1414 list[nr - 1] = commit;
1415 }
80d35ca0
FC
1416 if (nr == 0)
1417 /* nothing to do */
1418 return 0;
0377db77 1419 total = nr;
49604a4d
BG
1420 if (!keep_subject && auto_number && total > 1)
1421 numbered = 1;
596524b3 1422 if (numbered)
fa0f02df 1423 rev.total = total + start_number - 1;
2a4c2607
FC
1424 if (cover_letter == -1) {
1425 if (config_cover_letter == COVER_AUTO)
1426 cover_letter = (total > 1);
1427 else
1428 cover_letter = (config_cover_letter == COVER_ON);
1429 }
1430
b079c50e
TR
1431 if (in_reply_to || thread || cover_letter)
1432 rev.ref_message_ids = xcalloc(1, sizeof(struct string_list));
1433 if (in_reply_to) {
1434 const char *msgid = clean_message_id(in_reply_to);
1d2f80fa 1435 string_list_append(rev.ref_message_ids, msgid);
b079c50e 1436 }
ce37596c 1437 rev.numbered_files = just_numbers;
108dab28 1438 rev.patch_suffix = fmt_patch_suffix;
a5a27c79
DB
1439 if (cover_letter) {
1440 if (thread)
1441 gen_message_id(&rev, "cover");
ce37596c 1442 make_cover_letter(&rev, use_stdout,
d7ddad01 1443 origin, nr, list, branch_name, quiet);
a5a27c79
DB
1444 total++;
1445 start_number--;
1446 }
5289c56a 1447 rev.add_signoff = do_signoff;
91efcf60
JH
1448 while (0 <= --nr) {
1449 int shown;
1450 commit = list[nr];
add5c8a5 1451 rev.nr = total - nr + (start_number - 1);
d1566f78 1452 /* Make the second and subsequent mails replies to the first */
cc35de84 1453 if (thread) {
a5a27c79 1454 /* Have we already had a message ID? */
e1a37346 1455 if (rev.message_id) {
a5a27c79 1456 /*
30984ed2
TR
1457 * For deep threading: make every mail
1458 * a reply to the previous one, no
1459 * matter what other options are set.
1460 *
1461 * For shallow threading:
1462 *
2175c10d
TR
1463 * Without --cover-letter and
1464 * --in-reply-to, make every mail a
1465 * reply to the one before.
1466 *
1467 * With --in-reply-to but no
1468 * --cover-letter, make every mail a
1469 * reply to the <reply-to>.
1470 *
1471 * With --cover-letter, make every
1472 * mail but the cover letter a reply
1473 * to the cover letter. The cover
1474 * letter is a reply to the
1475 * --in-reply-to, if specified.
a5a27c79 1476 */
30984ed2
TR
1477 if (thread == THREAD_SHALLOW
1478 && rev.ref_message_ids->nr > 0
2175c10d 1479 && (!cover_letter || rev.nr > 1))
e1a37346
DB
1480 free(rev.message_id);
1481 else
1d2f80fa
JP
1482 string_list_append(rev.ref_message_ids,
1483 rev.message_id);
cc35de84 1484 }
e1a37346 1485 gen_message_id(&rev, sha1_to_hex(commit->object.sha1));
d1566f78 1486 }
6df514af 1487
a21c2f94 1488 if (!use_stdout &&
ce37596c 1489 reopen_stdout(rev.numbered_files ? NULL : commit, NULL, &rev, quiet))
5c5f1d7c 1490 die(_("Failed to create output files"));
91efcf60
JH
1491 shown = log_tree_commit(&rev, commit);
1492 free(commit->buffer);
1493 commit->buffer = NULL;
add5c8a5
JH
1494
1495 /* We put one extra blank line between formatted
1496 * patches and this flag is used by log-tree code
1497 * to see if it needs to emit a LF before showing
1498 * the log; when using one file per patch, we do
1499 * not want the extra blank line.
1500 */
1501 if (!use_stdout)
1502 rev.shown_one = 0;
698ce6f8
JS
1503 if (shown) {
1504 if (rev.mime_boundary)
1505 printf("\n--%s%s--\n\n\n",
1506 mime_boundary_leader,
1507 rev.mime_boundary);
1508 else
6622d9c7 1509 print_signature();
698ce6f8 1510 }
0377db77
JS
1511 if (!use_stdout)
1512 fclose(stdout);
91efcf60
JH
1513 }
1514 free(list);
739453a3 1515 free(branch_name);
ca9e0a1b
SB
1516 string_list_clear(&extra_to, 0);
1517 string_list_clear(&extra_cc, 0);
1518 string_list_clear(&extra_hdr, 0);
5d23e133
JH
1519 if (ignore_if_in_upstream)
1520 free_patch_ids(&ids);
91efcf60
JH
1521 return 0;
1522}
1523
e827633a
RS
1524static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
1525{
1526 unsigned char sha1[20];
1527 if (get_sha1(arg, sha1) == 0) {
1528 struct commit *commit = lookup_commit_reference(sha1);
1529 if (commit) {
1530 commit->object.flags |= flags;
1531 add_pending_object(revs, &commit->object, arg);
1532 return 0;
1533 }
1534 }
1535 return -1;
1536}
1537
28a53178 1538static const char * const cherry_usage[] = {
986d1bb8 1539 N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
28a53178
EFL
1540 NULL
1541};
1542
a3a32e7f
JN
1543static void print_commit(char sign, struct commit *commit, int verbose,
1544 int abbrev)
1545{
1546 if (!verbose) {
1547 printf("%c %s\n", sign,
1548 find_unique_abbrev(commit->object.sha1, abbrev));
1549 } else {
1550 struct strbuf buf = STRBUF_INIT;
f67d2e82 1551 pp_commit_easy(CMIT_FMT_ONELINE, commit, &buf);
a3a32e7f
JN
1552 printf("%c %s %s\n", sign,
1553 find_unique_abbrev(commit->object.sha1, abbrev),
1554 buf.buf);
1555 strbuf_release(&buf);
1556 }
1557}
1558
e827633a
RS
1559int cmd_cherry(int argc, const char **argv, const char *prefix)
1560{
1561 struct rev_info revs;
5d23e133 1562 struct patch_ids ids;
e827633a
RS
1563 struct commit *commit;
1564 struct commit_list *list = NULL;
f2968022 1565 struct branch *current_branch;
e827633a
RS
1566 const char *upstream;
1567 const char *head = "HEAD";
1568 const char *limit = NULL;
28a53178 1569 int verbose = 0, abbrev = 0;
e827633a 1570
28a53178
EFL
1571 struct option options[] = {
1572 OPT__ABBREV(&abbrev),
986d1bb8 1573 OPT__VERBOSE(&verbose, N_("be verbose")),
28a53178
EFL
1574 OPT_END()
1575 };
e827633a 1576
28a53178 1577 argc = parse_options(argc, argv, prefix, options, cherry_usage, 0);
fef34270 1578
e827633a 1579 switch (argc) {
e827633a 1580 case 3:
28a53178 1581 limit = argv[2];
e827633a
RS
1582 /* FALLTHROUGH */
1583 case 2:
28a53178
EFL
1584 head = argv[1];
1585 /* FALLTHROUGH */
1586 case 1:
1587 upstream = argv[0];
e827633a
RS
1588 break;
1589 default:
f2968022
MH
1590 current_branch = branch_get(NULL);
1591 if (!current_branch || !current_branch->merge
1592 || !current_branch->merge[0]
1593 || !current_branch->merge[0]->dst) {
5c5f1d7c 1594 fprintf(stderr, _("Could not find a tracked"
f2968022 1595 " remote branch, please"
5c5f1d7c 1596 " specify <upstream> manually.\n"));
28a53178 1597 usage_with_options(cherry_usage, options);
f2968022
MH
1598 }
1599
1600 upstream = current_branch->merge[0]->dst;
e827633a
RS
1601 }
1602
1603 init_revisions(&revs, prefix);
51f4de3a 1604 revs.max_parents = 1;
e827633a
RS
1605
1606 if (add_pending_commit(head, &revs, 0))
5c5f1d7c 1607 die(_("Unknown commit %s"), head);
e827633a 1608 if (add_pending_commit(upstream, &revs, UNINTERESTING))
5c5f1d7c 1609 die(_("Unknown commit %s"), upstream);
e827633a
RS
1610
1611 /* Don't say anything if head and upstream are the same. */
1612 if (revs.pending.nr == 2) {
1613 struct object_array_entry *o = revs.pending.objects;
1614 if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
1615 return 0;
1616 }
1617
811929f1 1618 get_patch_ids(&revs, &ids);
e827633a
RS
1619
1620 if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
5c5f1d7c 1621 die(_("Unknown commit %s"), limit);
e827633a
RS
1622
1623 /* reverse the list of commits */
3d51e1b5 1624 if (prepare_revision_walk(&revs))
5c5f1d7c 1625 die(_("revision walk setup failed"));
e827633a 1626 while ((commit = get_revision(&revs)) != NULL) {
e827633a
RS
1627 commit_list_insert(commit, &list);
1628 }
1629
1630 while (list) {
e827633a
RS
1631 char sign = '+';
1632
1633 commit = list->item;
5d23e133 1634 if (has_commit_patch_id(commit, &ids))
e827633a 1635 sign = '-';
a3a32e7f 1636 print_commit(sign, commit, verbose, abbrev);
e827633a
RS
1637 list = list->next;
1638 }
1639
5d23e133 1640 free_patch_ids(&ids);
e827633a
RS
1641 return 0;
1642}