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