log.c 40.3 KB
Newer Older
1 2 3 4 5 6 7
/*
 * Builtin "git log" and related commands (show, whatchanged)
 *
 * (C) Copyright 2006 Linus Torvalds
 *		 2006 Junio Hamano
 */
#include "cache.h"
8
#include "color.h"
9 10 11 12
#include "commit.h"
#include "diff.h"
#include "revision.h"
#include "log-tree.h"
13
#include "builtin.h"
14
#include "tag.h"
L
Linus Torvalds 已提交
15
#include "reflog-walk.h"
16
#include "patch-ids.h"
17
#include "run-command.h"
18
#include "shortlog.h"
19
#include "remote.h"
20
#include "string-list.h"
21
#include "parse-options.h"
22
#include "branch.h"
23
#include "streaming.h"
24

H
Heikki Orsila 已提交
25 26 27
/* Set a default date-time format for git log ("log.date" config variable) */
static const char *default_date_mode = NULL;

28
static int default_abbrev_commit;
29
static int default_show_root = 1;
J
Junio C Hamano 已提交
30
static int decoration_style;
31
static int decoration_given;
32
static const char *fmt_patch_subject_prefix = "PATCH";
33
static const char *fmt_pretty;
34

35
static const char * const builtin_log_usage[] = {
36
	"git log [<options>] [<since>..<until>] [[--] <path>...]\n"
37 38 39
	"   or: git show [options] <object>...",
	NULL
};
40

J
Junio C Hamano 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
static int parse_decoration_style(const char *var, const char *value)
{
	switch (git_config_maybe_bool(var, value)) {
	case 1:
		return DECORATE_SHORT_REFS;
	case 0:
		return 0;
	default:
		break;
	}
	if (!strcmp(value, "full"))
		return DECORATE_FULL_REFS;
	else if (!strcmp(value, "short"))
		return DECORATE_SHORT_REFS;
	return -1;
}

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
static int decorate_callback(const struct option *opt, const char *arg, int unset)
{
	if (unset)
		decoration_style = 0;
	else if (arg)
		decoration_style = parse_decoration_style("command line", arg);
	else
		decoration_style = DECORATE_SHORT_REFS;

	if (decoration_style < 0)
		die("invalid --decorate option: %s", arg);

	decoration_given = 1;

	return 0;
}

75
static void cmd_log_init_defaults(struct rev_info *rev)
76
{
77
	if (fmt_pretty)
78
		get_commit_format(fmt_pretty, rev);
79
	rev->verbose_header = 1;
80
	DIFF_OPT_SET(&rev->diffopt, RECURSIVE);
81
	rev->diffopt.stat_width = -1; /* use full terminal width */
82
	rev->diffopt.stat_graph_width = -1; /* respect statGraphWidth config */
83
	rev->abbrev_commit = default_abbrev_commit;
84
	rev->show_root_diff = default_show_root;
85
	rev->subject_prefix = fmt_patch_subject_prefix;
J
Jeff King 已提交
86
	DIFF_OPT_SET(&rev->diffopt, ALLOW_TEXTCONV);
H
Heikki Orsila 已提交
87 88 89

	if (default_date_mode)
		rev->date_mode = parse_date_format(default_date_mode);
90
}
H
Heikki Orsila 已提交
91

92 93 94 95
static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
			 struct rev_info *rev, struct setup_revision_opt *opt)
{
	struct userformat_want w;
96 97 98
	int quiet = 0, source = 0;

	const struct option builtin_log_options[] = {
99
		OPT_BOOLEAN(0, "quiet", &quiet, "suppress diff output"),
100 101 102 103 104 105 106 107 108 109
		OPT_BOOLEAN(0, "source", &source, "show source"),
		{ OPTION_CALLBACK, 0, "decorate", NULL, NULL, "decorate options",
		  PARSE_OPT_OPTARG, decorate_callback},
		OPT_END()
	};

	argc = parse_options(argc, argv, prefix,
			     builtin_log_options, builtin_log_usage,
			     PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
			     PARSE_OPT_KEEP_DASHDASH);
J
Junio C Hamano 已提交
110

111
	argc = setup_revisions(argc, argv, rev, opt);
112 113
	if (quiet)
		rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
H
Heikki Orsila 已提交
114

115 116 117 118
	/* Any arguments at this point are not recognized */
	if (argc > 1)
		die("unrecognized argument: %s", argv[1]);

119 120 121 122
	memset(&w, 0, sizeof(w));
	userformat_find_requirements(NULL, &w);

	if (!rev->show_notes_given && (!rev->pretty_given || w.notes))
123
		rev->show_notes = 1;
124 125
	if (rev->show_notes)
		init_display_notes(&rev->notes_opt);
126

127 128
	if (rev->diffopt.pickaxe || rev->diffopt.filter)
		rev->always_show_header = 0;
129
	if (DIFF_OPT_TST(&rev->diffopt, FOLLOW_RENAMES)) {
130
		rev->always_show_header = 0;
131
		if (rev->diffopt.pathspec.nr != 1)
132 133
			usage("git logs can only follow renames on one pathname at a time");
	}
134 135 136

	if (source)
		rev->show_source = 1;
137

138 139 140 141 142 143 144 145 146 147
	if (rev->pretty_given && rev->commit_format == CMIT_FMT_RAW) {
		/*
		 * "log --pretty=raw" is special; ignore UI oriented
		 * configuration variables such as decoration.
		 */
		if (!decoration_given)
			decoration_style = 0;
		if (!rev->abbrev_commit_given)
			rev->abbrev_commit = 0;
	}
148

149 150 151 152
	if (decoration_style) {
		rev->show_decorations = 1;
		load_ref_decorations(decoration_style);
	}
153
	setup_pager();
154 155
}

156 157 158 159 160 161 162
static void cmd_log_init(int argc, const char **argv, const char *prefix,
			 struct rev_info *rev, struct setup_revision_opt *opt)
{
	cmd_log_init_defaults(rev);
	cmd_log_init_finish(argc, argv, prefix, rev, opt);
}

L
Linus Torvalds 已提交
163 164 165 166 167 168 169 170 171 172 173 174
/*
 * This gives a rough estimate for how many commits we
 * will print out in the list.
 */
static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
{
	int n = 0;

	while (list) {
		struct commit *commit = list->item;
		unsigned int flags = commit->object.flags;
		list = list->next;
175
		if (!(flags & (TREESAME | UNINTERESTING)))
L
Linus Torvalds 已提交
176
			n++;
L
Linus Torvalds 已提交
177 178 179 180 181 182 183 184 185 186 187
	}
	return n;
}

static void show_early_header(struct rev_info *rev, const char *stage, int nr)
{
	if (rev->shown_one) {
		rev->shown_one = 0;
		if (rev->commit_format != CMIT_FMT_ONELINE)
			putchar(rev->diffopt.line_termination);
	}
188
	printf(_("Final output: %d %s\n"), nr, stage);
L
Linus Torvalds 已提交
189 190
}

191
static struct itimerval early_output_timer;
L
Linus Torvalds 已提交
192

