builtin-log.con commit Merge branch 'maint' (fa30383)
   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 "commit.h"
   9#include "diff.h"
  10#include "revision.h"
  11#include "log-tree.h"
  12#include "builtin.h"
  13#include "tag.h"
  14#include "reflog-walk.h"
  15#include "patch-ids.h"
  16#include "refs.h"
  17
  18static int default_show_root = 1;
  19static const char *fmt_patch_subject_prefix = "PATCH";
  20
  21/* this is in builtin-diff.c */
  22void add_head(struct rev_info *revs);
  23
  24static void add_name_decoration(const char *prefix, const char *name, struct object *obj)
  25{
  26        int plen = strlen(prefix);
  27        int nlen = strlen(name);
  28        struct name_decoration *res = xmalloc(sizeof(struct name_decoration) + plen + nlen);
  29        memcpy(res->name, prefix, plen);
  30        memcpy(res->name + plen, name, nlen + 1);
  31        res->next = add_decoration(&name_decoration, obj, res);
  32}
  33
  34static int add_ref_decoration(const char *refname, const unsigned char *sha1, int flags, void *cb_data)
  35{
  36        struct object *obj = parse_object(sha1);
  37        if (!obj)
  38                return 0;
  39        add_name_decoration("", refname, obj);
  40        while (obj->type == OBJ_TAG) {
  41                obj = ((struct tag *)obj)->tagged;
  42                if (!obj)
  43                        break;
  44                add_name_decoration("tag: ", refname, obj);
  45        }
  46        return 0;
  47}
  48
  49static void cmd_log_init(int argc, const char **argv, const char *prefix,
  50                      struct rev_info *rev)
  51{
  52        int i;
  53        int decorate = 0;
  54
  55        rev->abbrev = DEFAULT_ABBREV;
  56        rev->commit_format = CMIT_FMT_DEFAULT;
  57        rev->verbose_header = 1;
  58        DIFF_OPT_SET(&rev->diffopt, RECURSIVE);
  59        rev->show_root_diff = default_show_root;
  60        rev->subject_prefix = fmt_patch_subject_prefix;
  61        argc = setup_revisions(argc, argv, rev, "HEAD");
  62        if (rev->diffopt.pickaxe || rev->diffopt.filter)
  63                rev->always_show_header = 0;
  64        if (DIFF_OPT_TST(&rev->diffopt, FOLLOW_RENAMES)) {
  65                rev->always_show_header = 0;
  66                if (rev->diffopt.nr_paths != 1)
  67                        usage("git logs can only follow renames on one pathname at a time");
  68        }
  69        for (i = 1; i < argc; i++) {
  70                const char *arg = argv[i];
  71                if (!strcmp(arg, "--decorate")) {
  72                        if (!decorate)
  73                                for_each_ref(add_ref_decoration, NULL);
  74                        decorate = 1;
  75                } else
  76                        die("unrecognized argument: %s", arg);
  77        }
  78}
  79
  80/*
  81 * This gives a rough estimate for how many commits we
  82 * will print out in the list.
  83 */
  84static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
  85{
  86        int n = 0;
  87
  88        while (list) {
  89                struct commit *commit = list->item;
  90                unsigned int flags = commit->object.flags;
  91                list = list->next;
  92                if (!(flags & (TREESAME | UNINTERESTING)))
  93                        n++;
  94        }
  95        return n;
  96}
  97
  98static void show_early_header(struct rev_info *rev, const char *stage, int nr)
  99{
 100        if (rev->shown_one) {
 101                rev->shown_one = 0;
 102                if (rev->commit_format != CMIT_FMT_ONELINE)
 103                        putchar(rev->diffopt.line_termination);
 104        }
 105        printf("Final output: %d %s\n", nr, stage);
 106}
 107
 108struct itimerval early_output_timer;
 109
 110static void log_show_early(struct rev_info *revs, struct commit_list *list)
 111{
 112        int i = revs->early_output;
 113        int show_header = 1;
 114
 115        sort_in_topological_order(&list, revs->lifo);
 116        while (list && i) {
 117                struct commit *commit = list->item;
 118                switch (simplify_commit(revs, commit)) {
 119                case commit_show:
 120                        if (show_header) {
 121                                int n = estimate_commit_count(revs, list);
 122                                show_early_header(revs, "incomplete", n);
 123                                show_header = 0;
 124                        }
 125                        log_tree_commit(revs, commit);
 126                        i--;
 127                        break;
 128                case commit_ignore:
 129                        break;
 130                case commit_error:
 131                        return;
 132                }
 133                list = list->next;
 134        }
 135
 136        /* Did we already get enough commits for the early output? */
 137        if (!i)
 138                return;
 139
 140        /*
 141         * ..if no, then repeat it twice a second until we
 142         * do.
 143         *
 144         * NOTE! We don't use "it_interval", because if the
 145         * reader isn't listening, we want our output to be
 146         * throttled by the writing, and not have the timer
 147         * trigger every second even if we're blocked on a
 148         * reader!
 149         */
 150        early_output_timer.it_value.tv_sec = 0;
 151        early_output_timer.it_value.tv_usec = 500000;
 152        setitimer(ITIMER_REAL, &early_output_timer, NULL);
 153}
 154
 155static void early_output(int signal)
 156{
 157        show_early_output = log_show_early;
 158}
 159
 160static void setup_early_output(struct rev_info *rev)
 161{
 162        struct sigaction sa;
 163
 164        /*
 165         * Set up the signal handler, minimally intrusively:
 166         * we only set a single volatile integer word (not
 167         * using sigatomic_t - trying to avoid unnecessary
 168         * system dependencies and headers), and using
 169         * SA_RESTART.
 170         */
 171        memset(&sa, 0, sizeof(sa));
 172        sa.sa_handler = early_output;
 173        sigemptyset(&sa.sa_mask);
 174        sa.sa_flags = SA_RESTART;
 175        sigaction(SIGALRM, &sa, NULL);
 176
 177        /*
 178         * If we can get the whole output in less than a
 179         * tenth of a second, don't even bother doing the
 180         * early-output thing..
 181         *
 182         * This is a one-time-only trigger.
 183         */
 184        early_output_timer.it_value.tv_sec = 0;
 185        early_output_timer.it_value.tv_usec = 100000;
 186        setitimer(ITIMER_REAL, &early_output_timer, NULL);
 187}
 188
 189static void finish_early_output(struct rev_info *rev)
 190{
 191        int n = estimate_commit_count(rev, rev->commits);
 192        signal(SIGALRM, SIG_IGN);
 193        show_early_header(rev, "done", n);
 194}
 195
 196static int cmd_log_walk(struct rev_info *rev)
 197{
 198        struct commit *commit;
 199
 200        if (rev->early_output)
 201                setup_early_output(rev);
 202
 203        prepare_revision_walk(rev);
 204
 205        if (rev->early_output)
 206                finish_early_output(rev);
 207
 208        while ((commit = get_revision(rev)) != NULL) {
 209                log_tree_commit(rev, commit);
 210                if (!rev->reflog_info) {
 211                        /* we allow cycles in reflog ancestry */
 212                        free(commit->buffer);
 213                        commit->buffer = NULL;
 214                }
 215                free_commit_list(commit->parents);
 216                commit->parents = NULL;
 217        }
 218        return 0;
 219}
 220
 221static int git_log_config(const char *var, const char *value)
 222{
 223        if (!strcmp(var, "format.subjectprefix")) {
 224                if (!value)
 225                        die("format.subjectprefix without value");
 226                fmt_patch_subject_prefix = xstrdup(value);
 227                return 0;
 228        }
 229        if (!strcmp(var, "log.showroot")) {
 230                default_show_root = git_config_bool(var, value);
 231                return 0;
 232        }
 233        return git_diff_ui_config(var, value);
 234}
 235
 236int cmd_whatchanged(int argc, const char **argv, const char *prefix)
 237{
 238        struct rev_info rev;
 239
 240        git_config(git_log_config);
 241        init_revisions(&rev, prefix);
 242        rev.diff = 1;
 243        rev.simplify_history = 0;
 244        cmd_log_init(argc, argv, prefix, &rev);
 245        if (!rev.diffopt.output_format)
 246                rev.diffopt.output_format = DIFF_FORMAT_RAW;
 247        return cmd_log_walk(&rev);
 248}
 249
 250static int show_object(const unsigned char *sha1, int suppress_header)
 251{
 252        unsigned long size;
 253        enum object_type type;
 254        char *buf = read_sha1_file(sha1, &type, &size);
 255        int offset = 0;
 256
 257        if (!buf)
 258                return error("Could not read object %s", sha1_to_hex(sha1));
 259
 260        if (suppress_header)
 261                while (offset < size && buf[offset++] != '\n') {
 262                        int new_offset = offset;
 263                        while (new_offset < size && buf[new_offset++] != '\n')
 264                                ; /* do nothing */
 265                        offset = new_offset;
 266                }
 267
 268        if (offset < size)
 269                fwrite(buf + offset, size - offset, 1, stdout);
 270        free(buf);
 271        return 0;
 272}
 273
 274static int show_tree_object(const unsigned char *sha1,
 275                const char *base, int baselen,
 276                const char *pathname, unsigned mode, int stage)
 277{
 278        printf("%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
 279        return 0;
 280}
 281
 282int cmd_show(int argc, const char **argv, const char *prefix)
 283{
 284        struct rev_info rev;
 285        struct object_array_entry *objects;
 286        int i, count, ret = 0;
 287
 288        git_config(git_log_config);
 289        init_revisions(&rev, prefix);
 290        rev.diff = 1;
 291        rev.combine_merges = 1;
 292        rev.dense_combined_merges = 1;
 293        rev.always_show_header = 1;
 294        rev.ignore_merges = 0;
 295        rev.no_walk = 1;
 296        cmd_log_init(argc, argv, prefix, &rev);
 297
 298        count = rev.pending.nr;
 299        objects = rev.pending.objects;
 300        for (i = 0; i < count && !ret; i++) {
 301                struct object *o = objects[i].item;
 302                const char *name = objects[i].name;
 303                switch (o->type) {
 304                case OBJ_BLOB:
 305                        ret = show_object(o->sha1, 0);
 306                        break;
 307                case OBJ_TAG: {
 308                        struct tag *t = (struct tag *)o;
 309
 310                        printf("%stag %s%s\n\n",
 311                                        diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
 312                                        t->tag,
 313                                        diff_get_color_opt(&rev.diffopt, DIFF_RESET));
 314                        ret = show_object(o->sha1, 1);
 315                        objects[i].item = (struct object *)t->tagged;
 316                        i--;
 317                        break;
 318                }
 319                case OBJ_TREE:
 320                        printf("%stree %s%s\n\n",
 321                                        diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
 322                                        name,
 323                                        diff_get_color_opt(&rev.diffopt, DIFF_RESET));
 324                        read_tree_recursive((struct tree *)o, "", 0, 0, NULL,
 325                                        show_tree_object);
 326                        break;
 327                case OBJ_COMMIT:
 328                        rev.pending.nr = rev.pending.alloc = 0;
 329                        rev.pending.objects = NULL;
 330                        add_object_array(o, name, &rev.pending);
 331                        ret = cmd_log_walk(&rev);
 332                        break;
 333                default:
 334                        ret = error("Unknown type: %d", o->type);
 335                }
 336        }
 337        free(objects);
 338        return ret;
 339}
 340
 341/*
 342 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
 343 */
 344int cmd_log_reflog(int argc, const char **argv, const char *prefix)
 345{
 346        struct rev_info rev;
 347
 348        git_config(git_log_config);
 349        init_revisions(&rev, prefix);
 350        init_reflog_walk(&rev.reflog_info);
 351        rev.abbrev_commit = 1;
 352        rev.verbose_header = 1;
 353        cmd_log_init(argc, argv, prefix, &rev);
 354
 355        /*
 356         * This means that we override whatever commit format the user gave
 357         * on the cmd line.  Sad, but cmd_log_init() currently doesn't
 358         * allow us to set a different default.
 359         */
 360        rev.commit_format = CMIT_FMT_ONELINE;
 361        rev.always_show_header = 1;
 362
 363        /*
 364         * We get called through "git reflog", so unlike the other log
 365         * routines, we need to set up our pager manually..
 366         */
 367        setup_pager();
 368
 369        return cmd_log_walk(&rev);
 370}
 371
 372int cmd_log(int argc, const char **argv, const char *prefix)
 373{
 374        struct rev_info rev;
 375
 376        git_config(git_log_config);
 377        init_revisions(&rev, prefix);
 378        rev.always_show_header = 1;
 379        cmd_log_init(argc, argv, prefix, &rev);
 380        return cmd_log_walk(&rev);
 381}
 382
 383/* format-patch */
 384#define FORMAT_PATCH_NAME_MAX 64
 385
 386static int istitlechar(char c)
 387{
 388        return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
 389                (c >= '0' && c <= '9') || c == '.' || c == '_';
 390}
 391
 392static char *extra_headers = NULL;
 393static int extra_headers_size = 0;
 394static const char *fmt_patch_suffix = ".patch";
 395static int numbered = 0;
 396static int auto_number = 0;
 397
 398static int git_format_config(const char *var, const char *value)
 399{
 400        if (!strcmp(var, "format.headers")) {
 401                int len;
 402
 403                if (!value)
 404                        die("format.headers without value");
 405                len = strlen(value);
 406                extra_headers_size += len + 1;
 407                extra_headers = xrealloc(extra_headers, extra_headers_size);
 408                extra_headers[extra_headers_size - len - 1] = 0;
 409                strcat(extra_headers, value);
 410                return 0;
 411        }
 412        if (!strcmp(var, "format.suffix")) {
 413                if (!value)
 414                        die("format.suffix without value");
 415                fmt_patch_suffix = xstrdup(value);
 416                return 0;
 417        }
 418        if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
 419                return 0;
 420        }
 421        if (!strcmp(var, "format.numbered")) {
 422                if (!strcasecmp(value, "auto")) {
 423                        auto_number = 1;
 424                        return 0;
 425                }
 426
 427                numbered = git_config_bool(var, value);
 428                return 0;
 429        }
 430
 431        return git_log_config(var, value);
 432}
 433
 434
 435static FILE *realstdout = NULL;
 436static const char *output_directory = NULL;
 437
 438static int reopen_stdout(struct commit *commit, int nr, int keep_subject,
 439                         int numbered_files)
 440{
 441        char filename[PATH_MAX];
 442        char *sol;
 443        int len = 0;
 444        int suffix_len = strlen(fmt_patch_suffix) + 1;
 445
 446        if (output_directory) {
 447                if (strlen(output_directory) >=
 448                    sizeof(filename) - FORMAT_PATCH_NAME_MAX - suffix_len)
 449                        return error("name of output directory is too long");
 450                strlcpy(filename, output_directory, sizeof(filename) - suffix_len);
 451                len = strlen(filename);
 452                if (filename[len - 1] != '/')
 453                        filename[len++] = '/';
 454        }
 455
 456        if (numbered_files) {
 457                sprintf(filename + len, "%d", nr);
 458                len = strlen(filename);
 459
 460        } else {
 461                sprintf(filename + len, "%04d", nr);
 462                len = strlen(filename);
 463
 464                sol = strstr(commit->buffer, "\n\n");
 465                if (sol) {
 466                        int j, space = 1;
 467
 468                        sol += 2;
 469                        /* strip [PATCH] or [PATCH blabla] */
 470                        if (!keep_subject && !prefixcmp(sol, "[PATCH")) {
 471                                char *eos = strchr(sol + 6, ']');
 472                                if (eos) {
 473                                        while (isspace(*eos))
 474                                                eos++;
 475                                        sol = eos;
 476                                }
 477                        }
 478
 479                        for (j = 0;
 480                             j < FORMAT_PATCH_NAME_MAX - suffix_len - 5 &&
 481                                     len < sizeof(filename) - suffix_len &&
 482                                     sol[j] && sol[j] != '\n';
 483                             j++) {
 484                                if (istitlechar(sol[j])) {
 485                                        if (space) {
 486                                                filename[len++] = '-';
 487                                                space = 0;
 488                                        }
 489                                        filename[len++] = sol[j];
 490                                        if (sol[j] == '.')
 491                                                while (sol[j + 1] == '.')
 492                                                        j++;
 493                                } else
 494                                        space = 1;
 495                        }
 496                        while (filename[len - 1] == '.'
 497                               || filename[len - 1] == '-')
 498                                len--;
 499                        filename[len] = 0;
 500                }
 501                if (len + suffix_len >= sizeof(filename))
 502                        return error("Patch pathname too long");
 503                strcpy(filename + len, fmt_patch_suffix);
 504        }
 505
 506        fprintf(realstdout, "%s\n", filename);
 507        if (freopen(filename, "w", stdout) == NULL)
 508                return error("Cannot open patch file %s",filename);
 509
 510        return 0;
 511}
 512
 513static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids, const char *prefix)
 514{
 515        struct rev_info check_rev;
 516        struct commit *commit;
 517        struct object *o1, *o2;
 518        unsigned flags1, flags2;
 519
 520        if (rev->pending.nr != 2)
 521                die("Need exactly one range.");
 522
 523        o1 = rev->pending.objects[0].item;
 524        flags1 = o1->flags;
 525        o2 = rev->pending.objects[1].item;
 526        flags2 = o2->flags;
 527
 528        if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
 529                die("Not a range.");
 530
 531        init_patch_ids(ids);
 532
 533        /* given a range a..b get all patch ids for b..a */
 534        init_revisions(&check_rev, prefix);
 535        o1->flags ^= UNINTERESTING;
 536        o2->flags ^= UNINTERESTING;
 537        add_pending_object(&check_rev, o1, "o1");
 538        add_pending_object(&check_rev, o2, "o2");
 539        prepare_revision_walk(&check_rev);
 540
 541        while ((commit = get_revision(&check_rev)) != NULL) {
 542                /* ignore merges */
 543                if (commit->parents && commit->parents->next)
 544                        continue;
 545
 546                add_commit_patch_id(commit, ids);
 547        }
 548
 549        /* reset for next revision walk */
 550        clear_commit_marks((struct commit *)o1,
 551                        SEEN | UNINTERESTING | SHOWN | ADDED);
 552        clear_commit_marks((struct commit *)o2,
 553                        SEEN | UNINTERESTING | SHOWN | ADDED);
 554        o1->flags = flags1;
 555        o2->flags = flags2;
 556}
 557
 558static void gen_message_id(char *dest, unsigned int length, char *base)
 559{
 560        const char *committer = git_committer_info(-1);
 561        const char *email_start = strrchr(committer, '<');
 562        const char *email_end = strrchr(committer, '>');
 563        if(!email_start || !email_end || email_start > email_end - 1)
 564                die("Could not extract email from committer identity.");
 565        snprintf(dest, length, "%s.%lu.git.%.*s", base,
 566                 (unsigned long) time(NULL),
 567                 (int)(email_end - email_start - 1), email_start + 1);
 568}
 569
 570static const char *clean_message_id(const char *msg_id)
 571{
 572        char ch;
 573        const char *a, *z, *m;
 574
 575        m = msg_id;
 576        while ((ch = *m) && (isspace(ch) || (ch == '<')))
 577                m++;
 578        a = m;
 579        z = NULL;
 580        while ((ch = *m)) {
 581                if (!isspace(ch) && (ch != '>'))
 582                        z = m;
 583                m++;
 584        }
 585        if (!z)
 586                die("insane in-reply-to: %s", msg_id);
 587        if (++z == m)
 588                return a;
 589        return xmemdupz(a, z - a);
 590}
 591
 592int cmd_format_patch(int argc, const char **argv, const char *prefix)
 593{
 594        struct commit *commit;
 595        struct commit **list = NULL;
 596        struct rev_info rev;
 597        int nr = 0, total, i, j;
 598        int use_stdout = 0;
 599        int start_number = -1;
 600        int keep_subject = 0;
 601        int numbered_files = 0;         /* _just_ numbers */
 602        int subject_prefix = 0;
 603        int ignore_if_in_upstream = 0;
 604        int thread = 0;
 605        const char *in_reply_to = NULL;
 606        struct patch_ids ids;
 607        char *add_signoff = NULL;
 608        char message_id[1024];
 609        char ref_message_id[1024];
 610
 611        git_config(git_format_config);
 612        init_revisions(&rev, prefix);
 613        rev.commit_format = CMIT_FMT_EMAIL;
 614        rev.verbose_header = 1;
 615        rev.diff = 1;
 616        rev.combine_merges = 0;
 617        rev.ignore_merges = 1;
 618        rev.diffopt.msg_sep = "";
 619        DIFF_OPT_SET(&rev.diffopt, RECURSIVE);
 620
 621        rev.subject_prefix = fmt_patch_subject_prefix;
 622        rev.extra_headers = extra_headers;
 623
 624        /*
 625         * Parse the arguments before setup_revisions(), or something
 626         * like "git format-patch -o a123 HEAD^.." may fail; a123 is
 627         * possibly a valid SHA1.
 628         */
 629        for (i = 1, j = 1; i < argc; i++) {
 630                if (!strcmp(argv[i], "--stdout"))
 631                        use_stdout = 1;
 632                else if (!strcmp(argv[i], "-n") ||
 633                                !strcmp(argv[i], "--numbered"))
 634                        numbered = 1;
 635                else if (!strcmp(argv[i], "-N") ||
 636                                !strcmp(argv[i], "--no-numbered")) {
 637                        numbered = 0;
 638                        auto_number = 0;
 639                }
 640                else if (!prefixcmp(argv[i], "--start-number="))
 641                        start_number = strtol(argv[i] + 15, NULL, 10);
 642                else if (!strcmp(argv[i], "--numbered-files"))
 643                        numbered_files = 1;
 644                else if (!strcmp(argv[i], "--start-number")) {
 645                        i++;
 646                        if (i == argc)
 647                                die("Need a number for --start-number");
 648                        start_number = strtol(argv[i], NULL, 10);
 649                }
 650                else if (!strcmp(argv[i], "-k") ||
 651                                !strcmp(argv[i], "--keep-subject")) {
 652                        keep_subject = 1;
 653                        rev.total = -1;
 654                }
 655                else if (!strcmp(argv[i], "--output-directory") ||
 656                         !strcmp(argv[i], "-o")) {
 657                        i++;
 658                        if (argc <= i)
 659                                die("Which directory?");
 660                        if (output_directory)
 661                                die("Two output directories?");
 662                        output_directory = argv[i];
 663                }
 664                else if (!strcmp(argv[i], "--signoff") ||
 665                         !strcmp(argv[i], "-s")) {
 666                        const char *committer;
 667                        const char *endpos;
 668                        committer = git_committer_info(1);
 669                        endpos = strchr(committer, '>');
 670                        if (!endpos)
 671                                die("bogos committer info %s\n", committer);
 672                        add_signoff = xmemdupz(committer, endpos - committer + 1);
 673                }
 674                else if (!strcmp(argv[i], "--attach")) {
 675                        rev.mime_boundary = git_version_string;
 676                        rev.no_inline = 1;
 677                }
 678                else if (!prefixcmp(argv[i], "--attach=")) {
 679                        rev.mime_boundary = argv[i] + 9;
 680                        rev.no_inline = 1;
 681                }
 682                else if (!strcmp(argv[i], "--inline")) {
 683                        rev.mime_boundary = git_version_string;
 684                        rev.no_inline = 0;
 685                }
 686                else if (!prefixcmp(argv[i], "--inline=")) {
 687                        rev.mime_boundary = argv[i] + 9;
 688                        rev.no_inline = 0;
 689                }
 690                else if (!strcmp(argv[i], "--ignore-if-in-upstream"))
 691                        ignore_if_in_upstream = 1;
 692                else if (!strcmp(argv[i], "--thread"))
 693                        thread = 1;
 694                else if (!prefixcmp(argv[i], "--in-reply-to="))
 695                        in_reply_to = argv[i] + 14;
 696                else if (!strcmp(argv[i], "--in-reply-to")) {
 697                        i++;
 698                        if (i == argc)
 699                                die("Need a Message-Id for --in-reply-to");
 700                        in_reply_to = argv[i];
 701                } else if (!prefixcmp(argv[i], "--subject-prefix=")) {
 702                        subject_prefix = 1;
 703                        rev.subject_prefix = argv[i] + 17;
 704                } else if (!prefixcmp(argv[i], "--suffix="))
 705                        fmt_patch_suffix = argv[i] + 9;
 706                else
 707                        argv[j++] = argv[i];
 708        }
 709        argc = j;
 710
 711        if (start_number < 0)
 712                start_number = 1;
 713        if (numbered && keep_subject)
 714                die ("-n and -k are mutually exclusive.");
 715        if (keep_subject && subject_prefix)
 716                die ("--subject-prefix and -k are mutually exclusive.");
 717        if (numbered_files && use_stdout)
 718                die ("--numbered-files and --stdout are mutually exclusive.");
 719
 720        argc = setup_revisions(argc, argv, &rev, "HEAD");
 721        if (argc > 1)
 722                die ("unrecognized argument: %s", argv[1]);
 723
 724        if (!rev.diffopt.output_format)
 725                rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY | DIFF_FORMAT_PATCH;
 726
 727        if (!DIFF_OPT_TST(&rev.diffopt, TEXT))
 728                DIFF_OPT_SET(&rev.diffopt, BINARY);
 729
 730        if (!output_directory && !use_stdout)
 731                output_directory = prefix;
 732
 733        if (output_directory) {
 734                if (use_stdout)
 735                        die("standard output, or directory, which one?");
 736                if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
 737                        die("Could not create directory %s",
 738                            output_directory);
 739        }
 740
 741        if (rev.pending.nr == 1) {
 742                if (rev.max_count < 0 && !rev.show_root_diff) {
 743                        /*
 744                         * This is traditional behaviour of "git format-patch
 745                         * origin" that prepares what the origin side still
 746                         * does not have.
 747                         */
 748                        rev.pending.objects[0].item->flags |= UNINTERESTING;
 749                        add_head(&rev);
 750                }
 751                /*
 752                 * Otherwise, it is "format-patch -22 HEAD", and/or
 753                 * "format-patch --root HEAD".  The user wants
 754                 * get_revision() to do the usual traversal.
 755                 */
 756        }
 757
 758        if (ignore_if_in_upstream)
 759                get_patch_ids(&rev, &ids, prefix);
 760
 761        if (!use_stdout)
 762                realstdout = xfdopen(xdup(1), "w");
 763
 764        prepare_revision_walk(&rev);
 765        while ((commit = get_revision(&rev)) != NULL) {
 766                /* ignore merges */
 767                if (commit->parents && commit->parents->next)
 768                        continue;
 769
 770                if (ignore_if_in_upstream &&
 771                                has_commit_patch_id(commit, &ids))
 772                        continue;
 773
 774                nr++;
 775                list = xrealloc(list, nr * sizeof(list[0]));
 776                list[nr - 1] = commit;
 777        }
 778        total = nr;
 779        if (!keep_subject && auto_number && total > 1)
 780                numbered = 1;
 781        if (numbered)
 782                rev.total = total + start_number - 1;
 783        rev.add_signoff = add_signoff;
 784        if (in_reply_to)
 785                rev.ref_message_id = clean_message_id(in_reply_to);
 786        while (0 <= --nr) {
 787                int shown;
 788                commit = list[nr];
 789                rev.nr = total - nr + (start_number - 1);
 790                /* Make the second and subsequent mails replies to the first */
 791                if (thread) {
 792                        if (nr == (total - 2)) {
 793                                strncpy(ref_message_id, message_id,
 794                                        sizeof(ref_message_id));
 795                                ref_message_id[sizeof(ref_message_id)-1]='\0';
 796                                rev.ref_message_id = ref_message_id;
 797                        }
 798                        gen_message_id(message_id, sizeof(message_id),
 799                                       sha1_to_hex(commit->object.sha1));
 800                        rev.message_id = message_id;
 801                }
 802                if (!use_stdout)
 803                        if (reopen_stdout(commit, rev.nr, keep_subject,
 804                                          numbered_files))
 805                                die("Failed to create output files");
 806                shown = log_tree_commit(&rev, commit);
 807                free(commit->buffer);
 808                commit->buffer = NULL;
 809
 810                /* We put one extra blank line between formatted
 811                 * patches and this flag is used by log-tree code
 812                 * to see if it needs to emit a LF before showing
 813                 * the log; when using one file per patch, we do
 814                 * not want the extra blank line.
 815                 */
 816                if (!use_stdout)
 817                        rev.shown_one = 0;
 818                if (shown) {
 819                        if (rev.mime_boundary)
 820                                printf("\n--%s%s--\n\n\n",
 821                                       mime_boundary_leader,
 822                                       rev.mime_boundary);
 823                        else
 824                                printf("-- \n%s\n\n", git_version_string);
 825                }
 826                if (!use_stdout)
 827                        fclose(stdout);
 828        }
 829        free(list);
 830        if (ignore_if_in_upstream)
 831                free_patch_ids(&ids);
 832        return 0;
 833}
 834
 835static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
 836{
 837        unsigned char sha1[20];
 838        if (get_sha1(arg, sha1) == 0) {
 839                struct commit *commit = lookup_commit_reference(sha1);
 840                if (commit) {
 841                        commit->object.flags |= flags;
 842                        add_pending_object(revs, &commit->object, arg);
 843                        return 0;
 844                }
 845        }
 846        return -1;
 847}
 848
 849static const char cherry_usage[] =
 850"git-cherry [-v] <upstream> [<head>] [<limit>]";
 851int cmd_cherry(int argc, const char **argv, const char *prefix)
 852{
 853        struct rev_info revs;
 854        struct patch_ids ids;
 855        struct commit *commit;
 856        struct commit_list *list = NULL;
 857        const char *upstream;
 858        const char *head = "HEAD";
 859        const char *limit = NULL;
 860        int verbose = 0;
 861
 862        if (argc > 1 && !strcmp(argv[1], "-v")) {
 863                verbose = 1;
 864                argc--;
 865                argv++;
 866        }
 867
 868        switch (argc) {
 869        case 4:
 870                limit = argv[3];
 871                /* FALLTHROUGH */
 872        case 3:
 873                head = argv[2];
 874                /* FALLTHROUGH */
 875        case 2:
 876                upstream = argv[1];
 877                break;
 878        default:
 879                usage(cherry_usage);
 880        }
 881
 882        init_revisions(&revs, prefix);
 883        revs.diff = 1;
 884        revs.combine_merges = 0;
 885        revs.ignore_merges = 1;
 886        DIFF_OPT_SET(&revs.diffopt, RECURSIVE);
 887
 888        if (add_pending_commit(head, &revs, 0))
 889                die("Unknown commit %s", head);
 890        if (add_pending_commit(upstream, &revs, UNINTERESTING))
 891                die("Unknown commit %s", upstream);
 892
 893        /* Don't say anything if head and upstream are the same. */
 894        if (revs.pending.nr == 2) {
 895                struct object_array_entry *o = revs.pending.objects;
 896                if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
 897                        return 0;
 898        }
 899
 900        get_patch_ids(&revs, &ids, prefix);
 901
 902        if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
 903                die("Unknown commit %s", limit);
 904
 905        /* reverse the list of commits */
 906        prepare_revision_walk(&revs);
 907        while ((commit = get_revision(&revs)) != NULL) {
 908                /* ignore merges */
 909                if (commit->parents && commit->parents->next)
 910                        continue;
 911
 912                commit_list_insert(commit, &list);
 913        }
 914
 915        while (list) {
 916                char sign = '+';
 917
 918                commit = list->item;
 919                if (has_commit_patch_id(commit, &ids))
 920                        sign = '-';
 921
 922                if (verbose) {
 923                        struct strbuf buf;
 924                        strbuf_init(&buf, 0);
 925                        pretty_print_commit(CMIT_FMT_ONELINE, commit,
 926                                            &buf, 0, NULL, NULL, 0, 0);
 927                        printf("%c %s %s\n", sign,
 928                               sha1_to_hex(commit->object.sha1), buf.buf);
 929                        strbuf_release(&buf);
 930                }
 931                else {
 932                        printf("%c %s\n", sign,
 933                               sha1_to_hex(commit->object.sha1));
 934                }
 935
 936                list = list->next;
 937        }
 938
 939        free_patch_ids(&ids);
 940        return 0;
 941}