builtin / fetch.con commit fetch: refactor the population of peer ref OIDs (14b8ced)
   1/*
   2 * "git fetch"
   3 */
   4#include "cache.h"
   5#include "config.h"
   6#include "repository.h"
   7#include "refs.h"
   8#include "refspec.h"
   9#include "commit.h"
  10#include "builtin.h"
  11#include "string-list.h"
  12#include "remote.h"
  13#include "transport.h"
  14#include "run-command.h"
  15#include "parse-options.h"
  16#include "sigchain.h"
  17#include "submodule-config.h"
  18#include "submodule.h"
  19#include "connected.h"
  20#include "argv-array.h"
  21#include "utf8.h"
  22#include "packfile.h"
  23#include "list-objects-filter-options.h"
  24
  25static const char * const builtin_fetch_usage[] = {
  26        N_("git fetch [<options>] [<repository> [<refspec>...]]"),
  27        N_("git fetch [<options>] <group>"),
  28        N_("git fetch --multiple [<options>] [(<repository> | <group>)...]"),
  29        N_("git fetch --all [<options>]"),
  30        NULL
  31};
  32
  33enum {
  34        TAGS_UNSET = 0,
  35        TAGS_DEFAULT = 1,
  36        TAGS_SET = 2
  37};
  38
  39static int fetch_prune_config = -1; /* unspecified */
  40static int prune = -1; /* unspecified */
  41#define PRUNE_BY_DEFAULT 0 /* do we prune by default? */
  42
  43static int fetch_prune_tags_config = -1; /* unspecified */
  44static int prune_tags = -1; /* unspecified */
  45#define PRUNE_TAGS_BY_DEFAULT 0 /* do we prune tags by default? */
  46
  47static int all, append, dry_run, force, keep, multiple, update_head_ok, verbosity, deepen_relative;
  48static int progress = -1;
  49static int tags = TAGS_DEFAULT, unshallow, update_shallow, deepen;
  50static int max_children = 1;
  51static enum transport_family family;
  52static const char *depth;
  53static const char *deepen_since;
  54static const char *upload_pack;
  55static struct string_list deepen_not = STRING_LIST_INIT_NODUP;
  56static struct strbuf default_rla = STRBUF_INIT;
  57static struct transport *gtransport;
  58static struct transport *gsecondary;
  59static const char *submodule_prefix = "";
  60static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
  61static int recurse_submodules_default = RECURSE_SUBMODULES_ON_DEMAND;
  62static int shown_url = 0;
  63static struct refspec refmap = REFSPEC_INIT_FETCH;
  64static struct list_objects_filter_options filter_options;
  65static struct string_list server_options = STRING_LIST_INIT_DUP;
  66
  67static int git_fetch_config(const char *k, const char *v, void *cb)
  68{
  69        if (!strcmp(k, "fetch.prune")) {
  70                fetch_prune_config = git_config_bool(k, v);
  71                return 0;
  72        }
  73
  74        if (!strcmp(k, "fetch.prunetags")) {
  75                fetch_prune_tags_config = git_config_bool(k, v);
  76                return 0;
  77        }
  78
  79        if (!strcmp(k, "submodule.recurse")) {
  80                int r = git_config_bool(k, v) ?
  81                        RECURSE_SUBMODULES_ON : RECURSE_SUBMODULES_OFF;
  82                recurse_submodules = r;
  83        }
  84
  85        if (!strcmp(k, "submodule.fetchjobs")) {
  86                max_children = parse_submodule_fetchjobs(k, v);
  87                return 0;
  88        } else if (!strcmp(k, "fetch.recursesubmodules")) {
  89                recurse_submodules = parse_fetch_recurse_submodules_arg(k, v);
  90                return 0;
  91        }
  92
  93        return git_default_config(k, v, cb);
  94}
  95
  96static int gitmodules_fetch_config(const char *var, const char *value, void *cb)
  97{
  98        if (!strcmp(var, "submodule.fetchjobs")) {
  99                max_children = parse_submodule_fetchjobs(var, value);
 100                return 0;
 101        } else if (!strcmp(var, "fetch.recursesubmodules")) {
 102                recurse_submodules = parse_fetch_recurse_submodules_arg(var, value);
 103                return 0;
 104        }
 105
 106        return 0;
 107}
 108
 109static int parse_refmap_arg(const struct option *opt, const char *arg, int unset)
 110{
 111        /*
 112         * "git fetch --refmap='' origin foo"
 113         * can be used to tell the command not to store anywhere
 114         */
 115        refspec_append(&refmap, arg);
 116
 117        return 0;
 118}
 119
 120static struct option builtin_fetch_options[] = {
 121        OPT__VERBOSITY(&verbosity),
 122        OPT_BOOL(0, "all", &all,
 123                 N_("fetch from all remotes")),
 124        OPT_BOOL('a', "append", &append,
 125                 N_("append to .git/FETCH_HEAD instead of overwriting")),
 126        OPT_STRING(0, "upload-pack", &upload_pack, N_("path"),
 127                   N_("path to upload pack on remote end")),
 128        OPT__FORCE(&force, N_("force overwrite of local branch"), 0),
 129        OPT_BOOL('m', "multiple", &multiple,
 130                 N_("fetch from multiple remotes")),
 131        OPT_SET_INT('t', "tags", &tags,
 132                    N_("fetch all tags and associated objects"), TAGS_SET),
 133        OPT_SET_INT('n', NULL, &tags,
 134                    N_("do not fetch all tags (--no-tags)"), TAGS_UNSET),
 135        OPT_INTEGER('j', "jobs", &max_children,
 136                    N_("number of submodules fetched in parallel")),
 137        OPT_BOOL('p', "prune", &prune,
 138                 N_("prune remote-tracking branches no longer on remote")),
 139        OPT_BOOL('P', "prune-tags", &prune_tags,
 140                 N_("prune local tags no longer on remote and clobber changed tags")),
 141        { OPTION_CALLBACK, 0, "recurse-submodules", &recurse_submodules, N_("on-demand"),
 142                    N_("control recursive fetching of submodules"),
 143                    PARSE_OPT_OPTARG, option_fetch_parse_recurse_submodules },
 144        OPT_BOOL(0, "dry-run", &dry_run,
 145                 N_("dry run")),
 146        OPT_BOOL('k', "keep", &keep, N_("keep downloaded pack")),
 147        OPT_BOOL('u', "update-head-ok", &update_head_ok,
 148                    N_("allow updating of HEAD ref")),
 149        OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
 150        OPT_STRING(0, "depth", &depth, N_("depth"),
 151                   N_("deepen history of shallow clone")),
 152        OPT_STRING(0, "shallow-since", &deepen_since, N_("time"),
 153                   N_("deepen history of shallow repository based on time")),
 154        OPT_STRING_LIST(0, "shallow-exclude", &deepen_not, N_("revision"),
 155                        N_("deepen history of shallow clone, excluding rev")),
 156        OPT_INTEGER(0, "deepen", &deepen_relative,
 157                    N_("deepen history of shallow clone")),
 158        OPT_SET_INT_F(0, "unshallow", &unshallow,
 159                      N_("convert to a complete repository"),
 160                      1, PARSE_OPT_NONEG),
 161        { OPTION_STRING, 0, "submodule-prefix", &submodule_prefix, N_("dir"),
 162                   N_("prepend this to submodule path output"), PARSE_OPT_HIDDEN },
 163        { OPTION_CALLBACK, 0, "recurse-submodules-default",
 164                   &recurse_submodules_default, N_("on-demand"),
 165                   N_("default for recursive fetching of submodules "
 166                      "(lower priority than config files)"),
 167                   PARSE_OPT_HIDDEN, option_fetch_parse_recurse_submodules },
 168        OPT_BOOL(0, "update-shallow", &update_shallow,
 169                 N_("accept refs that update .git/shallow")),
 170        { OPTION_CALLBACK, 0, "refmap", NULL, N_("refmap"),
 171          N_("specify fetch refmap"), PARSE_OPT_NONEG, parse_refmap_arg },
 172        OPT_STRING_LIST('o', "server-option", &server_options, N_("server-specific"), N_("option to transmit")),
 173        OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
 174                        TRANSPORT_FAMILY_IPV4),
 175        OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
 176                        TRANSPORT_FAMILY_IPV6),
 177        OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
 178        OPT_END()
 179};
 180
 181static void unlock_pack(void)
 182{
 183        if (gtransport)
 184                transport_unlock_pack(gtransport);
 185        if (gsecondary)
 186                transport_unlock_pack(gsecondary);
 187}
 188
 189static void unlock_pack_on_signal(int signo)
 190{
 191        unlock_pack();
 192        sigchain_pop(signo);
 193        raise(signo);
 194}
 195
 196static void add_merge_config(struct ref **head,
 197                           const struct ref *remote_refs,
 198                           struct branch *branch,
 199                           struct ref ***tail)
 200{
 201        int i;
 202
 203        for (i = 0; i < branch->merge_nr; i++) {
 204                struct ref *rm, **old_tail = *tail;
 205                struct refspec_item refspec;
 206
 207                for (rm = *head; rm; rm = rm->next) {
 208                        if (branch_merge_matches(branch, i, rm->name)) {
 209                                rm->fetch_head_status = FETCH_HEAD_MERGE;
 210                                break;
 211                        }
 212                }
 213                if (rm)
 214                        continue;
 215
 216                /*
 217                 * Not fetched to a remote-tracking branch?  We need to fetch
 218                 * it anyway to allow this branch's "branch.$name.merge"
 219                 * to be honored by 'git pull', but we do not have to
 220                 * fail if branch.$name.merge is misconfigured to point
 221                 * at a nonexisting branch.  If we were indeed called by
 222                 * 'git pull', it will notice the misconfiguration because
 223                 * there is no entry in the resulting FETCH_HEAD marked
 224                 * for merging.
 225                 */
 226                memset(&refspec, 0, sizeof(refspec));
 227                refspec.src = branch->merge[i]->src;
 228                get_fetch_map(remote_refs, &refspec, tail, 1);
 229                for (rm = *old_tail; rm; rm = rm->next)
 230                        rm->fetch_head_status = FETCH_HEAD_MERGE;
 231        }
 232}
 233
 234static int add_existing(const char *refname, const struct object_id *oid,
 235                        int flag, void *cbdata)
 236{
 237        struct string_list *list = (struct string_list *)cbdata;
 238        struct string_list_item *item = string_list_insert(list, refname);
 239        struct object_id *old_oid = xmalloc(sizeof(*old_oid));
 240
 241        oidcpy(old_oid, oid);
 242        item->util = old_oid;
 243        return 0;
 244}
 245
 246static int will_fetch(struct ref **head, const unsigned char *sha1)
 247{
 248        struct ref *rm = *head;
 249        while (rm) {
 250                if (!hashcmp(rm->old_oid.hash, sha1))
 251                        return 1;
 252                rm = rm->next;
 253        }
 254        return 0;
 255}
 256
 257static void find_non_local_tags(struct transport *transport,
 258                        struct ref **head,
 259                        struct ref ***tail)
 260{
 261        struct string_list existing_refs = STRING_LIST_INIT_DUP;
 262        struct string_list remote_refs = STRING_LIST_INIT_NODUP;
 263        const struct ref *ref;
 264        struct string_list_item *item = NULL;
 265
 266        for_each_ref(add_existing, &existing_refs);
 267        for (ref = transport_get_remote_refs(transport, NULL); ref; ref = ref->next) {
 268                if (!starts_with(ref->name, "refs/tags/"))
 269                        continue;
 270
 271                /*
 272                 * The peeled ref always follows the matching base
 273                 * ref, so if we see a peeled ref that we don't want
 274                 * to fetch then we can mark the ref entry in the list
 275                 * as one to ignore by setting util to NULL.
 276                 */
 277                if (ends_with(ref->name, "^{}")) {
 278                        if (item &&
 279                            !has_object_file_with_flags(&ref->old_oid,
 280                                                        OBJECT_INFO_QUICK) &&
 281                            !will_fetch(head, ref->old_oid.hash) &&
 282                            !has_sha1_file_with_flags(item->util,
 283                                                      OBJECT_INFO_QUICK) &&
 284                            !will_fetch(head, item->util))
 285                                item->util = NULL;
 286                        item = NULL;
 287                        continue;
 288                }
 289
 290                /*
 291                 * If item is non-NULL here, then we previously saw a
 292                 * ref not followed by a peeled reference, so we need
 293                 * to check if it is a lightweight tag that we want to
 294                 * fetch.
 295                 */
 296                if (item &&
 297                    !has_sha1_file_with_flags(item->util, OBJECT_INFO_QUICK) &&
 298                    !will_fetch(head, item->util))
 299                        item->util = NULL;
 300
 301                item = NULL;
 302
 303                /* skip duplicates and refs that we already have */
 304                if (string_list_has_string(&remote_refs, ref->name) ||
 305                    string_list_has_string(&existing_refs, ref->name))
 306                        continue;
 307
 308                item = string_list_insert(&remote_refs, ref->name);
 309                item->util = (void *)&ref->old_oid;
 310        }
 311        string_list_clear(&existing_refs, 1);
 312
 313        /*
 314         * We may have a final lightweight tag that needs to be
 315         * checked to see if it needs fetching.
 316         */
 317        if (item &&
 318            !has_sha1_file_with_flags(item->util, OBJECT_INFO_QUICK) &&
 319            !will_fetch(head, item->util))
 320                item->util = NULL;
 321
 322        /*
 323         * For all the tags in the remote_refs string list,
 324         * add them to the list of refs to be fetched
 325         */
 326        for_each_string_list_item(item, &remote_refs) {
 327                /* Unless we have already decided to ignore this item... */
 328                if (item->util)
 329                {
 330                        struct ref *rm = alloc_ref(item->string);
 331                        rm->peer_ref = alloc_ref(item->string);
 332                        oidcpy(&rm->old_oid, item->util);
 333                        **tail = rm;
 334                        *tail = &rm->next;
 335                }
 336        }
 337
 338        string_list_clear(&remote_refs, 0);
 339}
 340
 341static struct ref *get_ref_map(struct transport *transport,
 342                               struct refspec *rs,
 343                               int tags, int *autotags)
 344{
 345        int i;
 346        struct ref *rm;
 347        struct ref *ref_map = NULL;
 348        struct ref **tail = &ref_map;
 349        struct argv_array ref_prefixes = ARGV_ARRAY_INIT;
 350
 351        /* opportunistically-updated references: */
 352        struct ref *orefs = NULL, **oref_tail = &orefs;
 353
 354        struct string_list existing_refs = STRING_LIST_INIT_DUP;
 355        const struct ref *remote_refs;
 356
 357        if (rs->nr)
 358                refspec_ref_prefixes(rs, &ref_prefixes);
 359        else if (transport->remote && transport->remote->fetch.nr)
 360                refspec_ref_prefixes(&transport->remote->fetch, &ref_prefixes);
 361
 362        if (ref_prefixes.argc &&
 363            (tags == TAGS_SET || (tags == TAGS_DEFAULT && !rs->nr))) {
 364                argv_array_push(&ref_prefixes, "refs/tags/");
 365        }
 366
 367        remote_refs = transport_get_remote_refs(transport, &ref_prefixes);
 368
 369        argv_array_clear(&ref_prefixes);
 370
 371        if (rs->nr) {
 372                struct refspec *fetch_refspec;
 373
 374                for (i = 0; i < rs->nr; i++) {
 375                        get_fetch_map(remote_refs, &rs->items[i], &tail, 0);
 376                        if (rs->items[i].dst && rs->items[i].dst[0])
 377                                *autotags = 1;
 378                }
 379                /* Merge everything on the command line (but not --tags) */
 380                for (rm = ref_map; rm; rm = rm->next)
 381                        rm->fetch_head_status = FETCH_HEAD_MERGE;
 382
 383                /*
 384                 * For any refs that we happen to be fetching via
 385                 * command-line arguments, the destination ref might
 386                 * have been missing or have been different than the
 387                 * remote-tracking ref that would be derived from the
 388                 * configured refspec.  In these cases, we want to
 389                 * take the opportunity to update their configured
 390                 * remote-tracking reference.  However, we do not want
 391                 * to mention these entries in FETCH_HEAD at all, as
 392                 * they would simply be duplicates of existing
 393                 * entries, so we set them FETCH_HEAD_IGNORE below.
 394                 *
 395                 * We compute these entries now, based only on the
 396                 * refspecs specified on the command line.  But we add
 397                 * them to the list following the refspecs resulting
 398                 * from the tags option so that one of the latter,
 399                 * which has FETCH_HEAD_NOT_FOR_MERGE, is not removed
 400                 * by ref_remove_duplicates() in favor of one of these
 401                 * opportunistic entries with FETCH_HEAD_IGNORE.
 402                 */
 403                if (refmap.nr)
 404                        fetch_refspec = &refmap;
 405                else
 406                        fetch_refspec = &transport->remote->fetch;
 407
 408                for (i = 0; i < fetch_refspec->nr; i++)
 409                        get_fetch_map(ref_map, &fetch_refspec->items[i], &oref_tail, 1);
 410        } else if (refmap.nr) {
 411                die("--refmap option is only meaningful with command-line refspec(s).");
 412        } else {
 413                /* Use the defaults */
 414                struct remote *remote = transport->remote;
 415                struct branch *branch = branch_get(NULL);
 416                int has_merge = branch_has_merge_config(branch);
 417                if (remote &&
 418                    (remote->fetch.nr ||
 419                     /* Note: has_merge implies non-NULL branch->remote_name */
 420                     (has_merge && !strcmp(branch->remote_name, remote->name)))) {
 421                        for (i = 0; i < remote->fetch.nr; i++) {
 422                                get_fetch_map(remote_refs, &remote->fetch.items[i], &tail, 0);
 423                                if (remote->fetch.items[i].dst &&
 424                                    remote->fetch.items[i].dst[0])
 425                                        *autotags = 1;
 426                                if (!i && !has_merge && ref_map &&
 427                                    !remote->fetch.items[0].pattern)
 428                                        ref_map->fetch_head_status = FETCH_HEAD_MERGE;
 429                        }
 430                        /*
 431                         * if the remote we're fetching from is the same
 432                         * as given in branch.<name>.remote, we add the
 433                         * ref given in branch.<name>.merge, too.
 434                         *
 435                         * Note: has_merge implies non-NULL branch->remote_name
 436                         */
 437                        if (has_merge &&
 438                            !strcmp(branch->remote_name, remote->name))
 439                                add_merge_config(&ref_map, remote_refs, branch, &tail);
 440                } else {
 441                        ref_map = get_remote_ref(remote_refs, "HEAD");
 442                        if (!ref_map)
 443                                die(_("Couldn't find remote ref HEAD"));
 444                        ref_map->fetch_head_status = FETCH_HEAD_MERGE;
 445                        tail = &ref_map->next;
 446                }
 447        }
 448
 449        if (tags == TAGS_SET)
 450                /* also fetch all tags */
 451                get_fetch_map(remote_refs, tag_refspec, &tail, 0);
 452        else if (tags == TAGS_DEFAULT && *autotags)
 453                find_non_local_tags(transport, &ref_map, &tail);
 454
 455        /* Now append any refs to be updated opportunistically: */
 456        *tail = orefs;
 457        for (rm = orefs; rm; rm = rm->next) {
 458                rm->fetch_head_status = FETCH_HEAD_IGNORE;
 459                tail = &rm->next;
 460        }
 461
 462        ref_map = ref_remove_duplicates(ref_map);
 463
 464        for_each_ref(add_existing, &existing_refs);
 465        for (rm = ref_map; rm; rm = rm->next) {
 466                if (rm->peer_ref) {
 467                        struct string_list_item *peer_item =
 468                                string_list_lookup(&existing_refs,
 469                                                   rm->peer_ref->name);
 470                        if (peer_item) {
 471                                struct object_id *old_oid = peer_item->util;
 472                                oidcpy(&rm->peer_ref->old_oid, old_oid);
 473                        }
 474                }
 475        }
 476        string_list_clear(&existing_refs, 1);
 477
 478        return ref_map;
 479}
 480
 481#define STORE_REF_ERROR_OTHER 1
 482#define STORE_REF_ERROR_DF_CONFLICT 2
 483
 484static int s_update_ref(const char *action,
 485                        struct ref *ref,
 486                        int check_old)
 487{
 488        char *msg;
 489        char *rla = getenv("GIT_REFLOG_ACTION");
 490        struct ref_transaction *transaction;
 491        struct strbuf err = STRBUF_INIT;
 492        int ret, df_conflict = 0;
 493
 494        if (dry_run)
 495                return 0;
 496        if (!rla)
 497                rla = default_rla.buf;
 498        msg = xstrfmt("%s: %s", rla, action);
 499
 500        transaction = ref_transaction_begin(&err);
 501        if (!transaction ||
 502            ref_transaction_update(transaction, ref->name,
 503                                   &ref->new_oid,
 504                                   check_old ? &ref->old_oid : NULL,
 505                                   0, msg, &err))
 506                goto fail;
 507
 508        ret = ref_transaction_commit(transaction, &err);
 509        if (ret) {
 510                df_conflict = (ret == TRANSACTION_NAME_CONFLICT);
 511                goto fail;
 512        }
 513
 514        ref_transaction_free(transaction);
 515        strbuf_release(&err);
 516        free(msg);
 517        return 0;
 518fail:
 519        ref_transaction_free(transaction);
 520        error("%s", err.buf);
 521        strbuf_release(&err);
 522        free(msg);
 523        return df_conflict ? STORE_REF_ERROR_DF_CONFLICT
 524                           : STORE_REF_ERROR_OTHER;
 525}
 526
 527static int refcol_width = 10;
 528static int compact_format;
 529
 530static void adjust_refcol_width(const struct ref *ref)
 531{
 532        int max, rlen, llen, len;
 533
 534        /* uptodate lines are only shown on high verbosity level */
 535        if (!verbosity && !oidcmp(&ref->peer_ref->old_oid, &ref->old_oid))
 536                return;
 537
 538        max    = term_columns();
 539        rlen   = utf8_strwidth(prettify_refname(ref->name));
 540
 541        llen   = utf8_strwidth(prettify_refname(ref->peer_ref->name));
 542
 543        /*
 544         * rough estimation to see if the output line is too long and
 545         * should not be counted (we can't do precise calculation
 546         * anyway because we don't know if the error explanation part
 547         * will be printed in update_local_ref)
 548         */
 549        if (compact_format) {
 550                llen = 0;
 551                max = max * 2 / 3;
 552        }
 553        len = 21 /* flag and summary */ + rlen + 4 /* -> */ + llen;
 554        if (len >= max)
 555                return;
 556
 557        /*
 558         * Not precise calculation for compact mode because '*' can
 559         * appear on the left hand side of '->' and shrink the column
 560         * back.
 561         */
 562        if (refcol_width < rlen)
 563                refcol_width = rlen;
 564}
 565
 566static void prepare_format_display(struct ref *ref_map)
 567{
 568        struct ref *rm;
 569        const char *format = "full";
 570
 571        git_config_get_string_const("fetch.output", &format);
 572        if (!strcasecmp(format, "full"))
 573                compact_format = 0;
 574        else if (!strcasecmp(format, "compact"))
 575                compact_format = 1;
 576        else
 577                die(_("configuration fetch.output contains invalid value %s"),
 578                    format);
 579
 580        for (rm = ref_map; rm; rm = rm->next) {
 581                if (rm->status == REF_STATUS_REJECT_SHALLOW ||
 582                    !rm->peer_ref ||
 583                    !strcmp(rm->name, "HEAD"))
 584                        continue;
 585
 586                adjust_refcol_width(rm);
 587        }
 588}
 589
 590static void print_remote_to_local(struct strbuf *display,
 591                                  const char *remote, const char *local)
 592{
 593        strbuf_addf(display, "%-*s -> %s", refcol_width, remote, local);
 594}
 595
 596static int find_and_replace(struct strbuf *haystack,
 597                            const char *needle,
 598                            const char *placeholder)
 599{
 600        const char *p = strstr(haystack->buf, needle);
 601        int plen, nlen;
 602
 603        if (!p)
 604                return 0;
 605
 606        if (p > haystack->buf && p[-1] != '/')
 607                return 0;
 608
 609        plen = strlen(p);
 610        nlen = strlen(needle);
 611        if (plen > nlen && p[nlen] != '/')
 612                return 0;
 613
 614        strbuf_splice(haystack, p - haystack->buf, nlen,
 615                      placeholder, strlen(placeholder));
 616        return 1;
 617}
 618
 619static void print_compact(struct strbuf *display,
 620                          const char *remote, const char *local)
 621{
 622        struct strbuf r = STRBUF_INIT;
 623        struct strbuf l = STRBUF_INIT;
 624
 625        if (!strcmp(remote, local)) {
 626                strbuf_addf(display, "%-*s -> *", refcol_width, remote);
 627                return;
 628        }
 629
 630        strbuf_addstr(&r, remote);
 631        strbuf_addstr(&l, local);
 632
 633        if (!find_and_replace(&r, local, "*"))
 634                find_and_replace(&l, remote, "*");
 635        print_remote_to_local(display, r.buf, l.buf);
 636
 637        strbuf_release(&r);
 638        strbuf_release(&l);
 639}
 640
 641static void format_display(struct strbuf *display, char code,
 642                           const char *summary, const char *error,
 643                           const char *remote, const char *local,
 644                           int summary_width)
 645{
 646        int width = (summary_width + strlen(summary) - gettext_width(summary));
 647
 648        strbuf_addf(display, "%c %-*s ", code, width, summary);
 649        if (!compact_format)
 650                print_remote_to_local(display, remote, local);
 651        else
 652                print_compact(display, remote, local);
 653        if (error)
 654                strbuf_addf(display, "  (%s)", error);
 655}
 656
 657static int update_local_ref(struct ref *ref,
 658                            const char *remote,
 659                            const struct ref *remote_ref,
 660                            struct strbuf *display,
 661                            int summary_width)
 662{
 663        struct commit *current = NULL, *updated;
 664        enum object_type type;
 665        struct branch *current_branch = branch_get(NULL);
 666        const char *pretty_ref = prettify_refname(ref->name);
 667
 668        type = oid_object_info(the_repository, &ref->new_oid, NULL);
 669        if (type < 0)
 670                die(_("object %s not found"), oid_to_hex(&ref->new_oid));
 671
 672        if (!oidcmp(&ref->old_oid, &ref->new_oid)) {
 673                if (verbosity > 0)
 674                        format_display(display, '=', _("[up to date]"), NULL,
 675                                       remote, pretty_ref, summary_width);
 676                return 0;
 677        }
 678
 679        if (current_branch &&
 680            !strcmp(ref->name, current_branch->name) &&
 681            !(update_head_ok || is_bare_repository()) &&
 682            !is_null_oid(&ref->old_oid)) {
 683                /*
 684                 * If this is the head, and it's not okay to update
 685                 * the head, and the old value of the head isn't empty...
 686                 */
 687                format_display(display, '!', _("[rejected]"),
 688                               _("can't fetch in current branch"),
 689                               remote, pretty_ref, summary_width);
 690                return 1;
 691        }
 692
 693        if (!is_null_oid(&ref->old_oid) &&
 694            starts_with(ref->name, "refs/tags/")) {
 695                int r;
 696                r = s_update_ref("updating tag", ref, 0);
 697                format_display(display, r ? '!' : 't', _("[tag update]"),
 698                               r ? _("unable to update local ref") : NULL,
 699                               remote, pretty_ref, summary_width);
 700                return r;
 701        }
 702
 703        current = lookup_commit_reference_gently(&ref->old_oid, 1);
 704        updated = lookup_commit_reference_gently(&ref->new_oid, 1);
 705        if (!current || !updated) {
 706                const char *msg;
 707                const char *what;
 708                int r;
 709                /*
 710                 * Nicely describe the new ref we're fetching.
 711                 * Base this on the remote's ref name, as it's
 712                 * more likely to follow a standard layout.
 713                 */
 714                const char *name = remote_ref ? remote_ref->name : "";
 715                if (starts_with(name, "refs/tags/")) {
 716                        msg = "storing tag";
 717                        what = _("[new tag]");
 718                } else if (starts_with(name, "refs/heads/")) {
 719                        msg = "storing head";
 720                        what = _("[new branch]");
 721                } else {
 722                        msg = "storing ref";
 723                        what = _("[new ref]");
 724                }
 725
 726                if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
 727                    (recurse_submodules != RECURSE_SUBMODULES_ON))
 728                        check_for_new_submodule_commits(&ref->new_oid);
 729                r = s_update_ref(msg, ref, 0);
 730                format_display(display, r ? '!' : '*', what,
 731                               r ? _("unable to update local ref") : NULL,
 732                               remote, pretty_ref, summary_width);
 733                return r;
 734        }
 735
 736        if (in_merge_bases(current, updated)) {
 737                struct strbuf quickref = STRBUF_INIT;
 738                int r;
 739                strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
 740                strbuf_addstr(&quickref, "..");
 741                strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
 742                if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
 743                    (recurse_submodules != RECURSE_SUBMODULES_ON))
 744                        check_for_new_submodule_commits(&ref->new_oid);
 745                r = s_update_ref("fast-forward", ref, 1);
 746                format_display(display, r ? '!' : ' ', quickref.buf,
 747                               r ? _("unable to update local ref") : NULL,
 748                               remote, pretty_ref, summary_width);
 749                strbuf_release(&quickref);
 750                return r;
 751        } else if (force || ref->force) {
 752                struct strbuf quickref = STRBUF_INIT;
 753                int r;
 754                strbuf_add_unique_abbrev(&quickref, &current->object.oid, DEFAULT_ABBREV);
 755                strbuf_addstr(&quickref, "...");
 756                strbuf_add_unique_abbrev(&quickref, &ref->new_oid, DEFAULT_ABBREV);
 757                if ((recurse_submodules != RECURSE_SUBMODULES_OFF) &&
 758                    (recurse_submodules != RECURSE_SUBMODULES_ON))
 759                        check_for_new_submodule_commits(&ref->new_oid);
 760                r = s_update_ref("forced-update", ref, 1);
 761                format_display(display, r ? '!' : '+', quickref.buf,
 762                               r ? _("unable to update local ref") : _("forced update"),
 763                               remote, pretty_ref, summary_width);
 764                strbuf_release(&quickref);
 765                return r;
 766        } else {
 767                format_display(display, '!', _("[rejected]"), _("non-fast-forward"),
 768                               remote, pretty_ref, summary_width);
 769                return 1;
 770        }
 771}
 772
 773static int iterate_ref_map(void *cb_data, struct object_id *oid)
 774{
 775        struct ref **rm = cb_data;
 776        struct ref *ref = *rm;
 777
 778        while (ref && ref->status == REF_STATUS_REJECT_SHALLOW)
 779                ref = ref->next;
 780        if (!ref)
 781                return -1; /* end of the list */
 782        *rm = ref->next;
 783        oidcpy(oid, &ref->old_oid);
 784        return 0;
 785}
 786
 787static int store_updated_refs(const char *raw_url, const char *remote_name,
 788                struct ref *ref_map)
 789{
 790        FILE *fp;
 791        struct commit *commit;
 792        int url_len, i, rc = 0;
 793        struct strbuf note = STRBUF_INIT;
 794        const char *what, *kind;
 795        struct ref *rm;
 796        char *url;
 797        const char *filename = dry_run ? "/dev/null" : git_path_fetch_head();
 798        int want_status;
 799        int summary_width = transport_summary_width(ref_map);
 800
 801        fp = fopen(filename, "a");
 802        if (!fp)
 803                return error_errno(_("cannot open %s"), filename);
 804
 805        if (raw_url)
 806                url = transport_anonymize_url(raw_url);
 807        else
 808                url = xstrdup("foreign");
 809
 810        rm = ref_map;
 811        if (check_connected(iterate_ref_map, &rm, NULL)) {
 812                rc = error(_("%s did not send all necessary objects\n"), url);
 813                goto abort;
 814        }
 815
 816        prepare_format_display(ref_map);
 817
 818        /*
 819         * We do a pass for each fetch_head_status type in their enum order, so
 820         * merged entries are written before not-for-merge. That lets readers
 821         * use FETCH_HEAD as a refname to refer to the ref to be merged.
 822         */
 823        for (want_status = FETCH_HEAD_MERGE;
 824             want_status <= FETCH_HEAD_IGNORE;
 825             want_status++) {
 826                for (rm = ref_map; rm; rm = rm->next) {
 827                        struct ref *ref = NULL;
 828                        const char *merge_status_marker = "";
 829
 830                        if (rm->status == REF_STATUS_REJECT_SHALLOW) {
 831                                if (want_status == FETCH_HEAD_MERGE)
 832                                        warning(_("reject %s because shallow roots are not allowed to be updated"),
 833                                                rm->peer_ref ? rm->peer_ref->name : rm->name);
 834                                continue;
 835                        }
 836
 837                        commit = lookup_commit_reference_gently(&rm->old_oid,
 838                                                                1);
 839                        if (!commit)
 840                                rm->fetch_head_status = FETCH_HEAD_NOT_FOR_MERGE;
 841
 842                        if (rm->fetch_head_status != want_status)
 843                                continue;
 844
 845                        if (rm->peer_ref) {
 846                                ref = alloc_ref(rm->peer_ref->name);
 847                                oidcpy(&ref->old_oid, &rm->peer_ref->old_oid);
 848                                oidcpy(&ref->new_oid, &rm->old_oid);
 849                                ref->force = rm->peer_ref->force;
 850                        }
 851
 852
 853                        if (!strcmp(rm->name, "HEAD")) {
 854                                kind = "";
 855                                what = "";
 856                        }
 857                        else if (starts_with(rm->name, "refs/heads/")) {
 858                                kind = "branch";
 859                                what = rm->name + 11;
 860                        }
 861                        else if (starts_with(rm->name, "refs/tags/")) {
 862                                kind = "tag";
 863                                what = rm->name + 10;
 864                        }
 865                        else if (starts_with(rm->name, "refs/remotes/")) {
 866                                kind = "remote-tracking branch";
 867                                what = rm->name + 13;
 868                        }
 869                        else {
 870                                kind = "";
 871                                what = rm->name;
 872                        }
 873
 874                        url_len = strlen(url);
 875                        for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
 876                                ;
 877                        url_len = i + 1;
 878                        if (4 < i && !strncmp(".git", url + i - 3, 4))
 879                                url_len = i - 3;
 880
 881                        strbuf_reset(&note);
 882                        if (*what) {
 883                                if (*kind)
 884                                        strbuf_addf(&note, "%s ", kind);
 885                                strbuf_addf(&note, "'%s' of ", what);
 886                        }
 887                        switch (rm->fetch_head_status) {
 888                        case FETCH_HEAD_NOT_FOR_MERGE:
 889                                merge_status_marker = "not-for-merge";
 890                                /* fall-through */
 891                        case FETCH_HEAD_MERGE:
 892                                fprintf(fp, "%s\t%s\t%s",
 893                                        oid_to_hex(&rm->old_oid),
 894                                        merge_status_marker,
 895                                        note.buf);
 896                                for (i = 0; i < url_len; ++i)
 897                                        if ('\n' == url[i])
 898                                                fputs("\\n", fp);
 899                                        else
 900                                                fputc(url[i], fp);
 901                                fputc('\n', fp);
 902                                break;
 903                        default:
 904                                /* do not write anything to FETCH_HEAD */
 905                                break;
 906                        }
 907
 908                        strbuf_reset(&note);
 909                        if (ref) {
 910                                rc |= update_local_ref(ref, what, rm, &note,
 911                                                       summary_width);
 912                                free(ref);
 913                        } else
 914                                format_display(&note, '*',
 915                                               *kind ? kind : "branch", NULL,
 916                                               *what ? what : "HEAD",
 917                                               "FETCH_HEAD", summary_width);
 918                        if (note.len) {
 919                                if (verbosity >= 0 && !shown_url) {
 920                                        fprintf(stderr, _("From %.*s\n"),
 921                                                        url_len, url);
 922                                        shown_url = 1;
 923                                }
 924                                if (verbosity >= 0)
 925                                        fprintf(stderr, " %s\n", note.buf);
 926                        }
 927                }
 928        }
 929
 930        if (rc & STORE_REF_ERROR_DF_CONFLICT)
 931                error(_("some local refs could not be updated; try running\n"
 932                      " 'git remote prune %s' to remove any old, conflicting "
 933                      "branches"), remote_name);
 934
 935 abort:
 936        strbuf_release(&note);
 937        free(url);
 938        fclose(fp);
 939        return rc;
 940}
 941
 942/*
 943 * We would want to bypass the object transfer altogether if
 944 * everything we are going to fetch already exists and is connected
 945 * locally.
 946 */
 947static int quickfetch(struct ref *ref_map)
 948{
 949        struct ref *rm = ref_map;
 950        struct check_connected_options opt = CHECK_CONNECTED_INIT;
 951
 952        /*
 953         * If we are deepening a shallow clone we already have these
 954         * objects reachable.  Running rev-list here will return with
 955         * a good (0) exit status and we'll bypass the fetch that we
 956         * really need to perform.  Claiming failure now will ensure
 957         * we perform the network exchange to deepen our history.
 958         */
 959        if (deepen)
 960                return -1;
 961        opt.quiet = 1;
 962        return check_connected(iterate_ref_map, &rm, &opt);
 963}
 964
 965static int fetch_refs(struct transport *transport, struct ref *ref_map)
 966{
 967        int ret = quickfetch(ref_map);
 968        if (ret)
 969                ret = transport_fetch_refs(transport, ref_map);
 970        if (!ret)
 971                ret |= store_updated_refs(transport->url,
 972                                transport->remote->name,
 973                                ref_map);
 974        transport_unlock_pack(transport);
 975        return ret;
 976}
 977
 978static int prune_refs(struct refspec *rs, struct ref *ref_map,
 979                      const char *raw_url)
 980{
 981        int url_len, i, result = 0;
 982        struct ref *ref, *stale_refs = get_stale_heads(rs, ref_map);
 983        char *url;
 984        int summary_width = transport_summary_width(stale_refs);
 985        const char *dangling_msg = dry_run
 986                ? _("   (%s will become dangling)")
 987                : _("   (%s has become dangling)");
 988
 989        if (raw_url)
 990                url = transport_anonymize_url(raw_url);
 991        else
 992                url = xstrdup("foreign");
 993
 994        url_len = strlen(url);
 995        for (i = url_len - 1; url[i] == '/' && 0 <= i; i--)
 996                ;
 997
 998        url_len = i + 1;
 999        if (4 < i && !strncmp(".git", url + i - 3, 4))
1000                url_len = i - 3;
1001
1002        if (!dry_run) {
1003                struct string_list refnames = STRING_LIST_INIT_NODUP;
1004
1005                for (ref = stale_refs; ref; ref = ref->next)
1006                        string_list_append(&refnames, ref->name);
1007
1008                result = delete_refs("fetch: prune", &refnames, 0);
1009                string_list_clear(&refnames, 0);
1010        }
1011
1012        if (verbosity >= 0) {
1013                for (ref = stale_refs; ref; ref = ref->next) {
1014                        struct strbuf sb = STRBUF_INIT;
1015                        if (!shown_url) {
1016                                fprintf(stderr, _("From %.*s\n"), url_len, url);
1017                                shown_url = 1;
1018                        }
1019                        format_display(&sb, '-', _("[deleted]"), NULL,
1020                                       _("(none)"), prettify_refname(ref->name),
1021                                       summary_width);
1022                        fprintf(stderr, " %s\n",sb.buf);
1023                        strbuf_release(&sb);
1024                        warn_dangling_symref(stderr, dangling_msg, ref->name);
1025                }
1026        }
1027
1028        free(url);
1029        free_refs(stale_refs);
1030        return result;
1031}
1032
1033static void check_not_current_branch(struct ref *ref_map)
1034{
1035        struct branch *current_branch = branch_get(NULL);
1036
1037        if (is_bare_repository() || !current_branch)
1038                return;
1039
1040        for (; ref_map; ref_map = ref_map->next)
1041                if (ref_map->peer_ref && !strcmp(current_branch->refname,
1042                                        ref_map->peer_ref->name))
1043                        die(_("Refusing to fetch into current branch %s "
1044                            "of non-bare repository"), current_branch->refname);
1045}
1046
1047static int truncate_fetch_head(void)
1048{
1049        const char *filename = git_path_fetch_head();
1050        FILE *fp = fopen_for_writing(filename);
1051
1052        if (!fp)
1053                return error_errno(_("cannot open %s"), filename);
1054        fclose(fp);
1055        return 0;
1056}
1057
1058static void set_option(struct transport *transport, const char *name, const char *value)
1059{
1060        int r = transport_set_option(transport, name, value);
1061        if (r < 0)
1062                die(_("Option \"%s\" value \"%s\" is not valid for %s"),
1063                    name, value, transport->url);
1064        if (r > 0)
1065                warning(_("Option \"%s\" is ignored for %s\n"),
1066                        name, transport->url);
1067}
1068
1069static struct transport *prepare_transport(struct remote *remote, int deepen)
1070{
1071        struct transport *transport;
1072        transport = transport_get(remote, NULL);
1073        transport_set_verbosity(transport, verbosity, progress);
1074        transport->family = family;
1075        if (upload_pack)
1076                set_option(transport, TRANS_OPT_UPLOADPACK, upload_pack);
1077        if (keep)
1078                set_option(transport, TRANS_OPT_KEEP, "yes");
1079        if (depth)
1080                set_option(transport, TRANS_OPT_DEPTH, depth);
1081        if (deepen && deepen_since)
1082                set_option(transport, TRANS_OPT_DEEPEN_SINCE, deepen_since);
1083        if (deepen && deepen_not.nr)
1084                set_option(transport, TRANS_OPT_DEEPEN_NOT,
1085                           (const char *)&deepen_not);
1086        if (deepen_relative)
1087                set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, "yes");
1088        if (update_shallow)
1089                set_option(transport, TRANS_OPT_UPDATE_SHALLOW, "yes");
1090        if (filter_options.choice) {
1091                set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER,
1092                           filter_options.filter_spec);
1093                set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1094        }
1095        return transport;
1096}
1097
1098static void backfill_tags(struct transport *transport, struct ref *ref_map)
1099{
1100        int cannot_reuse;
1101
1102        /*
1103         * Once we have set TRANS_OPT_DEEPEN_SINCE, we can't unset it
1104         * when remote helper is used (setting it to an empty string
1105         * is not unsetting). We could extend the remote helper
1106         * protocol for that, but for now, just force a new connection
1107         * without deepen-since. Similar story for deepen-not.
1108         */
1109        cannot_reuse = transport->cannot_reuse ||
1110                deepen_since || deepen_not.nr;
1111        if (cannot_reuse) {
1112                gsecondary = prepare_transport(transport->remote, 0);
1113                transport = gsecondary;
1114        }
1115
1116        transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, NULL);
1117        transport_set_option(transport, TRANS_OPT_DEPTH, "0");
1118        transport_set_option(transport, TRANS_OPT_DEEPEN_RELATIVE, NULL);
1119        fetch_refs(transport, ref_map);
1120
1121        if (gsecondary) {
1122                transport_disconnect(gsecondary);
1123                gsecondary = NULL;
1124        }
1125}
1126
1127static int do_fetch(struct transport *transport,
1128                    struct refspec *rs)
1129{
1130        struct ref *ref_map;
1131        int autotags = (transport->remote->fetch_tags == 1);
1132        int retcode = 0;
1133
1134        if (tags == TAGS_DEFAULT) {
1135                if (transport->remote->fetch_tags == 2)
1136                        tags = TAGS_SET;
1137                if (transport->remote->fetch_tags == -1)
1138                        tags = TAGS_UNSET;
1139        }
1140
1141        /* if not appending, truncate FETCH_HEAD */
1142        if (!append && !dry_run) {
1143                retcode = truncate_fetch_head();
1144                if (retcode)
1145                        goto cleanup;
1146        }
1147
1148        ref_map = get_ref_map(transport, rs, tags, &autotags);
1149        if (!update_head_ok)
1150                check_not_current_branch(ref_map);
1151
1152        if (tags == TAGS_DEFAULT && autotags)
1153                transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1154        if (prune) {
1155                /*
1156                 * We only prune based on refspecs specified
1157                 * explicitly (via command line or configuration); we
1158                 * don't care whether --tags was specified.
1159                 */
1160                if (rs->nr) {
1161                        prune_refs(rs, ref_map, transport->url);
1162                } else {
1163                        prune_refs(&transport->remote->fetch,
1164                                   ref_map,
1165                                   transport->url);
1166                }
1167        }
1168        if (fetch_refs(transport, ref_map)) {
1169                free_refs(ref_map);
1170                retcode = 1;
1171                goto cleanup;
1172        }
1173        free_refs(ref_map);
1174
1175        /* if neither --no-tags nor --tags was specified, do automated tag
1176         * following ... */
1177        if (tags == TAGS_DEFAULT && autotags) {
1178                struct ref **tail = &ref_map;
1179                ref_map = NULL;
1180                find_non_local_tags(transport, &ref_map, &tail);
1181                if (ref_map)
1182                        backfill_tags(transport, ref_map);
1183                free_refs(ref_map);
1184        }
1185
1186 cleanup:
1187        return retcode;
1188}
1189
1190static int get_one_remote_for_fetch(struct remote *remote, void *priv)
1191{
1192        struct string_list *list = priv;
1193        if (!remote->skip_default_update)
1194                string_list_append(list, remote->name);
1195        return 0;
1196}
1197
1198struct remote_group_data {
1199        const char *name;
1200        struct string_list *list;
1201};
1202
1203static int get_remote_group(const char *key, const char *value, void *priv)
1204{
1205        struct remote_group_data *g = priv;
1206
1207        if (skip_prefix(key, "remotes.", &key) && !strcmp(key, g->name)) {
1208                /* split list by white space */
1209                while (*value) {
1210                        size_t wordlen = strcspn(value, " \t\n");
1211
1212                        if (wordlen >= 1)
1213                                string_list_append_nodup(g->list,
1214                                                   xstrndup(value, wordlen));
1215                        value += wordlen + (value[wordlen] != '\0');
1216                }
1217        }
1218
1219        return 0;
1220}
1221
1222static int add_remote_or_group(const char *name, struct string_list *list)
1223{
1224        int prev_nr = list->nr;
1225        struct remote_group_data g;
1226        g.name = name; g.list = list;
1227
1228        git_config(get_remote_group, &g);
1229        if (list->nr == prev_nr) {
1230                struct remote *remote = remote_get(name);
1231                if (!remote_is_configured(remote, 0))
1232                        return 0;
1233                string_list_append(list, remote->name);
1234        }
1235        return 1;
1236}
1237
1238static void add_options_to_argv(struct argv_array *argv)
1239{
1240        if (dry_run)
1241                argv_array_push(argv, "--dry-run");
1242        if (prune != -1)
1243                argv_array_push(argv, prune ? "--prune" : "--no-prune");
1244        if (prune_tags != -1)
1245                argv_array_push(argv, prune_tags ? "--prune-tags" : "--no-prune-tags");
1246        if (update_head_ok)
1247                argv_array_push(argv, "--update-head-ok");
1248        if (force)
1249                argv_array_push(argv, "--force");
1250        if (keep)
1251                argv_array_push(argv, "--keep");
1252        if (recurse_submodules == RECURSE_SUBMODULES_ON)
1253                argv_array_push(argv, "--recurse-submodules");
1254        else if (recurse_submodules == RECURSE_SUBMODULES_ON_DEMAND)
1255                argv_array_push(argv, "--recurse-submodules=on-demand");
1256        if (tags == TAGS_SET)
1257                argv_array_push(argv, "--tags");
1258        else if (tags == TAGS_UNSET)
1259                argv_array_push(argv, "--no-tags");
1260        if (verbosity >= 2)
1261                argv_array_push(argv, "-v");
1262        if (verbosity >= 1)
1263                argv_array_push(argv, "-v");
1264        else if (verbosity < 0)
1265                argv_array_push(argv, "-q");
1266
1267}
1268
1269static int fetch_multiple(struct string_list *list)
1270{
1271        int i, result = 0;
1272        struct argv_array argv = ARGV_ARRAY_INIT;
1273
1274        if (!append && !dry_run) {
1275                int errcode = truncate_fetch_head();
1276                if (errcode)
1277                        return errcode;
1278        }
1279
1280        argv_array_pushl(&argv, "fetch", "--append", NULL);
1281        add_options_to_argv(&argv);
1282
1283        for (i = 0; i < list->nr; i++) {
1284                const char *name = list->items[i].string;
1285                argv_array_push(&argv, name);
1286                if (verbosity >= 0)
1287                        printf(_("Fetching %s\n"), name);
1288                if (run_command_v_opt(argv.argv, RUN_GIT_CMD)) {
1289                        error(_("Could not fetch %s"), name);
1290                        result = 1;
1291                }
1292                argv_array_pop(&argv);
1293        }
1294
1295        argv_array_clear(&argv);
1296        return result;
1297}
1298
1299/*
1300 * Fetching from the promisor remote should use the given filter-spec
1301 * or inherit the default filter-spec from the config.
1302 */
1303static inline void fetch_one_setup_partial(struct remote *remote)
1304{
1305        /*
1306         * Explicit --no-filter argument overrides everything, regardless
1307         * of any prior partial clones and fetches.
1308         */
1309        if (filter_options.no_filter)
1310                return;
1311
1312        /*
1313         * If no prior partial clone/fetch and the current fetch DID NOT
1314         * request a partial-fetch, do a normal fetch.
1315         */
1316        if (!repository_format_partial_clone && !filter_options.choice)
1317                return;
1318
1319        /*
1320         * If this is the FIRST partial-fetch request, we enable partial
1321         * on this repo and remember the given filter-spec as the default
1322         * for subsequent fetches to this remote.
1323         */
1324        if (!repository_format_partial_clone && filter_options.choice) {
1325                partial_clone_register(remote->name, &filter_options);
1326                return;
1327        }
1328
1329        /*
1330         * We are currently limited to only ONE promisor remote and only
1331         * allow partial-fetches from the promisor remote.
1332         */
1333        if (strcmp(remote->name, repository_format_partial_clone)) {
1334                if (filter_options.choice)
1335                        die(_("--filter can only be used with the remote configured in core.partialClone"));
1336                return;
1337        }
1338
1339        /*
1340         * Do a partial-fetch from the promisor remote using either the
1341         * explicitly given filter-spec or inherit the filter-spec from
1342         * the config.
1343         */
1344        if (!filter_options.choice)
1345                partial_clone_get_default_filter_spec(&filter_options);
1346        return;
1347}
1348
1349static int fetch_one(struct remote *remote, int argc, const char **argv, int prune_tags_ok)
1350{
1351        struct refspec rs = REFSPEC_INIT_FETCH;
1352        int i;
1353        int exit_code;
1354        int maybe_prune_tags;
1355        int remote_via_config = remote_is_configured(remote, 0);
1356
1357        if (!remote)
1358                die(_("No remote repository specified.  Please, specify either a URL or a\n"
1359                    "remote name from which new revisions should be fetched."));
1360
1361        gtransport = prepare_transport(remote, 1);
1362
1363        if (prune < 0) {
1364                /* no command line request */
1365                if (0 <= remote->prune)
1366                        prune = remote->prune;
1367                else if (0 <= fetch_prune_config)
1368                        prune = fetch_prune_config;
1369                else
1370                        prune = PRUNE_BY_DEFAULT;
1371        }
1372
1373        if (prune_tags < 0) {
1374                /* no command line request */
1375                if (0 <= remote->prune_tags)
1376                        prune_tags = remote->prune_tags;
1377                else if (0 <= fetch_prune_tags_config)
1378                        prune_tags = fetch_prune_tags_config;
1379                else
1380                        prune_tags = PRUNE_TAGS_BY_DEFAULT;
1381        }
1382
1383        maybe_prune_tags = prune_tags_ok && prune_tags;
1384        if (maybe_prune_tags && remote_via_config)
1385                refspec_append(&remote->fetch, TAG_REFSPEC);
1386
1387        if (maybe_prune_tags && (argc || !remote_via_config))
1388                refspec_append(&rs, TAG_REFSPEC);
1389
1390        for (i = 0; i < argc; i++) {
1391                if (!strcmp(argv[i], "tag")) {
1392                        char *tag;
1393                        i++;
1394                        if (i >= argc)
1395                                die(_("You need to specify a tag name."));
1396
1397                        tag = xstrfmt("refs/tags/%s:refs/tags/%s",
1398                                      argv[i], argv[i]);
1399                        refspec_append(&rs, tag);
1400                        free(tag);
1401                } else {
1402                        refspec_append(&rs, argv[i]);
1403                }
1404        }
1405
1406        if (server_options.nr)
1407                gtransport->server_options = &server_options;
1408
1409        sigchain_push_common(unlock_pack_on_signal);
1410        atexit(unlock_pack);
1411        exit_code = do_fetch(gtransport, &rs);
1412        refspec_clear(&rs);
1413        transport_disconnect(gtransport);
1414        gtransport = NULL;
1415        return exit_code;
1416}
1417
1418int cmd_fetch(int argc, const char **argv, const char *prefix)
1419{
1420        int i;
1421        struct string_list list = STRING_LIST_INIT_DUP;
1422        struct remote *remote = NULL;
1423        int result = 0;
1424        int prune_tags_ok = 1;
1425        struct argv_array argv_gc_auto = ARGV_ARRAY_INIT;
1426
1427        packet_trace_identity("fetch");
1428
1429        fetch_if_missing = 0;
1430
1431        /* Record the command line for the reflog */
1432        strbuf_addstr(&default_rla, "fetch");
1433        for (i = 1; i < argc; i++)
1434                strbuf_addf(&default_rla, " %s", argv[i]);
1435
1436        config_from_gitmodules(gitmodules_fetch_config, NULL);
1437        git_config(git_fetch_config, NULL);
1438
1439        argc = parse_options(argc, argv, prefix,
1440                             builtin_fetch_options, builtin_fetch_usage, 0);
1441
1442        if (deepen_relative) {
1443                if (deepen_relative < 0)
1444                        die(_("Negative depth in --deepen is not supported"));
1445                if (depth)
1446                        die(_("--deepen and --depth are mutually exclusive"));
1447                depth = xstrfmt("%d", deepen_relative);
1448        }
1449        if (unshallow) {
1450                if (depth)
1451                        die(_("--depth and --unshallow cannot be used together"));
1452                else if (!is_repository_shallow())
1453                        die(_("--unshallow on a complete repository does not make sense"));
1454                else
1455                        depth = xstrfmt("%d", INFINITE_DEPTH);
1456        }
1457
1458        /* no need to be strict, transport_set_option() will validate it again */
1459        if (depth && atoi(depth) < 1)
1460                die(_("depth %s is not a positive number"), depth);
1461        if (depth || deepen_since || deepen_not.nr)
1462                deepen = 1;
1463
1464        if (filter_options.choice && !repository_format_partial_clone)
1465                die("--filter can only be used when extensions.partialClone is set");
1466
1467        if (all) {
1468                if (argc == 1)
1469                        die(_("fetch --all does not take a repository argument"));
1470                else if (argc > 1)
1471                        die(_("fetch --all does not make sense with refspecs"));
1472                (void) for_each_remote(get_one_remote_for_fetch, &list);
1473        } else if (argc == 0) {
1474                /* No arguments -- use default remote */
1475                remote = remote_get(NULL);
1476        } else if (multiple) {
1477                /* All arguments are assumed to be remotes or groups */
1478                for (i = 0; i < argc; i++)
1479                        if (!add_remote_or_group(argv[i], &list))
1480                                die(_("No such remote or remote group: %s"), argv[i]);
1481        } else {
1482                /* Single remote or group */
1483                (void) add_remote_or_group(argv[0], &list);
1484                if (list.nr > 1) {
1485                        /* More than one remote */
1486                        if (argc > 1)
1487                                die(_("Fetching a group and specifying refspecs does not make sense"));
1488                } else {
1489                        /* Zero or one remotes */
1490                        remote = remote_get(argv[0]);
1491                        prune_tags_ok = (argc == 1);
1492                        argc--;
1493                        argv++;
1494                }
1495        }
1496
1497        if (remote) {
1498                if (filter_options.choice || repository_format_partial_clone)
1499                        fetch_one_setup_partial(remote);
1500                result = fetch_one(remote, argc, argv, prune_tags_ok);
1501        } else {
1502                if (filter_options.choice)
1503                        die(_("--filter can only be used with the remote configured in core.partialClone"));
1504                /* TODO should this also die if we have a previous partial-clone? */
1505                result = fetch_multiple(&list);
1506        }
1507
1508        if (!result && (recurse_submodules != RECURSE_SUBMODULES_OFF)) {
1509                struct argv_array options = ARGV_ARRAY_INIT;
1510
1511                add_options_to_argv(&options);
1512                result = fetch_populated_submodules(the_repository,
1513                                                    &options,
1514                                                    submodule_prefix,
1515                                                    recurse_submodules,
1516                                                    recurse_submodules_default,
1517                                                    verbosity < 0,
1518                                                    max_children);
1519                argv_array_clear(&options);
1520        }
1521
1522        string_list_clear(&list, 0);
1523
1524        close_all_packs(the_repository->objects);
1525
1526        argv_array_pushl(&argv_gc_auto, "gc", "--auto", NULL);
1527        if (verbosity < 0)
1528                argv_array_push(&argv_gc_auto, "--quiet");
1529        run_command_v_opt(argv_gc_auto.argv, RUN_GIT_CMD);
1530        argv_array_clear(&argv_gc_auto);
1531
1532        return result;
1533}