193 194 195
static void log_show_early(struct rev_info *revs, struct commit_list *list)
{
	int i = revs->early_output;
L
Linus Torvalds 已提交
196
	int show_header = 1;
197 198 199 200

	sort_in_topological_order(&list, revs->lifo);
	while (list && i) {
		struct commit *commit = list->item;
L
Linus Torvalds 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
		switch (simplify_commit(revs, commit)) {
		case commit_show:
			if (show_header) {
				int n = estimate_commit_count(revs, list);
				show_early_header(revs, "incomplete", n);
				show_header = 0;
			}
			log_tree_commit(revs, commit);
			i--;
			break;
		case commit_ignore:
			break;
		case commit_error:
			return;
		}
216 217
		list = list->next;
	}
L
Linus Torvalds 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235

	/* Did we already get enough commits for the early output? */
	if (!i)
		return;

	/*
	 * ..if no, then repeat it twice a second until we
	 * do.
	 *
	 * NOTE! We don't use "it_interval", because if the
	 * reader isn't listening, we want our output to be
	 * throttled by the writing, and not have the timer
	 * trigger every second even if we're blocked on a
	 * reader!
	 */
	early_output_timer.it_value.tv_sec = 0;
	early_output_timer.it_value.tv_usec = 500000;
	setitimer(ITIMER_REAL, &early_output_timer, NULL);
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
}

static void early_output(int signal)
{
	show_early_output = log_show_early;
}

static void setup_early_output(struct rev_info *rev)
{
	struct sigaction sa;

	/*
	 * Set up the signal handler, minimally intrusively:
	 * we only set a single volatile integer word (not
	 * using sigatomic_t - trying to avoid unnecessary
	 * system dependencies and headers), and using
	 * SA_RESTART.
	 */
	memset(&sa, 0, sizeof(sa));
	sa.sa_handler = early_output;
	sigemptyset(&sa.sa_mask);
	sa.sa_flags = SA_RESTART;
	sigaction(SIGALRM, &sa, NULL);

	/*
	 * If we can get the whole output in less than a
	 * tenth of a second, don't even bother doing the
	 * early-output thing..
	 *
	 * This is a one-time-only trigger.
	 */
L
Linus Torvalds 已提交
267 268 269
	early_output_timer.it_value.tv_sec = 0;
	early_output_timer.it_value.tv_usec = 100000;
	setitimer(ITIMER_REAL, &early_output_timer, NULL);
270 271 272 273
}

static void finish_early_output(struct rev_info *rev)
{
L
Linus Torvalds 已提交
274
	int n = estimate_commit_count(rev, rev->commits);
275
	signal(SIGALRM, SIG_IGN);
L
Linus Torvalds 已提交
276
	show_early_header(rev, "done", n);
277 278
}

279 280 281
static int cmd_log_walk(struct rev_info *rev)
{
	struct commit *commit;
282 283
	int saved_nrl = 0;
	int saved_dcctc = 0;
284

285 286 287
	if (rev->early_output)
		setup_early_output(rev);

288
	if (prepare_revision_walk(rev))
289
		die(_("revision walk setup failed"));
290 291 292 293

	if (rev->early_output)
		finish_early_output(rev);

294
	/*
295 296 297
	 * For --check and --exit-code, the exit code is based on CHECK_FAILED
	 * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
	 * retain that state information if replacing rev->diffopt in this loop
298
	 */
299
	while ((commit = get_revision(rev)) != NULL) {
300 301 302 303 304 305 306
		if (!log_tree_commit(rev, commit) &&
		    rev->max_count >= 0)
			/*
			 * We decremented max_count in get_revision,
			 * but we didn't actually show the commit.
			 */
			rev->max_count++;
307 308 309 310 311
		if (!rev->reflog_info) {
			/* we allow cycles in reflog ancestry */
			free(commit->buffer);
			commit->buffer = NULL;
		}
L
Linus Torvalds 已提交
312 313
		free_commit_list(commit->parents);
		commit->parents = NULL;
314 315 316 317
		if (saved_nrl < rev->diffopt.needed_rename_limit)
			saved_nrl = rev->diffopt.needed_rename_limit;
		if (rev->diffopt.degraded_cc_to_c)
			saved_dcctc = 1;
318
	}
319 320 321
	rev->diffopt.degraded_cc_to_c = saved_dcctc;
	rev->diffopt.needed_rename_limit = saved_nrl;

322 323 324 325
	if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
	    DIFF_OPT_TST(&rev->diffopt, CHECK_FAILED)) {
		return 02;
	}
326
	return diff_result_code(&rev->diffopt, 0);
327 328
}

329
static int git_log_config(const char *var, const char *value, void *cb)
330
{
331 332
	if (!strcmp(var, "format.pretty"))
		return git_config_string(&fmt_pretty, var, value);
333 334
	if (!strcmp(var, "format.subjectprefix"))
		return git_config_string(&fmt_patch_subject_prefix, var, value);
335 336 337 338
	if (!strcmp(var, "log.abbrevcommit")) {
		default_abbrev_commit = git_config_bool(var, value);
		return 0;
	}
H
Heikki Orsila 已提交
339 340
	if (!strcmp(var, "log.date"))
		return git_config_string(&default_date_mode, var, value);
341
	if (!strcmp(var, "log.decorate")) {
J
Junio C Hamano 已提交
342 343 344
		decoration_style = parse_decoration_style(var, value);
		if (decoration_style < 0)
			decoration_style = 0; /* maybe warn? */
345 346
		return 0;
	}
347 348 349 350
	if (!strcmp(var, "log.showroot")) {
		default_show_root = git_config_bool(var, value);
		return 0;
	}
351 352 353
	if (!prefixcmp(var, "color.decorate."))
		return parse_decorate_color_config(var, 15, value);

354
	return git_diff_ui_config(var, value, cb);
355 356
}

357
int cmd_whatchanged(int argc, const char **argv, const char *prefix)
358 359
{
	struct rev_info rev;
360
	struct setup_revision_opt opt;
361

362
	git_config(git_log_config, NULL);
363

364
	init_revisions(&rev, prefix);
365
	rev.diff = 1;
L
Linus Torvalds 已提交
366
	rev.simplify_history = 0;
367 368 369
	memset(&opt, 0, sizeof(opt));
	opt.def = "HEAD";
	cmd_log_init(argc, argv, prefix, &rev, &opt);
370 371 372
	if (!rev.diffopt.output_format)
		rev.diffopt.output_format = DIFF_FORMAT_RAW;
	return cmd_log_walk(&rev);
373 374
}

375 376
static void show_tagger(char *buf, int len, struct rev_info *rev)
{
377
	struct strbuf out = STRBUF_INIT;
378
	struct pretty_print_context pp = {0};
379

380 381 382
	pp.fmt = rev->commit_format;
	pp.date_mode = rev->date_mode;
	pp_user_info(&pp, "Tagger", &out, buf, get_log_output_encoding());
383
	printf("%s", out.buf);
384
	strbuf_release(&out);
385 386
}

387 388 389 390 391 392 393
static int show_blob_object(const unsigned char *sha1, struct rev_info *rev)
{
	fflush(stdout);
	return stream_blob_to_fd(1, sha1, NULL, 0);
}

