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