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