static int show_tag_object(const unsigned char *sha1, struct rev_info *rev)
394 395
{
	unsigned long size;
396 397
	enum object_type type;
	char *buf = read_sha1_file(sha1, &type, &size);
398 399 400
	int offset = 0;

	if (!buf)
401
		return error(_("Could not read object %s"), sha1_to_hex(sha1));
402

403 404 405 406 407 408 409 410 411 412
	assert(type == OBJ_TAG);
	while (offset < size && buf[offset] != '\n') {
		int new_offset = offset + 1;
		while (new_offset < size && buf[new_offset++] != '\n')
			; /* do nothing */
		if (!prefixcmp(buf + offset, "tagger "))
			show_tagger(buf + offset + 7,
				    new_offset - offset - 7, rev);
		offset = new_offset;
	}
413 414 415 416 417 418 419 420 421

	if (offset < size)
		fwrite(buf + offset, size - offset, 1, stdout);
	free(buf);
	return 0;
}

static int show_tree_object(const unsigned char *sha1,
		const char *base, int baselen,
422
		const char *pathname, unsigned mode, int stage, void *context)
423 424 425 426 427
{
	printf("%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
	return 0;
}

J
Junio C Hamano 已提交
428 429
static void show_rev_tweak_rev(struct rev_info *rev, struct setup_revision_opt *opt)
{
430 431 432 433 434 435 436 437 438
	if (rev->ignore_merges) {
		/* There was no "-m" on the command line */
		rev->ignore_merges = 0;
		if (!rev->first_parent_only && !rev->combine_merges) {
			/* No "--first-parent", "-c", nor "--cc" */
			rev->combine_merges = 1;
			rev->dense_combined_merges = 1;
		}
	}
J
Junio C Hamano 已提交
439 440 441 442
	if (!rev->diffopt.output_format)
		rev->diffopt.output_format = DIFF_FORMAT_PATCH;
}

443
int cmd_show(int argc, const char **argv, const char *prefix)
444 445
{
	struct rev_info rev;
446
	struct object_array_entry *objects;
447
	struct setup_revision_opt opt;
448
	struct pathspec match_all;
449
	int i, count, ret = 0;
450

451
	git_config(git_log_config, NULL);
452

453
	init_pathspec(&match_all, NULL);
454
	init_revisions(&rev, prefix);
455 456 457
	rev.diff = 1;
	rev.always_show_header = 1;
	rev.no_walk = 1;
458 459
	rev.diffopt.stat_width = -1; 	/* Scale to real terminal size */

460 461
	memset(&opt, 0, sizeof(opt));
	opt.def = "HEAD";
J
Junio C Hamano 已提交
462
	opt.tweak = show_rev_tweak_rev;
463
	cmd_log_init(argc, argv, prefix, &rev, &opt);
464 465 466 467 468 469 470 471

	count = rev.pending.nr;
	objects = rev.pending.objects;
	for (i = 0; i < count && !ret; i++) {
		struct object *o = objects[i].item;
		const char *name = objects[i].name;
		switch (o->type) {
		case OBJ_BLOB:
472
			ret = show_blob_object(o->sha1, NULL);
473 474 475 476
			break;
		case OBJ_TAG: {
			struct tag *t = (struct tag *)o;

477 478
			if (rev.shown_one)
				putchar('\n');
479
			printf("%stag %s%s\n",
480
					diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
481
					t->tag,
482
					diff_get_color_opt(&rev.diffopt, DIFF_RESET));
483
			ret = show_tag_object(o->sha1, &rev);
484
			rev.shown_one = 1;
485 486 487 488
			if (ret)
				break;
			o = parse_object(t->tagged->sha1);
			if (!o)
489
				ret = error(_("Could not read object %s"),
490 491
					    sha1_to_hex(t->tagged->sha1));
			objects[i].item = o;
492 493 494 495
			i--;
			break;
		}
		case OBJ_TREE:
496 497
			if (rev.shown_one)
				putchar('\n');
498
			printf("%stree %s%s\n\n",
499
					diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
500
					name,
501
					diff_get_color_opt(&rev.diffopt, DIFF_RESET));
502
			read_tree_recursive((struct tree *)o, "", 0, 0, &match_all,
503
					show_tree_object, NULL);
504
			rev.shown_one = 1;
505 506 507 508 509 510 511 512
			break;
		case OBJ_COMMIT:
			rev.pending.nr = rev.pending.alloc = 0;
			rev.pending.objects = NULL;
			add_object_array(o, name, &rev.pending);
			ret = cmd_log_walk(&rev);
			break;
		default:
513
			ret = error(_("Unknown type: %d"), o->type);
514 515 516 517
		}
	}
	free(objects);
	return ret;
518 519
}

L
Linus Torvalds 已提交
520 521 522 523 524 525
/*
 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
 */
int cmd_log_reflog(int argc, const char **argv, const char *prefix)
{
	struct rev_info rev;
526
	struct setup_revision_opt opt;
L
Linus Torvalds 已提交
527

528
	git_config(git_log_config, NULL);
529

L
Linus Torvalds 已提交
530 531 532
	init_revisions(&rev, prefix);
	init_reflog_walk(&rev.reflog_info);
	rev.verbose_header = 1;
533 534
	memset(&opt, 0, sizeof(opt));
	opt.def = "HEAD";
535
	cmd_log_init_defaults(&rev);
536
	rev.abbrev_commit = 1;
L
Linus Torvalds 已提交
537
	rev.commit_format = CMIT_FMT_ONELINE;
538
	rev.use_terminator = 1;
L
Linus Torvalds 已提交
539
	rev.always_show_header = 1;
540
	cmd_log_init_finish(argc, argv, prefix, &rev, &opt);
L
Linus Torvalds 已提交
541 542 543 544

	return cmd_log_walk(&rev);
}

545
int cmd_log(int argc, const char **argv, const char *prefix)
546 547
{
	struct rev_info rev;
548
	struct setup_revision_opt opt;
549

550
	git_config(git_log_config, NULL);
551

552
	init_revisions(&rev, prefix);
553
	rev.always_show_header = 1;
554 555 556
	memset(&opt, 0, sizeof(opt));
	opt.def = "HEAD";
	cmd_log_init(argc, argv, prefix, &rev, &opt);
557
	return cmd_log_walk(&rev);
558
}
559

560
/* format-patch */
561

562
static const char *fmt_patch_suffix = ".patch";
563
static int numbered = 0;
564
static int auto_number = 1;
565

566 567
static char *default_attach = NULL;

568 569 570
static struct string_list extra_hdr;
static struct string_list extra_to;
static struct string_list extra_cc;
D
Daniel Barkalow 已提交
571 572 573

static void add_header(const char *value)
{
574
	struct string_list_item *item;
D
Daniel Barkalow 已提交
575
	int len = strlen(value);
576
	while (len && value[len - 1] == '\n')
D
Daniel Barkalow 已提交
577
		len--;
578

D
Daniel Barkalow 已提交
579
	if (!strncasecmp(value, "to: ", 4)) {
580
		item = string_list_append(&extra_to, value + 4);
581 582
		len -= 4;
	} else if (!strncasecmp(value, "cc: ", 4)) {
583
		item = string_list_append(&extra_cc, value + 4);
584 585
		len -= 4;
	} else {
586
		item = string_list_append(&extra_hdr, value);
D
Daniel Barkalow 已提交
587
	}
588 589

	item->string[len] = '\0';
D
Daniel Barkalow 已提交
590 591
}

592 593
#define THREAD_SHALLOW 1
#define THREAD_DEEP 2
594 595 596
static int thread;
static int do_signoff;
static const char *signature = git_version_string;
597

598
static int git_format_config(const char *var, const char *value, void *cb)
599 600
{
	if (!strcmp(var, "format.headers")) {
601
		if (!value)
602
			die(_("format.headers without value"));
D
Daniel Barkalow 已提交
603
		add_header(value);
604 605
		return 0;
	}
606 607
	if (!strcmp(var, "format.suffix"))
		return git_config_string(&fmt_patch_suffix, var, value);
608 609 610
	if (!strcmp(var, "format.to")) {
		if (!value)
			return config_error_nonbool(var);
611
		string_list_append(&extra_to, value);
612 613
		return 0;
	}
614 615 616
	if (!strcmp(var, "format.cc")) {
		if (!value)
			return config_error_nonbool(var);
617
		string_list_append(&extra_cc, value);
618 619
		return 0;
	}
P
Pang Yan Han 已提交
620 621
	if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") ||
	    !strcmp(var, "color.ui")) {
622 623
		return 0;
	}
624
	if (!strcmp(var, "format.numbered")) {
625
		if (value && !strcasecmp(value, "auto")) {
626 627 628 629
			auto_number = 1;
			return 0;
		}
		numbered = git_config_bool(var, value);
630
		auto_number = auto_number && numbered;
631 632
		return 0;
	}
633 634 635 636 637 638 639
	if (!strcmp(var, "format.attach")) {
		if (value && *value)
			default_attach = xstrdup(value);
		else
			default_attach = xstrdup(git_version_string);
		return 0;
	}
640 641 642 643 644 645 646 647 648 649 650 651
	if (!strcmp(var, "format.thread")) {
		if (value && !strcasecmp(value, "deep")) {
			thread = THREAD_DEEP;
			return 0;
		}
		if (value && !strcasecmp(value, "shallow")) {
			thread = THREAD_SHALLOW;
			return 0;
		}
		thread = git_config_bool(var, value) && THREAD_SHALLOW;
		return 0;
	}
652 653 654 655
	if (!strcmp(var, "format.signoff")) {
		do_signoff = git_config_bool(var, value);
		return 0;
	}
656 657
	if (!strcmp(var, "format.signature"))
		return git_config_string(&signature, var, value);
658

659
	return git_log_config(var, value, cb);
660 661
}

