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