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