662
static FILE *realstdout = NULL;
663
static const char *output_directory = NULL;
664
static int outdir_offset;
665

666 667
static int reopen_stdout(struct commit *commit, const char *subject,
			 struct rev_info *rev, int quiet)
668
{
669
	struct strbuf filename = STRBUF_INIT;
670
	int suffix_len = strlen(fmt_patch_suffix) + 1;
671

672
	if (output_directory) {
673 674 675
		strbuf_addstr(&filename, output_directory);
		if (filename.len >=
		    PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len)
676
			return error(_("name of output directory is too long"));
677 678
		if (filename.buf[filename.len - 1] != '/')
			strbuf_addch(&filename, '/');
679
	}
680

681
	get_patch_filename(commit, subject, rev->nr, fmt_patch_suffix, &filename);
682

683
	if (!quiet)
684
		fprintf(realstdout, "%s\n", filename.buf + outdir_offset);
N
Nate Case 已提交
685

686
	if (freopen(filename.buf, "w", stdout) == NULL)
687
		return error(_("Cannot open patch file %s"), filename.buf);
688

689
	strbuf_release(&filename);
690
	return 0;
691 692
}

693
static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids, const char *prefix)
694 695 696 697 698 699 700
{
	struct rev_info check_rev;
	struct commit *commit;
	struct object *o1, *o2;
	unsigned flags1, flags2;

	if (rev->pending.nr != 2)
701
		die(_("Need exactly one range."));
702 703 704 705 706 707 708

	o1 = rev->pending.objects[0].item;
	flags1 = o1->flags;
	o2 = rev->pending.objects[1].item;
	flags2 = o2->flags;

	if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
709
		die(_("Not a range."));
710

711
	init_patch_ids(ids);
712 713

	/* given a range a..b get all patch ids for b..a */
714
	init_revisions(&check_rev, prefix);
715 716 717 718
	o1->flags ^= UNINTERESTING;
	o2->flags ^= UNINTERESTING;
	add_pending_object(&check_rev, o1, "o1");
	add_pending_object(&check_rev, o2, "o2");
719
	if (prepare_revision_walk(&check_rev))
720
		die(_("revision walk setup failed"));
721 722 723 724 725 726

	while ((commit = get_revision(&check_rev)) != NULL) {
		/* ignore merges */
		if (commit->parents && commit->parents->next)
			continue;

727
		add_commit_patch_id(commit, ids);
728 729 730
	}

	/* reset for next revision walk */
731 732 733 734
	clear_commit_marks((struct commit *)o1,
			SEEN | UNINTERESTING | SHOWN | ADDED);
	clear_commit_marks((struct commit *)o2,
			SEEN | UNINTERESTING | SHOWN | ADDED);
735 736 737 738
	o1->flags = flags1;
	o2->flags = flags2;
}

739
static void gen_message_id(struct rev_info *info, char *base)
740
{
741
	struct strbuf buf = STRBUF_INIT;
742
	strbuf_addf(&buf, "%s.%lu.git.%s", base,
743
		    (unsigned long) time(NULL),
744
		    git_committer_info(IDENT_NO_NAME|IDENT_NO_DATE|IDENT_STRICT));
745
	info->message_id = strbuf_detach(&buf, NULL);
746 747
}

748 749 750 751 752 753
static void print_signature(void)
{
	if (signature && *signature)
		printf("-- \n%s\n\n", signature);
}

754 755 756 757 758 759 760 761 762 763 764 765 766
static void add_branch_description(struct strbuf *buf, const char *branch_name)
{
	struct strbuf desc = STRBUF_INIT;
	if (!branch_name || !*branch_name)
		return;
	read_branch_desc(&desc, branch_name);
	if (desc.len) {
		strbuf_addch(buf, '\n');
		strbuf_add(buf, desc.buf, desc.len);
		strbuf_addch(buf, '\n');
	}
}

767 768 769
static void make_cover_letter(struct rev_info *rev, int use_stdout,
			      int numbered, int numbered_files,
			      struct commit *origin,
770
			      int nr, struct commit **list, struct commit *head,
771
			      const char *branch_name,
772
			      int quiet)
