builtin / clone.con commit treewide: prefer lockfiles on the stack (837e34e)
   1/*
   2 * Builtin "git clone"
   3 *
   4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>,
   5 *               2008 Daniel Barkalow <barkalow@iabervon.org>
   6 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
   7 *
   8 * Clone a repository into a different directory that does not yet exist.
   9 */
  10
  11#include "builtin.h"
  12#include "config.h"
  13#include "lockfile.h"
  14#include "parse-options.h"
  15#include "fetch-pack.h"
  16#include "refs.h"
  17#include "tree.h"
  18#include "tree-walk.h"
  19#include "unpack-trees.h"
  20#include "transport.h"
  21#include "strbuf.h"
  22#include "dir.h"
  23#include "sigchain.h"
  24#include "branch.h"
  25#include "remote.h"
  26#include "run-command.h"
  27#include "connected.h"
  28#include "packfile.h"
  29
  30/*
  31 * Overall FIXMEs:
  32 *  - respect DB_ENVIRONMENT for .git/objects.
  33 *
  34 * Implementation notes:
  35 *  - dropping use-separate-remote and no-separate-remote compatibility
  36 *
  37 */
  38static const char * const builtin_clone_usage[] = {
  39        N_("git clone [<options>] [--] <repo> [<dir>]"),
  40        NULL
  41};
  42
  43static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
  44static int option_local = -1, option_no_hardlinks, option_shared;
  45static int option_no_tags;
  46static int option_shallow_submodules;
  47static int deepen;
  48static char *option_template, *option_depth, *option_since;
  49static char *option_origin = NULL;
  50static char *option_branch = NULL;
  51static struct string_list option_not = STRING_LIST_INIT_NODUP;
  52static const char *real_git_dir;
  53static char *option_upload_pack = "git-upload-pack";
  54static int option_verbosity;
  55static int option_progress = -1;
  56static enum transport_family family;
  57static struct string_list option_config = STRING_LIST_INIT_NODUP;
  58static struct string_list option_required_reference = STRING_LIST_INIT_NODUP;
  59static struct string_list option_optional_reference = STRING_LIST_INIT_NODUP;
  60static int option_dissociate;
  61static int max_jobs = -1;
  62static struct string_list option_recurse_submodules = STRING_LIST_INIT_NODUP;
  63
  64static int recurse_submodules_cb(const struct option *opt,
  65                                 const char *arg, int unset)
  66{
  67        if (unset)
  68                string_list_clear((struct string_list *)opt->value, 0);
  69        else if (arg)
  70                string_list_append((struct string_list *)opt->value, arg);
  71        else
  72                string_list_append((struct string_list *)opt->value,
  73                                   (const char *)opt->defval);
  74
  75        return 0;
  76}
  77
  78static struct option builtin_clone_options[] = {
  79        OPT__VERBOSITY(&option_verbosity),
  80        OPT_BOOL(0, "progress", &option_progress,
  81                 N_("force progress reporting")),
  82        OPT_BOOL('n', "no-checkout", &option_no_checkout,
  83                 N_("don't create a checkout")),
  84        OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")),
  85        OPT_HIDDEN_BOOL(0, "naked", &option_bare,
  86                        N_("create a bare repository")),
  87        OPT_BOOL(0, "mirror", &option_mirror,
  88                 N_("create a mirror repository (implies bare)")),
  89        OPT_BOOL('l', "local", &option_local,
  90                N_("to clone from a local repository")),
  91        OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks,
  92                    N_("don't use local hardlinks, always copy")),
  93        OPT_BOOL('s', "shared", &option_shared,
  94                    N_("setup as shared repository")),
  95        { OPTION_CALLBACK, 0, "recursive", &option_recurse_submodules,
  96          N_("pathspec"), N_("initialize submodules in the clone"),
  97          PARSE_OPT_OPTARG | PARSE_OPT_HIDDEN, recurse_submodules_cb,
  98          (intptr_t)"." },
  99        { OPTION_CALLBACK, 0, "recurse-submodules", &option_recurse_submodules,
 100          N_("pathspec"), N_("initialize submodules in the clone"),
 101          PARSE_OPT_OPTARG, recurse_submodules_cb, (intptr_t)"." },
 102        OPT_INTEGER('j', "jobs", &max_jobs,
 103                    N_("number of submodules cloned in parallel")),
 104        OPT_STRING(0, "template", &option_template, N_("template-directory"),
 105                   N_("directory from which templates will be used")),
 106        OPT_STRING_LIST(0, "reference", &option_required_reference, N_("repo"),
 107                        N_("reference repository")),
 108        OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference,
 109                        N_("repo"), N_("reference repository")),
 110        OPT_BOOL(0, "dissociate", &option_dissociate,
 111                 N_("use --reference only while cloning")),
 112        OPT_STRING('o', "origin", &option_origin, N_("name"),
 113                   N_("use <name> instead of 'origin' to track upstream")),
 114        OPT_STRING('b', "branch", &option_branch, N_("branch"),
 115                   N_("checkout <branch> instead of the remote's HEAD")),
 116        OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
 117                   N_("path to git-upload-pack on the remote")),
 118        OPT_STRING(0, "depth", &option_depth, N_("depth"),
 119                    N_("create a shallow clone of that depth")),
 120        OPT_STRING(0, "shallow-since", &option_since, N_("time"),
 121                    N_("create a shallow clone since a specific time")),
 122        OPT_STRING_LIST(0, "shallow-exclude", &option_not, N_("revision"),
 123                        N_("deepen history of shallow clone, excluding rev")),
 124        OPT_BOOL(0, "single-branch", &option_single_branch,
 125                    N_("clone only one branch, HEAD or --branch")),
 126        OPT_BOOL(0, "no-tags", &option_no_tags,
 127                 N_("don't clone any tags, and make later fetches not to follow them")),
 128        OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules,
 129                    N_("any cloned submodules will be shallow")),
 130        OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
 131                   N_("separate git dir from working tree")),
 132        OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
 133                        N_("set config inside the new repository")),
 134        OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
 135                        TRANSPORT_FAMILY_IPV4),
 136        OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
 137                        TRANSPORT_FAMILY_IPV6),
 138        OPT_END()
 139};
 140
 141static const char *get_repo_path_1(struct strbuf *path, int *is_bundle)
 142{
 143        static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
 144        static char *bundle_suffix[] = { ".bundle", "" };
 145        size_t baselen = path->len;
 146        struct stat st;
 147        int i;
 148
 149        for (i = 0; i < ARRAY_SIZE(suffix); i++) {
 150                strbuf_setlen(path, baselen);
 151                strbuf_addstr(path, suffix[i]);
 152                if (stat(path->buf, &st))
 153                        continue;
 154                if (S_ISDIR(st.st_mode) && is_git_directory(path->buf)) {
 155                        *is_bundle = 0;
 156                        return path->buf;
 157                } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
 158                        /* Is it a "gitfile"? */
 159                        char signature[8];
 160                        const char *dst;
 161                        int len, fd = open(path->buf, O_RDONLY);
 162                        if (fd < 0)
 163                                continue;
 164                        len = read_in_full(fd, signature, 8);
 165                        close(fd);
 166                        if (len != 8 || strncmp(signature, "gitdir: ", 8))
 167                                continue;
 168                        dst = read_gitfile(path->buf);
 169                        if (dst) {
 170                                *is_bundle = 0;
 171                                return dst;
 172                        }
 173                }
 174        }
 175
 176        for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
 177                strbuf_setlen(path, baselen);
 178                strbuf_addstr(path, bundle_suffix[i]);
 179                if (!stat(path->buf, &st) && S_ISREG(st.st_mode)) {
 180                        *is_bundle = 1;
 181                        return path->buf;
 182                }
 183        }
 184
 185        return NULL;
 186}
 187
 188static char *get_repo_path(const char *repo, int *is_bundle)
 189{
 190        struct strbuf path = STRBUF_INIT;
 191        const char *raw;
 192        char *canon;
 193
 194        strbuf_addstr(&path, repo);
 195        raw = get_repo_path_1(&path, is_bundle);
 196        canon = raw ? absolute_pathdup(raw) : NULL;
 197        strbuf_release(&path);
 198        return canon;
 199}
 200
 201static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
 202{
 203        const char *end = repo + strlen(repo), *start, *ptr;
 204        size_t len;
 205        char *dir;
 206
 207        /*
 208         * Skip scheme.
 209         */
 210        start = strstr(repo, "://");
 211        if (start == NULL)
 212                start = repo;
 213        else
 214                start += 3;
 215
 216        /*
 217         * Skip authentication data. The stripping does happen
 218         * greedily, such that we strip up to the last '@' inside
 219         * the host part.
 220         */
 221        for (ptr = start; ptr < end && !is_dir_sep(*ptr); ptr++) {
 222                if (*ptr == '@')
 223                        start = ptr + 1;
 224        }
 225
 226        /*
 227         * Strip trailing spaces, slashes and /.git
 228         */
 229        while (start < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
 230                end--;
 231        if (end - start > 5 && is_dir_sep(end[-5]) &&
 232            !strncmp(end - 4, ".git", 4)) {
 233                end -= 5;
 234                while (start < end && is_dir_sep(end[-1]))
 235                        end--;
 236        }
 237
 238        /*
 239         * Strip trailing port number if we've got only a
 240         * hostname (that is, there is no dir separator but a
 241         * colon). This check is required such that we do not
 242         * strip URI's like '/foo/bar:2222.git', which should
 243         * result in a dir '2222' being guessed due to backwards
 244         * compatibility.
 245         */
 246        if (memchr(start, '/', end - start) == NULL
 247            && memchr(start, ':', end - start) != NULL) {
 248                ptr = end;
 249                while (start < ptr && isdigit(ptr[-1]) && ptr[-1] != ':')
 250                        ptr--;
 251                if (start < ptr && ptr[-1] == ':')
 252                        end = ptr - 1;
 253        }
 254
 255        /*
 256         * Find last component. To remain backwards compatible we
 257         * also regard colons as path separators, such that
 258         * cloning a repository 'foo:bar.git' would result in a
 259         * directory 'bar' being guessed.
 260         */
 261        ptr = end;
 262        while (start < ptr && !is_dir_sep(ptr[-1]) && ptr[-1] != ':')
 263                ptr--;
 264        start = ptr;
 265
 266        /*
 267         * Strip .{bundle,git}.
 268         */
 269        len = end - start;
 270        strip_suffix_mem(start, &len, is_bundle ? ".bundle" : ".git");
 271
 272        if (!len || (len == 1 && *start == '/'))
 273                die(_("No directory name could be guessed.\n"
 274                      "Please specify a directory on the command line"));
 275
 276        if (is_bare)
 277                dir = xstrfmt("%.*s.git", (int)len, start);
 278        else
 279                dir = xstrndup(start, len);
 280        /*
 281         * Replace sequences of 'control' characters and whitespace
 282         * with one ascii space, remove leading and trailing spaces.
 283         */
 284        if (*dir) {
 285                char *out = dir;
 286                int prev_space = 1 /* strip leading whitespace */;
 287                for (end = dir; *end; ++end) {
 288                        char ch = *end;
 289                        if ((unsigned char)ch < '\x20')
 290                                ch = '\x20';
 291                        if (isspace(ch)) {
 292                                if (prev_space)
 293                                        continue;
 294                                prev_space = 1;
 295                        } else
 296                                prev_space = 0;
 297                        *out++ = ch;
 298                }
 299                *out = '\0';
 300                if (out > dir && prev_space)
 301                        out[-1] = '\0';
 302        }
 303        return dir;
 304}
 305
 306static void strip_trailing_slashes(char *dir)
 307{
 308        char *end = dir + strlen(dir);
 309
 310        while (dir < end - 1 && is_dir_sep(end[-1]))
 311                end--;
 312        *end = '\0';
 313}
 314
 315static int add_one_reference(struct string_list_item *item, void *cb_data)
 316{
 317        struct strbuf err = STRBUF_INIT;
 318        int *required = cb_data;
 319        char *ref_git = compute_alternate_path(item->string, &err);
 320
 321        if (!ref_git) {
 322                if (*required)
 323                        die("%s", err.buf);
 324                else
 325                        fprintf(stderr,
 326                                _("info: Could not add alternate for '%s': %s\n"),
 327                                item->string, err.buf);
 328        } else {
 329                struct strbuf sb = STRBUF_INIT;
 330                strbuf_addf(&sb, "%s/objects", ref_git);
 331                add_to_alternates_file(sb.buf);
 332                strbuf_release(&sb);
 333        }
 334
 335        strbuf_release(&err);
 336        free(ref_git);
 337        return 0;
 338}
 339
 340static void setup_reference(void)
 341{
 342        int required = 1;
 343        for_each_string_list(&option_required_reference,
 344                             add_one_reference, &required);
 345        required = 0;
 346        for_each_string_list(&option_optional_reference,
 347                             add_one_reference, &required);
 348}
 349
 350static void copy_alternates(struct strbuf *src, struct strbuf *dst,
 351                            const char *src_repo)
 352{
 353        /*
 354         * Read from the source objects/info/alternates file
 355         * and copy the entries to corresponding file in the
 356         * destination repository with add_to_alternates_file().
 357         * Both src and dst have "$path/objects/info/alternates".
 358         *
 359         * Instead of copying bit-for-bit from the original,
 360         * we need to append to existing one so that the already
 361         * created entry via "clone -s" is not lost, and also
 362         * to turn entries with paths relative to the original
 363         * absolute, so that they can be used in the new repository.
 364         */
 365        FILE *in = xfopen(src->buf, "r");
 366        struct strbuf line = STRBUF_INIT;
 367
 368        while (strbuf_getline(&line, in) != EOF) {
 369                char *abs_path;
 370                if (!line.len || line.buf[0] == '#')
 371                        continue;
 372                if (is_absolute_path(line.buf)) {
 373                        add_to_alternates_file(line.buf);
 374                        continue;
 375                }
 376                abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf);
 377                if (!normalize_path_copy(abs_path, abs_path))
 378                        add_to_alternates_file(abs_path);
 379                else
 380                        warning("skipping invalid relative alternate: %s/%s",
 381                                src_repo, line.buf);
 382                free(abs_path);
 383        }
 384        strbuf_release(&line);
 385        fclose(in);
 386}
 387
 388static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
 389                                   const char *src_repo, int src_baselen)
 390{
 391        struct dirent *de;
 392        struct stat buf;
 393        int src_len, dest_len;
 394        DIR *dir;
 395
 396        dir = opendir(src->buf);
 397        if (!dir)
 398                die_errno(_("failed to open '%s'"), src->buf);
 399
 400        if (mkdir(dest->buf, 0777)) {
 401                if (errno != EEXIST)
 402                        die_errno(_("failed to create directory '%s'"), dest->buf);
 403                else if (stat(dest->buf, &buf))
 404                        die_errno(_("failed to stat '%s'"), dest->buf);
 405                else if (!S_ISDIR(buf.st_mode))
 406                        die(_("%s exists and is not a directory"), dest->buf);
 407        }
 408
 409        strbuf_addch(src, '/');
 410        src_len = src->len;
 411        strbuf_addch(dest, '/');
 412        dest_len = dest->len;
 413
 414        while ((de = readdir(dir)) != NULL) {
 415                strbuf_setlen(src, src_len);
 416                strbuf_addstr(src, de->d_name);
 417                strbuf_setlen(dest, dest_len);
 418                strbuf_addstr(dest, de->d_name);
 419                if (stat(src->buf, &buf)) {
 420                        warning (_("failed to stat %s\n"), src->buf);
 421                        continue;
 422                }
 423                if (S_ISDIR(buf.st_mode)) {
 424                        if (de->d_name[0] != '.')
 425                                copy_or_link_directory(src, dest,
 426                                                       src_repo, src_baselen);
 427                        continue;
 428                }
 429
 430                /* Files that cannot be copied bit-for-bit... */
 431                if (!strcmp(src->buf + src_baselen, "/info/alternates")) {
 432                        copy_alternates(src, dest, src_repo);
 433                        continue;
 434                }
 435
 436                if (unlink(dest->buf) && errno != ENOENT)
 437                        die_errno(_("failed to unlink '%s'"), dest->buf);
 438                if (!option_no_hardlinks) {
 439                        if (!link(src->buf, dest->buf))
 440                                continue;
 441                        if (option_local > 0)
 442                                die_errno(_("failed to create link '%s'"), dest->buf);
 443                        option_no_hardlinks = 1;
 444                }
 445                if (copy_file_with_time(dest->buf, src->buf, 0666))
 446                        die_errno(_("failed to copy file to '%s'"), dest->buf);
 447        }
 448        closedir(dir);
 449}
 450
 451static void clone_local(const char *src_repo, const char *dest_repo)
 452{
 453        if (option_shared) {
 454                struct strbuf alt = STRBUF_INIT;
 455                strbuf_addf(&alt, "%s/objects", src_repo);
 456                add_to_alternates_file(alt.buf);
 457                strbuf_release(&alt);
 458        } else {
 459                struct strbuf src = STRBUF_INIT;
 460                struct strbuf dest = STRBUF_INIT;
 461                get_common_dir(&src, src_repo);
 462                get_common_dir(&dest, dest_repo);
 463                strbuf_addstr(&src, "/objects");
 464                strbuf_addstr(&dest, "/objects");
 465                copy_or_link_directory(&src, &dest, src_repo, src.len);
 466                strbuf_release(&src);
 467                strbuf_release(&dest);
 468        }
 469
 470        if (0 <= option_verbosity)
 471                fprintf(stderr, _("done.\n"));
 472}
 473
 474static const char *junk_work_tree;
 475static const char *junk_git_dir;
 476static enum {
 477        JUNK_LEAVE_NONE,
 478        JUNK_LEAVE_REPO,
 479        JUNK_LEAVE_ALL
 480} junk_mode = JUNK_LEAVE_NONE;
 481
 482static const char junk_leave_repo_msg[] =
 483N_("Clone succeeded, but checkout failed.\n"
 484   "You can inspect what was checked out with 'git status'\n"
 485   "and retry the checkout with 'git checkout -f HEAD'\n");
 486
 487static void remove_junk(void)
 488{
 489        struct strbuf sb = STRBUF_INIT;
 490
 491        switch (junk_mode) {
 492        case JUNK_LEAVE_REPO:
 493                warning("%s", _(junk_leave_repo_msg));
 494                /* fall-through */
 495        case JUNK_LEAVE_ALL:
 496                return;
 497        default:
 498                /* proceed to removal */
 499                break;
 500        }
 501
 502        if (junk_git_dir) {
 503                strbuf_addstr(&sb, junk_git_dir);
 504                remove_dir_recursively(&sb, 0);
 505                strbuf_reset(&sb);
 506        }
 507        if (junk_work_tree) {
 508                strbuf_addstr(&sb, junk_work_tree);
 509                remove_dir_recursively(&sb, 0);
 510        }
 511        strbuf_release(&sb);
 512}
 513
 514static void remove_junk_on_signal(int signo)
 515{
 516        remove_junk();
 517        sigchain_pop(signo);
 518        raise(signo);
 519}
 520
 521static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
 522{
 523        struct ref *ref;
 524        struct strbuf head = STRBUF_INIT;
 525        strbuf_addstr(&head, "refs/heads/");
 526        strbuf_addstr(&head, branch);
 527        ref = find_ref_by_name(refs, head.buf);
 528        strbuf_release(&head);
 529
 530        if (ref)
 531                return ref;
 532
 533        strbuf_addstr(&head, "refs/tags/");
 534        strbuf_addstr(&head, branch);
 535        ref = find_ref_by_name(refs, head.buf);
 536        strbuf_release(&head);
 537
 538        return ref;
 539}
 540
 541static struct ref *wanted_peer_refs(const struct ref *refs,
 542                struct refspec *refspec)
 543{
 544        struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
 545        struct ref *local_refs = head;
 546        struct ref **tail = head ? &head->next : &local_refs;
 547
 548        if (option_single_branch) {
 549                struct ref *remote_head = NULL;
 550
 551                if (!option_branch)
 552                        remote_head = guess_remote_head(head, refs, 0);
 553                else {
 554                        local_refs = NULL;
 555                        tail = &local_refs;
 556                        remote_head = copy_ref(find_remote_branch(refs, option_branch));
 557                }
 558
 559                if (!remote_head && option_branch)
 560                        warning(_("Could not find remote branch %s to clone."),
 561                                option_branch);
 562                else {
 563                        get_fetch_map(remote_head, refspec, &tail, 0);
 564
 565                        /* if --branch=tag, pull the requested tag explicitly */
 566                        get_fetch_map(remote_head, tag_refspec, &tail, 0);
 567                }
 568        } else
 569                get_fetch_map(refs, refspec, &tail, 0);
 570
 571        if (!option_mirror && !option_single_branch && !option_no_tags)
 572                get_fetch_map(refs, tag_refspec, &tail, 0);
 573
 574        return local_refs;
 575}
 576
 577static void write_remote_refs(const struct ref *local_refs)
 578{
 579        const struct ref *r;
 580
 581        struct ref_transaction *t;
 582        struct strbuf err = STRBUF_INIT;
 583
 584        t = ref_transaction_begin(&err);
 585        if (!t)
 586                die("%s", err.buf);
 587
 588        for (r = local_refs; r; r = r->next) {
 589                if (!r->peer_ref)
 590                        continue;
 591                if (ref_transaction_create(t, r->peer_ref->name, r->old_oid.hash,
 592                                           0, NULL, &err))
 593                        die("%s", err.buf);
 594        }
 595
 596        if (initial_ref_transaction_commit(t, &err))
 597                die("%s", err.buf);
 598
 599        strbuf_release(&err);
 600        ref_transaction_free(t);
 601}
 602
 603static void write_followtags(const struct ref *refs, const char *msg)
 604{
 605        const struct ref *ref;
 606        for (ref = refs; ref; ref = ref->next) {
 607                if (!starts_with(ref->name, "refs/tags/"))
 608                        continue;
 609                if (ends_with(ref->name, "^{}"))
 610                        continue;
 611                if (!has_object_file(&ref->old_oid))
 612                        continue;
 613                update_ref(msg, ref->name, ref->old_oid.hash,
 614                           NULL, 0, UPDATE_REFS_DIE_ON_ERR);
 615        }
 616}
 617
 618static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
 619{
 620        struct ref **rm = cb_data;
 621        struct ref *ref = *rm;
 622
 623        /*
 624         * Skip anything missing a peer_ref, which we are not
 625         * actually going to write a ref for.
 626         */
 627        while (ref && !ref->peer_ref)
 628                ref = ref->next;
 629        /* Returning -1 notes "end of list" to the caller. */
 630        if (!ref)
 631                return -1;
 632
 633        hashcpy(sha1, ref->old_oid.hash);
 634        *rm = ref->next;
 635        return 0;
 636}
 637
 638static void update_remote_refs(const struct ref *refs,
 639                               const struct ref *mapped_refs,
 640                               const struct ref *remote_head_points_at,
 641                               const char *branch_top,
 642                               const char *msg,
 643                               struct transport *transport,
 644                               int check_connectivity)
 645{
 646        const struct ref *rm = mapped_refs;
 647
 648        if (check_connectivity) {
 649                struct check_connected_options opt = CHECK_CONNECTED_INIT;
 650
 651                opt.transport = transport;
 652                opt.progress = transport->progress;
 653
 654                if (check_connected(iterate_ref_map, &rm, &opt))
 655                        die(_("remote did not send all necessary objects"));
 656        }
 657
 658        if (refs) {
 659                write_remote_refs(mapped_refs);
 660                if (option_single_branch && !option_no_tags)
 661                        write_followtags(refs, msg);
 662        }
 663
 664        if (remote_head_points_at && !option_bare) {
 665                struct strbuf head_ref = STRBUF_INIT;
 666                strbuf_addstr(&head_ref, branch_top);
 667                strbuf_addstr(&head_ref, "HEAD");
 668                if (create_symref(head_ref.buf,
 669                                  remote_head_points_at->peer_ref->name,
 670                                  msg) < 0)
 671                        die(_("unable to update %s"), head_ref.buf);
 672                strbuf_release(&head_ref);
 673        }
 674}
 675
 676static void update_head(const struct ref *our, const struct ref *remote,
 677                        const char *msg)
 678{
 679        const char *head;
 680        if (our && skip_prefix(our->name, "refs/heads/", &head)) {
 681                /* Local default branch link */
 682                if (create_symref("HEAD", our->name, NULL) < 0)
 683                        die(_("unable to update HEAD"));
 684                if (!option_bare) {
 685                        update_ref(msg, "HEAD", our->old_oid.hash, NULL, 0,
 686                                   UPDATE_REFS_DIE_ON_ERR);
 687                        install_branch_config(0, head, option_origin, our->name);
 688                }
 689        } else if (our) {
 690                struct commit *c = lookup_commit_reference(&our->old_oid);
 691                /* --branch specifies a non-branch (i.e. tags), detach HEAD */
 692                update_ref(msg, "HEAD", c->object.oid.hash,
 693                           NULL, REF_NODEREF, UPDATE_REFS_DIE_ON_ERR);
 694        } else if (remote) {
 695                /*
 696                 * We know remote HEAD points to a non-branch, or
 697                 * HEAD points to a branch but we don't know which one.
 698                 * Detach HEAD in all these cases.
 699                 */
 700                update_ref(msg, "HEAD", remote->old_oid.hash,
 701                           NULL, REF_NODEREF, UPDATE_REFS_DIE_ON_ERR);
 702        }
 703}
 704
 705static int checkout(int submodule_progress)
 706{
 707        struct object_id oid;
 708        char *head;
 709        struct lock_file lock_file = LOCK_INIT;
 710        struct unpack_trees_options opts;
 711        struct tree *tree;
 712        struct tree_desc t;
 713        int err = 0;
 714
 715        if (option_no_checkout)
 716                return 0;
 717
 718        head = resolve_refdup("HEAD", RESOLVE_REF_READING, oid.hash, NULL);
 719        if (!head) {
 720                warning(_("remote HEAD refers to nonexistent ref, "
 721                          "unable to checkout.\n"));
 722                return 0;
 723        }
 724        if (!strcmp(head, "HEAD")) {
 725                if (advice_detached_head)
 726                        detach_advice(oid_to_hex(&oid));
 727        } else {
 728                if (!starts_with(head, "refs/heads/"))
 729                        die(_("HEAD not found below refs/heads!"));
 730        }
 731        free(head);
 732
 733        /* We need to be in the new work tree for the checkout */
 734        setup_work_tree();
 735
 736        hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
 737
 738        memset(&opts, 0, sizeof opts);
 739        opts.update = 1;
 740        opts.merge = 1;
 741        opts.fn = oneway_merge;
 742        opts.verbose_update = (option_verbosity >= 0);
 743        opts.src_index = &the_index;
 744        opts.dst_index = &the_index;
 745
 746        tree = parse_tree_indirect(&oid);
 747        parse_tree(tree);
 748        init_tree_desc(&t, tree->buffer, tree->size);
 749        if (unpack_trees(1, &t, &opts) < 0)
 750                die(_("unable to checkout working tree"));
 751
 752        if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
 753                die(_("unable to write new index file"));
 754
 755        err |= run_hook_le(NULL, "post-checkout", sha1_to_hex(null_sha1),
 756                           oid_to_hex(&oid), "1", NULL);
 757
 758        if (!err && (option_recurse_submodules.nr > 0)) {
 759                struct argv_array args = ARGV_ARRAY_INIT;
 760                argv_array_pushl(&args, "submodule", "update", "--init", "--recursive", NULL);
 761
 762                if (option_shallow_submodules == 1)
 763                        argv_array_push(&args, "--depth=1");
 764
 765                if (max_jobs != -1)
 766                        argv_array_pushf(&args, "--jobs=%d", max_jobs);
 767
 768                if (submodule_progress)
 769                        argv_array_push(&args, "--progress");
 770
 771                if (option_verbosity < 0)
 772                        argv_array_push(&args, "--quiet");
 773
 774                err = run_command_v_opt(args.argv, RUN_GIT_CMD);
 775                argv_array_clear(&args);
 776        }
 777
 778        return err;
 779}
 780
 781static int write_one_config(const char *key, const char *value, void *data)
 782{
 783        return git_config_set_multivar_gently(key,
 784                                              value ? value : "true",
 785                                              CONFIG_REGEX_NONE, 0);
 786}
 787
 788static void write_config(struct string_list *config)
 789{
 790        int i;
 791
 792        for (i = 0; i < config->nr; i++) {
 793                if (git_config_parse_parameter(config->items[i].string,
 794                                               write_one_config, NULL) < 0)
 795                        die(_("unable to write parameters to config file"));
 796        }
 797}
 798
 799static void write_refspec_config(const char *src_ref_prefix,
 800                const struct ref *our_head_points_at,
 801                const struct ref *remote_head_points_at,
 802                struct strbuf *branch_top)
 803{
 804        struct strbuf key = STRBUF_INIT;
 805        struct strbuf value = STRBUF_INIT;
 806
 807        if (option_mirror || !option_bare) {
 808                if (option_single_branch && !option_mirror) {
 809                        if (option_branch) {
 810                                if (starts_with(our_head_points_at->name, "refs/tags/"))
 811                                        strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
 812                                                our_head_points_at->name);
 813                                else
 814                                        strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
 815                                                branch_top->buf, option_branch);
 816                        } else if (remote_head_points_at) {
 817                                const char *head = remote_head_points_at->name;
 818                                if (!skip_prefix(head, "refs/heads/", &head))
 819                                        die("BUG: remote HEAD points at non-head?");
 820
 821                                strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
 822                                                branch_top->buf, head);
 823                        }
 824                        /*
 825                         * otherwise, the next "git fetch" will
 826                         * simply fetch from HEAD without updating
 827                         * any remote-tracking branch, which is what
 828                         * we want.
 829                         */
 830                } else {
 831                        strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
 832                }
 833                /* Configure the remote */
 834                if (value.len) {
 835                        strbuf_addf(&key, "remote.%s.fetch", option_origin);
 836                        git_config_set_multivar(key.buf, value.buf, "^$", 0);
 837                        strbuf_reset(&key);
 838
 839                        if (option_mirror) {
 840                                strbuf_addf(&key, "remote.%s.mirror", option_origin);
 841                                git_config_set(key.buf, "true");
 842                                strbuf_reset(&key);
 843                        }
 844                }
 845        }
 846
 847        strbuf_release(&key);
 848        strbuf_release(&value);
 849}
 850
 851static void dissociate_from_references(void)
 852{
 853        static const char* argv[] = { "repack", "-a", "-d", NULL };
 854        char *alternates = git_pathdup("objects/info/alternates");
 855
 856        if (!access(alternates, F_OK)) {
 857                if (run_command_v_opt(argv, RUN_GIT_CMD|RUN_COMMAND_NO_STDIN))
 858                        die(_("cannot repack to clean up"));
 859                if (unlink(alternates) && errno != ENOENT)
 860                        die_errno(_("cannot unlink temporary alternates file"));
 861        }
 862        free(alternates);
 863}
 864
 865int cmd_clone(int argc, const char **argv, const char *prefix)
 866{
 867        int is_bundle = 0, is_local;
 868        struct stat buf;
 869        const char *repo_name, *repo, *work_tree, *git_dir;
 870        char *path, *dir;
 871        int dest_exists;
 872        const struct ref *refs, *remote_head;
 873        const struct ref *remote_head_points_at;
 874        const struct ref *our_head_points_at;
 875        struct ref *mapped_refs;
 876        const struct ref *ref;
 877        struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
 878        struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
 879        struct transport *transport = NULL;
 880        const char *src_ref_prefix = "refs/heads/";
 881        struct remote *remote;
 882        int err = 0, complete_refs_before_fetch = 1;
 883        int submodule_progress;
 884
 885        struct refspec *refspec;
 886        const char *fetch_pattern;
 887
 888        packet_trace_identity("clone");
 889        argc = parse_options(argc, argv, prefix, builtin_clone_options,
 890                             builtin_clone_usage, 0);
 891
 892        if (argc > 2)
 893                usage_msg_opt(_("Too many arguments."),
 894                        builtin_clone_usage, builtin_clone_options);
 895
 896        if (argc == 0)
 897                usage_msg_opt(_("You must specify a repository to clone."),
 898                        builtin_clone_usage, builtin_clone_options);
 899
 900        if (option_depth || option_since || option_not.nr)
 901                deepen = 1;
 902        if (option_single_branch == -1)
 903                option_single_branch = deepen ? 1 : 0;
 904
 905        if (option_mirror)
 906                option_bare = 1;
 907
 908        if (option_bare) {
 909                if (option_origin)
 910                        die(_("--bare and --origin %s options are incompatible."),
 911                            option_origin);
 912                if (real_git_dir)
 913                        die(_("--bare and --separate-git-dir are incompatible."));
 914                option_no_checkout = 1;
 915        }
 916
 917        if (!option_origin)
 918                option_origin = "origin";
 919
 920        repo_name = argv[0];
 921
 922        path = get_repo_path(repo_name, &is_bundle);
 923        if (path)
 924                repo = absolute_pathdup(repo_name);
 925        else if (!strchr(repo_name, ':'))
 926                die(_("repository '%s' does not exist"), repo_name);
 927        else
 928                repo = repo_name;
 929
 930        /* no need to be strict, transport_set_option() will validate it again */
 931        if (option_depth && atoi(option_depth) < 1)
 932                die(_("depth %s is not a positive number"), option_depth);
 933
 934        if (argc == 2)
 935                dir = xstrdup(argv[1]);
 936        else
 937                dir = guess_dir_name(repo_name, is_bundle, option_bare);
 938        strip_trailing_slashes(dir);
 939
 940        dest_exists = !stat(dir, &buf);
 941        if (dest_exists && !is_empty_dir(dir))
 942                die(_("destination path '%s' already exists and is not "
 943                        "an empty directory."), dir);
 944
 945        strbuf_addf(&reflog_msg, "clone: from %s", repo);
 946
 947        if (option_bare)
 948                work_tree = NULL;
 949        else {
 950                work_tree = getenv("GIT_WORK_TREE");
 951                if (work_tree && !stat(work_tree, &buf))
 952                        die(_("working tree '%s' already exists."), work_tree);
 953        }
 954
 955        if (option_bare || work_tree)
 956                git_dir = xstrdup(dir);
 957        else {
 958                work_tree = dir;
 959                git_dir = mkpathdup("%s/.git", dir);
 960        }
 961
 962        atexit(remove_junk);
 963        sigchain_push_common(remove_junk_on_signal);
 964
 965        if (!option_bare) {
 966                if (safe_create_leading_directories_const(work_tree) < 0)
 967                        die_errno(_("could not create leading directories of '%s'"),
 968                                  work_tree);
 969                if (!dest_exists && mkdir(work_tree, 0777))
 970                        die_errno(_("could not create work tree dir '%s'"),
 971                                  work_tree);
 972                junk_work_tree = work_tree;
 973                set_git_work_tree(work_tree);
 974        }
 975
 976        junk_git_dir = real_git_dir ? real_git_dir : git_dir;
 977        if (safe_create_leading_directories_const(git_dir) < 0)
 978                die(_("could not create leading directories of '%s'"), git_dir);
 979
 980        if (0 <= option_verbosity) {
 981                if (option_bare)
 982                        fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
 983                else
 984                        fprintf(stderr, _("Cloning into '%s'...\n"), dir);
 985        }
 986
 987        if (option_recurse_submodules.nr > 0) {
 988                struct string_list_item *item;
 989                struct strbuf sb = STRBUF_INIT;
 990
 991                /* remove duplicates */
 992                string_list_sort(&option_recurse_submodules);
 993                string_list_remove_duplicates(&option_recurse_submodules, 0);
 994
 995                /*
 996                 * NEEDSWORK: In a multi-working-tree world, this needs to be
 997                 * set in the per-worktree config.
 998                 */
 999                for_each_string_list_item(item, &option_recurse_submodules) {
1000                        strbuf_addf(&sb, "submodule.active=%s",
1001                                    item->string);
1002                        string_list_append(&option_config,
1003                                           strbuf_detach(&sb, NULL));
1004                }
1005
1006                if (option_required_reference.nr &&
1007                    option_optional_reference.nr)
1008                        die(_("clone --recursive is not compatible with "
1009                              "both --reference and --reference-if-able"));
1010                else if (option_required_reference.nr) {
1011                        string_list_append(&option_config,
1012                                "submodule.alternateLocation=superproject");
1013                        string_list_append(&option_config,
1014                                "submodule.alternateErrorStrategy=die");
1015                } else if (option_optional_reference.nr) {
1016                        string_list_append(&option_config,
1017                                "submodule.alternateLocation=superproject");
1018                        string_list_append(&option_config,
1019                                "submodule.alternateErrorStrategy=info");
1020                }
1021        }
1022
1023        init_db(git_dir, real_git_dir, option_template, INIT_DB_QUIET);
1024
1025        if (real_git_dir)
1026                git_dir = real_git_dir;
1027
1028        write_config(&option_config);
1029
1030        git_config(git_default_config, NULL);
1031
1032        if (option_bare) {
1033                if (option_mirror)
1034                        src_ref_prefix = "refs/";
1035                strbuf_addstr(&branch_top, src_ref_prefix);
1036
1037                git_config_set("core.bare", "true");
1038        } else {
1039                strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
1040        }
1041
1042        strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
1043        strbuf_addf(&key, "remote.%s.url", option_origin);
1044        git_config_set(key.buf, repo);
1045        strbuf_reset(&key);
1046
1047        if (option_no_tags) {
1048                strbuf_addf(&key, "remote.%s.tagOpt", option_origin);
1049                git_config_set(key.buf, "--no-tags");
1050                strbuf_reset(&key);
1051        }
1052
1053        if (option_required_reference.nr || option_optional_reference.nr)
1054                setup_reference();
1055
1056        fetch_pattern = value.buf;
1057        refspec = parse_fetch_refspec(1, &fetch_pattern);
1058
1059        strbuf_reset(&value);
1060
1061        remote = remote_get(option_origin);
1062        transport = transport_get(remote, remote->url[0]);
1063        transport_set_verbosity(transport, option_verbosity, option_progress);
1064        transport->family = family;
1065
1066        path = get_repo_path(remote->url[0], &is_bundle);
1067        is_local = option_local != 0 && path && !is_bundle;
1068        if (is_local) {
1069                if (option_depth)
1070                        warning(_("--depth is ignored in local clones; use file:// instead."));
1071                if (option_since)
1072                        warning(_("--shallow-since is ignored in local clones; use file:// instead."));
1073                if (option_not.nr)
1074                        warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
1075                if (!access(mkpath("%s/shallow", path), F_OK)) {
1076                        if (option_local > 0)
1077                                warning(_("source repository is shallow, ignoring --local"));
1078                        is_local = 0;
1079                }
1080        }
1081        if (option_local > 0 && !is_local)
1082                warning(_("--local is ignored"));
1083        transport->cloning = 1;
1084
1085        if (!transport->get_refs_list || (!is_local && !transport->fetch))
1086                die(_("Don't know how to clone %s"), transport->url);
1087
1088        transport_set_option(transport, TRANS_OPT_KEEP, "yes");
1089
1090        if (option_depth)
1091                transport_set_option(transport, TRANS_OPT_DEPTH,
1092                                     option_depth);
1093        if (option_since)
1094                transport_set_option(transport, TRANS_OPT_DEEPEN_SINCE,
1095                                     option_since);
1096        if (option_not.nr)
1097                transport_set_option(transport, TRANS_OPT_DEEPEN_NOT,
1098                                     (const char *)&option_not);
1099        if (option_single_branch)
1100                transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1101
1102        if (option_upload_pack)
1103                transport_set_option(transport, TRANS_OPT_UPLOADPACK,
1104                                     option_upload_pack);
1105
1106        if (transport->smart_options && !deepen)
1107                transport->smart_options->check_self_contained_and_connected = 1;
1108
1109        refs = transport_get_remote_refs(transport);
1110
1111        if (refs) {
1112                mapped_refs = wanted_peer_refs(refs, refspec);
1113                /*
1114                 * transport_get_remote_refs() may return refs with null sha-1
1115                 * in mapped_refs (see struct transport->get_refs_list
1116                 * comment). In that case we need fetch it early because
1117                 * remote_head code below relies on it.
1118                 *
1119                 * for normal clones, transport_get_remote_refs() should
1120                 * return reliable ref set, we can delay cloning until after
1121                 * remote HEAD check.
1122                 */
1123                for (ref = refs; ref; ref = ref->next)
1124                        if (is_null_oid(&ref->old_oid)) {
1125                                complete_refs_before_fetch = 0;
1126                                break;
1127                        }
1128
1129                if (!is_local && !complete_refs_before_fetch)
1130                        transport_fetch_refs(transport, mapped_refs);
1131
1132                remote_head = find_ref_by_name(refs, "HEAD");
1133                remote_head_points_at =
1134                        guess_remote_head(remote_head, mapped_refs, 0);
1135
1136                if (option_branch) {
1137                        our_head_points_at =
1138                                find_remote_branch(mapped_refs, option_branch);
1139
1140                        if (!our_head_points_at)
1141                                die(_("Remote branch %s not found in upstream %s"),
1142                                    option_branch, option_origin);
1143                }
1144                else
1145                        our_head_points_at = remote_head_points_at;
1146        }
1147        else {
1148                if (option_branch)
1149                        die(_("Remote branch %s not found in upstream %s"),
1150                                        option_branch, option_origin);
1151
1152                warning(_("You appear to have cloned an empty repository."));
1153                mapped_refs = NULL;
1154                our_head_points_at = NULL;
1155                remote_head_points_at = NULL;
1156                remote_head = NULL;
1157                option_no_checkout = 1;
1158                if (!option_bare)
1159                        install_branch_config(0, "master", option_origin,
1160                                              "refs/heads/master");
1161        }
1162
1163        write_refspec_config(src_ref_prefix, our_head_points_at,
1164                        remote_head_points_at, &branch_top);
1165
1166        if (is_local)
1167                clone_local(path, git_dir);
1168        else if (refs && complete_refs_before_fetch)
1169                transport_fetch_refs(transport, mapped_refs);
1170
1171        update_remote_refs(refs, mapped_refs, remote_head_points_at,
1172                           branch_top.buf, reflog_msg.buf, transport, !is_local);
1173
1174        update_head(our_head_points_at, remote_head, reflog_msg.buf);
1175
1176        /*
1177         * We want to show progress for recursive submodule clones iff
1178         * we did so for the main clone. But only the transport knows
1179         * the final decision for this flag, so we need to rescue the value
1180         * before we free the transport.
1181         */
1182        submodule_progress = transport->progress;
1183
1184        transport_unlock_pack(transport);
1185        transport_disconnect(transport);
1186
1187        if (option_dissociate) {
1188                close_all_packs();
1189                dissociate_from_references();
1190        }
1191
1192        junk_mode = JUNK_LEAVE_REPO;
1193        err = checkout(submodule_progress);
1194
1195        strbuf_release(&reflog_msg);
1196        strbuf_release(&branch_top);
1197        strbuf_release(&key);
1198        strbuf_release(&value);
1199        junk_mode = JUNK_LEAVE_ALL;
1200
1201        free(refspec);
1202        return err;
1203}