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