773 774 775 776
{
	const char *committer;
	const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
	const char *msg;
777
	struct shortlog log;
778
	struct strbuf sb = STRBUF_INIT;
779
	int i;
780
	const char *encoding = "UTF-8";
781
	struct diff_options opts;
J
Junio C Hamano 已提交
782
	int need_8bit_cte = 0;
783
	struct pretty_print_context pp = {0};
784 785

	if (rev->commit_format != CMIT_FMT_EMAIL)
786
		die(_("Cover letter needs email format"));
787

788
	committer = git_committer_info(0);
789

790 791
	if (!use_stdout &&
	    reopen_stdout(NULL, numbered_files ? NULL : "cover-letter", rev, quiet))
792 793
		return;

794
	log_write_email_headers(rev, head, &pp.subject, &pp.after_subject,
J
Junio C Hamano 已提交
795
				&need_8bit_cte);
796

797 798 799 800
	for (i = 0; !need_8bit_cte && i < nr; i++)
		if (has_non_ascii(list[i]->buffer))
			need_8bit_cte = 1;

801
	msg = body;
802 803 804 805 806
	pp.fmt = CMIT_FMT_EMAIL;
	pp.date_mode = DATE_RFC2822;
	pp_user_info(&pp, NULL, &sb, committer, encoding);
	pp_title_line(&pp, &msg, &sb, encoding, need_8bit_cte);
	pp_remainder(&pp, &msg, &sb, 0);
807
	add_branch_description(&sb, branch_name);
808 809 810 811
	printf("%s\n", sb.buf);

	strbuf_release(&sb);

812
	shortlog_init(&log);
813 814 815 816
	log.wrap_lines = 1;
	log.wrap = 72;
	log.in1 = 2;
	log.in2 = 4;
817 818 819 820 821
	for (i = 0; i < nr; i++)
		shortlog_add_commit(&log, list[i]);

	shortlog_output(&log);

822
	/*
823
	 * We can only do diffstat with a unique reference point
824 825 826 827
	 */
	if (!origin)
		return;

828 829
	memcpy(&opts, &rev->diffopt, sizeof(opts));
	opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
830

831 832 833 834 835 836 837
	diff_setup_done(&opts);

	diff_tree_sha1(origin->tree->object.sha1,
		       head->tree->object.sha1,
		       "", &opts);
	diffcore_std(&opts);
	diff_flush(&opts);
838 839

	printf("\n");
840
	print_signature();
841 842
}

843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858
static const char *clean_message_id(const char *msg_id)
{
	char ch;
	const char *a, *z, *m;

	m = msg_id;
	while ((ch = *m) && (isspace(ch) || (ch == '<')))
		m++;
	a = m;
	z = NULL;
	while ((ch = *m)) {
		if (!isspace(ch) && (ch != '>'))
			z = m;
		m++;
	}
	if (!z)
859
		die(_("insane in-reply-to: %s"), msg_id);
860 861
	if (++z == m)
		return a;
P
Pierre Habouzit 已提交
862
	return xmemdupz(a, z - a);
863 864
}

865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
static const char *set_outdir(const char *prefix, const char *output_directory)
{
	if (output_directory && is_absolute_path(output_directory))
		return output_directory;

	if (!prefix || !*prefix) {
		if (output_directory)
			return output_directory;
		/* The user did not explicitly ask for "./" */
		outdir_offset = 2;
		return "./";
	}

	outdir_offset = strlen(prefix);
	if (!output_directory)
		return prefix;

	return xstrdup(prefix_filename(prefix, outdir_offset,
				       output_directory));
}

886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
static const char * const builtin_format_patch_usage[] = {
	"git format-patch [options] [<since> | <revision range>]",
	NULL
};

static int keep_subject = 0;

static int keep_callback(const struct option *opt, const char *arg, int unset)
{
	((struct rev_info *)opt->value)->total = -1;
	keep_subject = 1;
	return 0;
}

static int subject_prefix = 0;

static int subject_prefix_callback(const struct option *opt, const char *arg,
			    int unset)
{
	subject_prefix = 1;
	((struct rev_info *)opt->value)->subject_prefix = arg;
	return 0;
}

910 911
static int numbered_cmdline_opt = 0;

912 913 914
static int numbered_callback(const struct option *opt, const char *arg,
			     int unset)
{
915
	*(int *)opt->value = numbered_cmdline_opt = unset ? 0 : 1;
916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
	if (unset)
		auto_number =  0;
	return 0;
}

static int no_numbered_callback(const struct option *opt, const char *arg,
				int unset)
{
	return numbered_callback(opt, arg, 1);
}

static int output_directory_callback(const struct option *opt, const char *arg,
			      int unset)
{
	const char **dir = (const char **)opt->value;
	if (*dir)
932
		die(_("Two output directories?"));
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978
	*dir = arg;
	return 0;
}

static int thread_callback(const struct option *opt, const char *arg, int unset)
{
	int *thread = (int *)opt->value;
	if (unset)
		*thread = 0;
	else if (!arg || !strcmp(arg, "shallow"))
		*thread = THREAD_SHALLOW;
	else if (!strcmp(arg, "deep"))
		*thread = THREAD_DEEP;
	else
		return 1;
	return 0;
}

static int attach_callback(const struct option *opt, const char *arg, int unset)
{
	struct rev_info *rev = (struct rev_info *)opt->value;
	if (unset)
		rev->mime_boundary = NULL;
	else if (arg)
		rev->mime_boundary = arg;
	else
		rev->mime_boundary = git_version_string;
	rev->no_inline = unset ? 0 : 1;
	return 0;
}

static int inline_callback(const struct option *opt, const char *arg, int unset)
{
	struct rev_info *rev = (struct rev_info *)opt->value;
	if (unset)
		rev->mime_boundary = NULL;
	else if (arg)
		rev->mime_boundary = arg;
	else
		rev->mime_boundary = git_version_string;
	rev->no_inline = 0;
	return 0;
}

static int header_callback(const struct option *opt, const char *arg, int unset)
{
979 980 981 982 983 984 985
	if (unset) {
		string_list_clear(&extra_hdr, 0);
		string_list_clear(&extra_to, 0);
		string_list_clear(&extra_cc, 0);
	} else {
	    add_header(arg);
	}
986 987 988
	return 0;
}

989 990
static int to_callback(const struct option *opt, const char *arg, int unset)
{
991 992 993
	if (unset)
		string_list_clear(&extra_to, 0);
	else
994
		string_list_append(&extra_to, arg);
995 996 997 998 999
	return 0;
}

static int cc_callback(const struct option *opt, const char *arg, int unset)
{
1000 1001 1002
	if (unset)
		string_list_clear(&extra_cc, 0);
	else
1003
		string_list_append(&extra_cc, arg);
1004 1005 1006
	return 0;
}

1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
static char *find_branch_name(struct rev_info *rev)
{
	int i, positive = -1;
	unsigned char branch_sha1[20];
	struct strbuf buf = STRBUF_INIT;
	const char *branch;

	for (i = 0; i < rev->cmdline.nr; i++) {
		if (rev->cmdline.rev[i].flags & UNINTERESTING)
			continue;
		if (positive < 0)
			positive = i;
		else
			return NULL;
	}
	if (positive < 0)
		return NULL;
	strbuf_addf(&buf, "refs/heads/%s", rev->cmdline.rev[positive].name);
1025
	branch = resolve_ref_unsafe(buf.buf, branch_sha1, 1, NULL);
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
	if (!branch ||
	    prefixcmp(branch, "refs/heads/") ||
	    hashcmp(rev->cmdline.rev[positive].item->sha1, branch_sha1))
		branch = NULL;
	strbuf_release(&buf);
	if (branch)
		return xstrdup(rev->cmdline.rev[positive].name);
	return NULL;
}

1036
int cmd_format_patch(int argc, const char **argv, const char *prefix)
1037 1038 1039 1040
{
	struct commit *commit;
	struct commit **list = NULL;
	struct rev_info rev;
1041
	struct setup_revision_opt s_r_opt;
1042
	int nr = 0, total, i;
1043
	int use_stdout = 0;
1044
	int start_number = -1;
1045
	int numbered_files = 0;		/* _just_ numbers */
1046
	int ignore_if_in_upstream = 0;
1047
	int cover_letter = 0;
1048
	int boundary_count = 0;
1049
	int no_binary_diff = 0;
1050
	struct commit *origin = NULL, *head = NULL;
1051
	const char *in_reply_to = NULL;
1052
	struct patch_ids ids;
J
Junio C Hamano 已提交
1053
	char *add_signoff = NULL;
1054
	struct strbuf buf = STRBUF_INIT;
1055
	int use_patch_format = 0;
1056
	int quiet = 0;
1057
	char *branch_name = NULL;
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
	const struct option builtin_format_patch_options[] = {
		{ OPTION_CALLBACK, 'n', "numbered", &numbered, NULL,
			    "use [PATCH n/m] even with a single patch",
			    PARSE_OPT_NOARG, numbered_callback },
		{ OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL,
			    "use [PATCH] even with multiple patches",
			    PARSE_OPT_NOARG, no_numbered_callback },
		OPT_BOOLEAN('s', "signoff", &do_signoff, "add Signed-off-by:"),
		OPT_BOOLEAN(0, "stdout", &use_stdout,
			    "print patches to standard out"),
		OPT_BOOLEAN(0, "cover-letter", &cover_letter,
			    "generate a cover letter"),
		OPT_BOOLEAN(0, "numbered-files", &numbered_files,
			    "use simple number sequence for output file names"),
		OPT_STRING(0, "suffix", &fmt_patch_suffix, "sfx",
			    "use <sfx> instead of '.patch'"),
		OPT_INTEGER(0, "start-number", &start_number,
			    "start numbering patches at <n> instead of 1"),
		{ OPTION_CALLBACK, 0, "subject-prefix", &rev, "prefix",
			    "Use [<prefix>] instead of [PATCH]",
			    PARSE_OPT_NONEG, subject_prefix_callback },
		{ OPTION_CALLBACK, 'o', "output-directory", &output_directory,
			    "dir", "store resulting files in <dir>",
			    PARSE_OPT_NONEG, output_directory_callback },
		{ OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL,
			    "don't strip/add [PATCH]",
			    PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback },
		OPT_BOOLEAN(0, "no-binary", &no_binary_diff,
			    "don't output binary diffs"),
		OPT_BOOLEAN(0, "ignore-if-in-upstream", &ignore_if_in_upstream,
			    "don't include a patch matching a commit upstream"),
1089 1090 1091
		{ OPTION_BOOLEAN, 'p', "no-stat", &use_patch_format, NULL,
		  "show patch format instead of default (patch + stat)",
		  PARSE_OPT_NONEG | PARSE_OPT_NOARG },
1092 1093
		OPT_GROUP("Messaging"),
		{ OPTION_CALLBACK, 0, "add-header", NULL, "header",
1094
			    "add email header", 0, header_callback },
1095
		{ OPTION_CALLBACK, 0, "to", NULL, "email", "add To: header",
1096
			    0, to_callback },
1097
		{ OPTION_CALLBACK, 0, "cc", NULL, "email", "add Cc: header",
1098
			    0, cc_callback },
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
		OPT_STRING(0, "in-reply-to", &in_reply_to, "message-id",
			    "make first mail a reply to <message-id>"),
		{ OPTION_CALLBACK, 0, "attach", &rev, "boundary",
			    "attach the patch", PARSE_OPT_OPTARG,
			    attach_callback },
		{ OPTION_CALLBACK, 0, "inline", &rev, "boundary",
			    "inline the patch",
			    PARSE_OPT_OPTARG | PARSE_OPT_NONEG,
			    inline_callback },
		{ OPTION_CALLBACK, 0, "thread", &thread, "style",
			    "enable message threading, styles: shallow, deep",
			    PARSE_OPT_OPTARG, thread_callback },
1111 1112
		OPT_STRING(0, "signature", &signature, "signature",
			    "add a signature"),
1113 1114
		OPT_BOOLEAN(0, "quiet", &quiet,
			    "don't print the patch filenames"),
1115 1116
		OPT_END()
	};
1117

1118 1119 1120
	extra_hdr.strdup_strings = 1;
	extra_to.strdup_strings = 1;
	extra_cc.strdup_strings = 1;
1121
	git_config(git_format_config, NULL);
1122
	init_revisions(&rev, prefix);
1123 1124 1125
	rev.commit_format = CMIT_FMT_EMAIL;
	rev.verbose_header = 1;
	rev.diff = 1;
1126
	rev.max_parents = 1;
1127
	DIFF_OPT_SET(&rev.diffopt, RECURSIVE);
1128
	rev.subject_prefix = fmt_patch_subject_prefix;
1129 1130
	memset(&s_r_opt, 0, sizeof(s_r_opt));
	s_r_opt.def = "HEAD";
1131

1132 1133 1134 1135 1136
	if (default_attach) {
		rev.mime_boundary = default_attach;
		rev.no_inline = 1;
	}

1137 1138
	/*
	 * Parse the arguments before setup_revisions(), or something
1139
	 * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1140 1141
	 * possibly a valid SHA1.
	 */
1142
	argc = parse_options(argc, argv, prefix, builtin_format_patch_options,
1143
			     builtin_format_patch_usage,
1144 1145
			     PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
			     PARSE_OPT_KEEP_DASHDASH);
1146

1147 1148 1149
	if (do_signoff) {
		const char *committer;
		const char *endpos;
1150
		committer = git_committer_info(IDENT_STRICT);
1151 1152
		endpos = strchr(committer, '>');
		if (!endpos)
1153
			die(_("bogus committer info %s"), committer);
1154 1155 1156
		add_signoff = xmemdupz(committer, endpos - committer + 1);
	}

1157 1158
	for (i = 0; i < extra_hdr.nr; i++) {
		strbuf_addstr(&buf, extra_hdr.items[i].string);
D
Daniel Barkalow 已提交
1159 1160 1161
		strbuf_addch(&buf, '\n');
	}

1162
	if (extra_to.nr)
D
Daniel Barkalow 已提交
1163
		strbuf_addstr(&buf, "To: ");
1164
	for (i = 0; i < extra_to.nr; i++) {
D
Daniel Barkalow 已提交
1165 1166
		if (i)
			strbuf_addstr(&buf, "    ");
1167 1168
		strbuf_addstr(&buf, extra_to.items[i].string);
		if (i + 1 < extra_to.nr)
D
Daniel Barkalow 已提交
1169 1170 1171 1172
			strbuf_addch(&buf, ',');
		strbuf_addch(&buf, '\n');
	}

1173
	if (extra_cc.nr)
D
Daniel Barkalow 已提交
1174
		strbuf_addstr(&buf, "Cc: ");
1175
	for (i = 0; i < extra_cc.nr; i++) {
D
Daniel Barkalow 已提交
1176 1177
		if (i)
			strbuf_addstr(&buf, "    ");
1178 1179
		strbuf_addstr(&buf, extra_cc.items[i].string);
		if (i + 1 < extra_cc.nr)
D
Daniel Barkalow 已提交
1180 1181 1182 1183
			strbuf_addch(&buf, ',');
		strbuf_addch(&buf, '\n');
	}

1184
	rev.extra_headers = strbuf_detach(&buf, NULL);
D
Daniel Barkalow 已提交
1185

1186
	if (start_number < 0)
1187
		start_number = 1;
1188 1189 1190 1191 1192 1193 1194 1195 1196

	/*
	 * If numbered is set solely due to format.numbered in config,
	 * and it would conflict with --keep-subject (-k) from the
	 * command line, reset "numbered".
	 */
	if (numbered && keep_subject && !numbered_cmdline_opt)
		numbered = 0;

1197
	if (numbered && keep_subject)
1198
		die (_("-n and -k are mutually exclusive."));
1199
	if (keep_subject && subject_prefix)
1200
		die (_("--subject-prefix and -k are mutually exclusive."));
1201
	rev.preserve_subject = keep_subject;
1202

1203
	argc = setup_revisions(argc, argv, &rev, &s_r_opt);
1204
	if (argc > 1)
1205
		die (_("unrecognized argument: %s"), argv[1]);
1206

1207
	if (rev.diffopt.output_format & DIFF_FORMAT_NAME)
1208
		die(_("--name-only does not make sense"));
1209
	if (rev.diffopt.output_format & DIFF_FORMAT_NAME_STATUS)
1210
		die(_("--name-status does not make sense"));
1211
	if (rev.diffopt.output_format & DIFF_FORMAT_CHECKDIFF)
1212
		die(_("--check does not make sense"));
1213 1214 1215 1216 1217 1218 1219 1220

	if (!use_patch_format &&
		(!rev.diffopt.output_format ||
		 rev.diffopt.output_format == DIFF_FORMAT_PATCH))
		rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY;

	/* Always generate a patch */
	rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
1221

1222
	if (!DIFF_OPT_TST(&rev.diffopt, TEXT) && !no_binary_diff)
1223
		DIFF_OPT_SET(&rev.diffopt, BINARY);
1224

1225 1226 1227
	if (rev.show_notes)
		init_display_notes(&rev.notes_opt);

1228 1229
	if (!use_stdout)
		output_directory = set_outdir(prefix, output_directory);
1230 1231
	else
		setup_pager();
1232

1233 1234
	if (output_directory) {
		if (use_stdout)
1235
			die(_("standard output, or directory, which one?"));
1236
		if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
1237
			die_errno(_("Could not create directory '%s'"),
1238
				  output_directory);
1239 1240
	}

1241
	if (rev.pending.nr == 1) {
1242 1243 1244 1245 1246 1247
		if (rev.max_count < 0 && !rev.show_root_diff) {
			/*
			 * This is traditional behaviour of "git format-patch
			 * origin" that prepares what the origin side still
			 * does not have.
			 */
1248 1249 1250
			unsigned char sha1[20];
			const char *ref;

J
Junio C Hamano 已提交
1251
			rev.pending.objects[0].item->flags |= UNINTERESTING;
1252
			add_head_to_pending(&rev);
1253
			ref = resolve_ref_unsafe("HEAD", sha1, 1, NULL);
1254 1255 1256 1257
			if (ref && !prefixcmp(ref, "refs/heads/"))
				branch_name = xstrdup(ref + strlen("refs/heads/"));
			else
				branch_name = xstrdup(""); /* no branch */
J
Junio C Hamano 已提交
1258
		}
1259 1260 1261 1262
		/*
		 * Otherwise, it is "format-patch -22 HEAD", and/or
		 * "format-patch --root HEAD".  The user wants
		 * get_revision() to do the usual traversal.
J
Junio C Hamano 已提交
1263
		 */
1264
	}
1265 1266 1267

	/*
	 * We cannot move this anywhere earlier because we do want to
1268
	 * know if --root was given explicitly from the command line.
1269 1270 1271
	 */
	rev.show_root_diff = 1;

1272
	if (cover_letter) {
1273 1274 1275 1276 1277 1278 1279 1280 1281
		/*
		 * NEEDSWORK:randomly pick one positive commit to show
		 * diffstat; this is often the tip and the command
		 * happens to do the right thing in most cases, but a
		 * complex command like "--cover-letter a b c ^bottom"
		 * picks "c" and shows diffstat between bottom..c
		 * which may not match what the series represents at
		 * all and totally broken.
		 */
1282 1283 1284
		int i;
		for (i = 0; i < rev.pending.nr; i++) {
			struct object *o = rev.pending.objects[i].item;
1285
			if (!(o->flags & UNINTERESTING))
1286 1287
				head = (struct commit *)o;
		}
1288
		/* There is nothing to show; it is not an error, though. */
1289 1290
		if (!head)
			return 0;
1291 1292
		if (!branch_name)
			branch_name = find_branch_name(&rev);
1293
	}
1294

1295 1296 1297 1298 1299 1300 1301
	if (ignore_if_in_upstream) {
		/* Don't say anything if head and upstream are the same. */
		if (rev.pending.nr == 2) {
			struct object_array_entry *o = rev.pending.objects;
			if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
				return 0;
		}
1302
		get_patch_ids(&rev, &ids, prefix);
1303
	}
1304

1305
	if (!use_stdout)
1306
		realstdout = xfdopen(xdup(1), "w");
1307

1308
	if (prepare_revision_walk(&rev))
1309
		die(_("revision walk setup failed"));
1310
	rev.boundary = 1;
1311
	while ((commit = get_revision(&rev)) != NULL) {
1312 1313 1314 1315 1316 1317
		if (commit->object.flags & BOUNDARY) {
			boundary_count++;
			origin = (boundary_count == 1) ? commit : NULL;
			continue;
		}

1318
		if (ignore_if_in_upstream &&
1319
				has_commit_patch_id(commit, &ids))
1320 1321
			continue;

1322
		nr++;
J
Jonas Fonseca 已提交
1323
		list = xrealloc(list, nr * sizeof(list[0]));
1324 1325
		list[nr - 1] = commit;
	}
1326
	total = nr;
1327 1328
	if (!keep_subject && auto_number && total > 1)
		numbered = 1;
1329
	if (numbered)
1330
		rev.total = total + start_number - 1;
1331 1332 1333 1334
	if (in_reply_to || thread || cover_letter)
		rev.ref_message_ids = xcalloc(1, sizeof(struct string_list));
	if (in_reply_to) {
		const char *msgid = clean_message_id(in_reply_to);
1335
		string_list_append(rev.ref_message_ids, msgid);
1336
	}
1337 1338
	rev.numbered_files = numbered_files;
	rev.patch_suffix = fmt_patch_suffix;
1339 1340 1341 1342
	if (cover_letter) {
		if (thread)
			gen_message_id(&rev, "cover");
		make_cover_letter(&rev, use_stdout, numbered, numbered_files,
1343
				  origin, nr, list, head, branch_name, quiet);
1344 1345 1346 1347
		total++;
		start_number--;
	}
	rev.add_signoff = add_signoff;
1348 1349 1350
	while (0 <= --nr) {
		int shown;
		commit = list[nr];
1351
		rev.nr = total - nr + (start_number - 1);
1352
		/* Make the second and subsequent mails replies to the first */
1353
		if (thread) {
1354
			/* Have we already had a message ID? */
1355
			if (rev.message_id) {
1356
				/*
1357 1358 1359 1360 1361 1362
				 * For deep threading: make every mail
				 * a reply to the previous one, no
				 * matter what other options are set.
				 *
				 * For shallow threading:
				 *
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375
				 * Without --cover-letter and
				 * --in-reply-to, make every mail a
				 * reply to the one before.
				 *
				 * With --in-reply-to but no
				 * --cover-letter, make every mail a
				 * reply to the <reply-to>.
				 *
				 * With --cover-letter, make every
				 * mail but the cover letter a reply
				 * to the cover letter.  The cover
				 * letter is a reply to the
				 * --in-reply-to, if specified.
1376
				 */
1377 1378
				if (thread == THREAD_SHALLOW
				    && rev.ref_message_ids->nr > 0
1379
				    && (!cover_letter || rev.nr > 1))
1380 1381
					free(rev.message_id);
				else
1382 1383
					string_list_append(rev.ref_message_ids,
							   rev.message_id);
1384
			}
1385
			gen_message_id(&rev, sha1_to_hex(commit->object.sha1));
1386
		}
1387

1388 1389
		if (!use_stdout &&
		    reopen_stdout(numbered_files ? NULL : commit, NULL, &rev, quiet))
1390
			die(_("Failed to create output files"));
1391 1392 1393
		shown = log_tree_commit(&rev, commit);
		free(commit->buffer);
		commit->buffer = NULL;
1394 1395 1396 1397 1398 1399 1400 1401 1402

		/* We put one extra blank line between formatted
		 * patches and this flag is used by log-tree code
		 * to see if it needs to emit a LF before showing
		 * the log; when using one file per patch, we do
		 * not want the extra blank line.
		 */
		if (!use_stdout)
			rev.shown_one = 0;
1403 1404 1405 1406 1407 1408
		if (shown) {
			if (rev.mime_boundary)
				printf("\n--%s%s--\n\n\n",
				       mime_boundary_leader,
				       rev.mime_boundary);
			else
1409
				print_signature();
1410
		}
1411 1412
		if (!use_stdout)
			fclose(stdout);
1413 1414
	}
	free(list);
1415
	free(branch_name);
1416 1417 1418
	string_list_clear(&extra_to, 0);
	string_list_clear(&extra_cc, 0);
	string_list_clear(&extra_hdr, 0);
1419 1420
	if (ignore_if_in_upstream)
		free_patch_ids(&ids);
1421 1422 1423
	return 0;
}

R
Rene Scharfe 已提交
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437
static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
{
	unsigned char sha1[20];
	if (get_sha1(arg, sha1) == 0) {
		struct commit *commit = lookup_commit_reference(sha1);
		if (commit) {
			commit->object.flags |= flags;
			add_pending_object(revs, &commit->object, arg);
			return 0;
		}
	}
	return -1;
}

E
Erik Faye-Lund 已提交
1438 1439 1440 1441 1442
static const char * const cherry_usage[] = {
	"git cherry [-v] [<upstream> [<head> [<limit>]]]",
	NULL
};

1443 1444 1445 1446 1447 1448 1449 1450
static void print_commit(char sign, struct commit *commit, int verbose,
			 int abbrev)
{
	if (!verbose) {
		printf("%c %s\n", sign,
		       find_unique_abbrev(commit->object.sha1, abbrev));
	} else {
		struct strbuf buf = STRBUF_INIT;
1451
		pp_commit_easy(CMIT_FMT_ONELINE, commit, &buf);
1452 1453 1454 1455 1456 1457 1458
		printf("%c %s %s\n", sign,
		       find_unique_abbrev(commit->object.sha1, abbrev),
		       buf.buf);
		strbuf_release(&buf);
	}
}

R
Rene Scharfe 已提交
1459 1460 1461
int cmd_cherry(int argc, const char **argv, const char *prefix)
{
	struct rev_info revs;
1462
	struct patch_ids ids;
R
Rene Scharfe 已提交
1463 1464
	struct commit *commit;
	struct commit_list *list = NULL;
1465
	struct branch *current_branch;
R
Rene Scharfe 已提交
1466 1467 1468
	const char *upstream;
	const char *head = "HEAD";
	const char *limit = NULL;
E
Erik Faye-Lund 已提交
1469
	int verbose = 0, abbrev = 0;
R
Rene Scharfe 已提交
1470

E
Erik Faye-Lund 已提交
1471 1472
	struct option options[] = {
		OPT__ABBREV(&abbrev),
1473
		OPT__VERBOSE(&verbose, "be verbose"),
E
Erik Faye-Lund 已提交
1474 1475
		OPT_END()
	};
R
Rene Scharfe 已提交
1476

E
Erik Faye-Lund 已提交
1477
	argc = parse_options(argc, argv, prefix, options, cherry_usage, 0);
1478

R
Rene Scharfe 已提交
1479 1480
	switch (argc) {
	case 3:
E
Erik Faye-Lund 已提交
1481
		limit = argv[2];
R
Rene Scharfe 已提交
1482 1483
		/* FALLTHROUGH */
	case 2:
E
Erik Faye-Lund 已提交
1484 1485 1486 1487
		head = argv[1];
		/* FALLTHROUGH */
	case 1:
		upstream = argv[0];
R
Rene Scharfe 已提交
1488 1489
		break;
	default:
1490 1491 1492 1493
		current_branch = branch_get(NULL);
		if (!current_branch || !current_branch->merge
					|| !current_branch->merge[0]
					|| !current_branch->merge[0]->dst) {
1494
			fprintf(stderr, _("Could not find a tracked"
1495
					" remote branch, please"
1496
					" specify <upstream> manually.\n"));
E
Erik Faye-Lund 已提交
1497
			usage_with_options(cherry_usage, options);
1498 1499 1500
		}

		upstream = current_branch->merge[0]->dst;
R
Rene Scharfe 已提交
1501 1502 1503 1504 1505 1506
	}

	init_revisions(&revs, prefix);
	revs.diff = 1;
	revs.combine_merges = 0;
	revs.ignore_merges = 1;
1507
	DIFF_OPT_SET(&revs.diffopt, RECURSIVE);
R
Rene Scharfe 已提交
1508 1509

	if (add_pending_commit(head, &revs, 0))
1510
		die(_("Unknown commit %s"), head);
R
Rene Scharfe 已提交
1511
	if (add_pending_commit(upstream, &revs, UNINTERESTING))
1512
		die(_("Unknown commit %s"), upstream);
R
Rene Scharfe 已提交
1513 1514 1515 1516 1517 1518 1519 1520

	/* Don't say anything if head and upstream are the same. */
	if (revs.pending.nr == 2) {
		struct object_array_entry *o = revs.pending.objects;
		if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
			return 0;
	}

1521
	get_patch_ids(&revs, &ids, prefix);
R
Rene Scharfe 已提交
1522 1523

	if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
1524
		die(_("Unknown commit %s"), limit);
R
Rene Scharfe 已提交
1525 1526

	/* reverse the list of commits */
1527
	if (prepare_revision_walk(&revs))
1528
		die(_("revision walk setup failed"));
R
Rene Scharfe 已提交
1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540
	while ((commit = get_revision(&revs)) != NULL) {
		/* ignore merges */
		if (commit->parents && commit->parents->next)
			continue;

		commit_list_insert(commit, &list);
	}

	while (list) {
		char sign = '+';

		commit = list->item;
1541
		if (has_commit_patch_id(commit, &ids))
R
Rene Scharfe 已提交
1542
			sign = '-';
1543
		print_commit(sign, commit, verbose, abbrev);
R
Rene Scharfe 已提交
1544 1545 1546
		list = list->next;
	}

1547
	free_patch_ids(&ids);
R
Rene Scharfe 已提交
1548 1549
	return 0;
}