builtin-clone.con commit Allow specifying the remote helper in the url (8742243)
   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 "cache.h"
  12#include "parse-options.h"
  13#include "fetch-pack.h"
  14#include "refs.h"
  15#include "tree.h"
  16#include "tree-walk.h"
  17#include "unpack-trees.h"
  18#include "transport.h"
  19#include "strbuf.h"
  20#include "dir.h"
  21#include "pack-refs.h"
  22#include "sigchain.h"
  23#include "branch.h"
  24#include "remote.h"
  25#include "run-command.h"
  26
  27/*
  28 * Overall FIXMEs:
  29 *  - respect DB_ENVIRONMENT for .git/objects.
  30 *
  31 * Implementation notes:
  32 *  - dropping use-separate-remote and no-separate-remote compatibility
  33 *
  34 */
  35static const char * const builtin_clone_usage[] = {
  36        "git clone [options] [--] <repo> [<dir>]",
  37        NULL
  38};
  39
  40static int option_quiet, option_no_checkout, option_bare, option_mirror;
  41static int option_local, option_no_hardlinks, option_shared, option_recursive;
  42static char *option_template, *option_reference, *option_depth;
  43static char *option_origin = NULL;
  44static char *option_branch = NULL;
  45static char *option_upload_pack = "git-upload-pack";
  46static int option_verbose;
  47
  48static struct option builtin_clone_options[] = {
  49        OPT__QUIET(&option_quiet),
  50        OPT__VERBOSE(&option_verbose),
  51        OPT_BOOLEAN('n', "no-checkout", &option_no_checkout,
  52                    "don't create a checkout"),
  53        OPT_BOOLEAN(0, "bare", &option_bare, "create a bare repository"),
  54        OPT_BOOLEAN(0, "naked", &option_bare, "create a bare repository"),
  55        OPT_BOOLEAN(0, "mirror", &option_mirror,
  56                    "create a mirror repository (implies bare)"),
  57        OPT_BOOLEAN('l', "local", &option_local,
  58                    "to clone from a local repository"),
  59        OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks,
  60                    "don't use local hardlinks, always copy"),
  61        OPT_BOOLEAN('s', "shared", &option_shared,
  62                    "setup as shared repository"),
  63        OPT_BOOLEAN(0, "recursive", &option_recursive,
  64                    "setup as shared repository"),
  65        OPT_STRING(0, "template", &option_template, "path",
  66                   "path the template repository"),
  67        OPT_STRING(0, "reference", &option_reference, "repo",
  68                   "reference repository"),
  69        OPT_STRING('o', "origin", &option_origin, "branch",
  70                   "use <branch> instead of 'origin' to track upstream"),
  71        OPT_STRING('b', "branch", &option_branch, "branch",
  72                   "checkout <branch> instead of the remote's HEAD"),
  73        OPT_STRING('u', "upload-pack", &option_upload_pack, "path",
  74                   "path to git-upload-pack on the remote"),
  75        OPT_STRING(0, "depth", &option_depth, "depth",
  76                    "create a shallow clone of that depth"),
  77
  78        OPT_END()
  79};
  80
  81static const char *argv_submodule[] = {
  82        "submodule", "update", "--init", "--recursive", NULL
  83};
  84
  85static char *get_repo_path(const char *repo, int *is_bundle)
  86{
  87        static char *suffix[] = { "/.git", ".git", "" };
  88        static char *bundle_suffix[] = { ".bundle", "" };
  89        struct stat st;
  90        int i;
  91
  92        for (i = 0; i < ARRAY_SIZE(suffix); i++) {
  93                const char *path;
  94                path = mkpath("%s%s", repo, suffix[i]);
  95                if (is_directory(path)) {
  96                        *is_bundle = 0;
  97                        return xstrdup(make_nonrelative_path(path));
  98                }
  99        }
 100
 101        for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
 102                const char *path;
 103                path = mkpath("%s%s", repo, bundle_suffix[i]);
 104                if (!stat(path, &st) && S_ISREG(st.st_mode)) {
 105                        *is_bundle = 1;
 106                        return xstrdup(make_nonrelative_path(path));
 107                }
 108        }
 109
 110        return NULL;
 111}
 112
 113static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
 114{
 115        const char *end = repo + strlen(repo), *start;
 116        char *dir;
 117
 118        /*
 119         * Strip trailing spaces, slashes and /.git
 120         */
 121        while (repo < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
 122                end--;
 123        if (end - repo > 5 && is_dir_sep(end[-5]) &&
 124            !strncmp(end - 4, ".git", 4)) {
 125                end -= 5;
 126                while (repo < end && is_dir_sep(end[-1]))
 127                        end--;
 128        }
 129
 130        /*
 131         * Find last component, but be prepared that repo could have
 132         * the form  "remote.example.com:foo.git", i.e. no slash
 133         * in the directory part.
 134         */
 135        start = end;
 136        while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
 137                start--;
 138
 139        /*
 140         * Strip .{bundle,git}.
 141         */
 142        if (is_bundle) {
 143                if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
 144                        end -= 7;
 145        } else {
 146                if (end - start > 4 && !strncmp(end - 4, ".git", 4))
 147                        end -= 4;
 148        }
 149
 150        if (is_bare) {
 151                struct strbuf result = STRBUF_INIT;
 152                strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
 153                dir = strbuf_detach(&result, NULL);
 154        } else
 155                dir = xstrndup(start, end - start);
 156        /*
 157         * Replace sequences of 'control' characters and whitespace
 158         * with one ascii space, remove leading and trailing spaces.
 159         */
 160        if (*dir) {
 161                char *out = dir;
 162                int prev_space = 1 /* strip leading whitespace */;
 163                for (end = dir; *end; ++end) {
 164                        char ch = *end;
 165                        if ((unsigned char)ch < '\x20')
 166                                ch = '\x20';
 167                        if (isspace(ch)) {
 168                                if (prev_space)
 169                                        continue;
 170                                prev_space = 1;
 171                        } else
 172                                prev_space = 0;
 173                        *out++ = ch;
 174                }
 175                *out = '\0';
 176                if (out > dir && prev_space)
 177                        out[-1] = '\0';
 178        }
 179        return dir;
 180}
 181
 182static void strip_trailing_slashes(char *dir)
 183{
 184        char *end = dir + strlen(dir);
 185
 186        while (dir < end - 1 && is_dir_sep(end[-1]))
 187                end--;
 188        *end = '\0';
 189}
 190
 191static void setup_reference(const char *repo)
 192{
 193        const char *ref_git;
 194        char *ref_git_copy;
 195
 196        struct remote *remote;
 197        struct transport *transport;
 198        const struct ref *extra;
 199
 200        ref_git = make_absolute_path(option_reference);
 201
 202        if (is_directory(mkpath("%s/.git/objects", ref_git)))
 203                ref_git = mkpath("%s/.git", ref_git);
 204        else if (!is_directory(mkpath("%s/objects", ref_git)))
 205                die("reference repository '%s' is not a local directory.",
 206                    option_reference);
 207
 208        ref_git_copy = xstrdup(ref_git);
 209
 210        add_to_alternates_file(ref_git_copy);
 211
 212        remote = remote_get(ref_git_copy);
 213        transport = transport_get(remote, ref_git_copy);
 214        for (extra = transport_get_remote_refs(transport); extra;
 215             extra = extra->next)
 216                add_extra_ref(extra->name, extra->old_sha1, 0);
 217
 218        transport_disconnect(transport);
 219
 220        free(ref_git_copy);
 221}
 222
 223static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest)
 224{
 225        struct dirent *de;
 226        struct stat buf;
 227        int src_len, dest_len;
 228        DIR *dir;
 229
 230        dir = opendir(src->buf);
 231        if (!dir)
 232                die_errno("failed to open '%s'", src->buf);
 233
 234        if (mkdir(dest->buf, 0777)) {
 235                if (errno != EEXIST)
 236                        die_errno("failed to create directory '%s'", dest->buf);
 237                else if (stat(dest->buf, &buf))
 238                        die_errno("failed to stat '%s'", dest->buf);
 239                else if (!S_ISDIR(buf.st_mode))
 240                        die("%s exists and is not a directory", dest->buf);
 241        }
 242
 243        strbuf_addch(src, '/');
 244        src_len = src->len;
 245        strbuf_addch(dest, '/');
 246        dest_len = dest->len;
 247
 248        while ((de = readdir(dir)) != NULL) {
 249                strbuf_setlen(src, src_len);
 250                strbuf_addstr(src, de->d_name);
 251                strbuf_setlen(dest, dest_len);
 252                strbuf_addstr(dest, de->d_name);
 253                if (stat(src->buf, &buf)) {
 254                        warning ("failed to stat %s\n", src->buf);
 255                        continue;
 256                }
 257                if (S_ISDIR(buf.st_mode)) {
 258                        if (de->d_name[0] != '.')
 259                                copy_or_link_directory(src, dest);
 260                        continue;
 261                }
 262
 263                if (unlink(dest->buf) && errno != ENOENT)
 264                        die_errno("failed to unlink '%s'", dest->buf);
 265                if (!option_no_hardlinks) {
 266                        if (!link(src->buf, dest->buf))
 267                                continue;
 268                        if (option_local)
 269                                die_errno("failed to create link '%s'", dest->buf);
 270                        option_no_hardlinks = 1;
 271                }
 272                if (copy_file_with_time(dest->buf, src->buf, 0666))
 273                        die_errno("failed to copy file to '%s'", dest->buf);
 274        }
 275        closedir(dir);
 276}
 277
 278static const struct ref *clone_local(const char *src_repo,
 279                                     const char *dest_repo)
 280{
 281        const struct ref *ret;
 282        struct strbuf src = STRBUF_INIT;
 283        struct strbuf dest = STRBUF_INIT;
 284        struct remote *remote;
 285        struct transport *transport;
 286
 287        if (option_shared)
 288                add_to_alternates_file(src_repo);
 289        else {
 290                strbuf_addf(&src, "%s/objects", src_repo);
 291                strbuf_addf(&dest, "%s/objects", dest_repo);
 292                copy_or_link_directory(&src, &dest);
 293                strbuf_release(&src);
 294                strbuf_release(&dest);
 295        }
 296
 297        remote = remote_get(src_repo);
 298        transport = transport_get(remote, src_repo);
 299        ret = transport_get_remote_refs(transport);
 300        transport_disconnect(transport);
 301        return ret;
 302}
 303
 304static const char *junk_work_tree;
 305static const char *junk_git_dir;
 306static pid_t junk_pid;
 307
 308static void remove_junk(void)
 309{
 310        struct strbuf sb = STRBUF_INIT;
 311        if (getpid() != junk_pid)
 312                return;
 313        if (junk_git_dir) {
 314                strbuf_addstr(&sb, junk_git_dir);
 315                remove_dir_recursively(&sb, 0);
 316                strbuf_reset(&sb);
 317        }
 318        if (junk_work_tree) {
 319                strbuf_addstr(&sb, junk_work_tree);
 320                remove_dir_recursively(&sb, 0);
 321                strbuf_reset(&sb);
 322        }
 323}
 324
 325static void remove_junk_on_signal(int signo)
 326{
 327        remove_junk();
 328        sigchain_pop(signo);
 329        raise(signo);
 330}
 331
 332static struct ref *wanted_peer_refs(const struct ref *refs,
 333                struct refspec *refspec)
 334{
 335        struct ref *local_refs = NULL;
 336        struct ref **tail = &local_refs;
 337
 338        get_fetch_map(refs, refspec, &tail, 0);
 339        if (!option_mirror)
 340                get_fetch_map(refs, tag_refspec, &tail, 0);
 341
 342        return local_refs;
 343}
 344
 345static void write_remote_refs(const struct ref *local_refs)
 346{
 347        const struct ref *r;
 348
 349        for (r = local_refs; r; r = r->next)
 350                add_extra_ref(r->peer_ref->name, r->old_sha1, 0);
 351
 352        pack_refs(PACK_REFS_ALL);
 353        clear_extra_refs();
 354}
 355
 356int cmd_clone(int argc, const char **argv, const char *prefix)
 357{
 358        int is_bundle = 0;
 359        struct stat buf;
 360        const char *repo_name, *repo, *work_tree, *git_dir;
 361        char *path, *dir;
 362        int dest_exists;
 363        const struct ref *refs, *remote_head;
 364        const struct ref *remote_head_points_at;
 365        const struct ref *our_head_points_at;
 366        struct ref *mapped_refs;
 367        struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
 368        struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
 369        struct transport *transport = NULL;
 370        char *src_ref_prefix = "refs/heads/";
 371        int err = 0;
 372
 373        struct refspec *refspec;
 374        const char *fetch_pattern;
 375
 376        junk_pid = getpid();
 377
 378        argc = parse_options(argc, argv, prefix, builtin_clone_options,
 379                             builtin_clone_usage, 0);
 380
 381        if (argc == 0)
 382                die("You must specify a repository to clone.");
 383
 384        if (option_mirror)
 385                option_bare = 1;
 386
 387        if (option_bare) {
 388                if (option_origin)
 389                        die("--bare and --origin %s options are incompatible.",
 390                            option_origin);
 391                option_no_checkout = 1;
 392        }
 393
 394        if (!option_origin)
 395                option_origin = "origin";
 396
 397        repo_name = argv[0];
 398
 399        path = get_repo_path(repo_name, &is_bundle);
 400        if (path)
 401                repo = xstrdup(make_nonrelative_path(repo_name));
 402        else if (!strchr(repo_name, ':'))
 403                repo = xstrdup(make_absolute_path(repo_name));
 404        else
 405                repo = repo_name;
 406
 407        if (argc == 2)
 408                dir = xstrdup(argv[1]);
 409        else
 410                dir = guess_dir_name(repo_name, is_bundle, option_bare);
 411        strip_trailing_slashes(dir);
 412
 413        dest_exists = !stat(dir, &buf);
 414        if (dest_exists && !is_empty_dir(dir))
 415                die("destination path '%s' already exists and is not "
 416                        "an empty directory.", dir);
 417
 418        strbuf_addf(&reflog_msg, "clone: from %s", repo);
 419
 420        if (option_bare)
 421                work_tree = NULL;
 422        else {
 423                work_tree = getenv("GIT_WORK_TREE");
 424                if (work_tree && !stat(work_tree, &buf))
 425                        die("working tree '%s' already exists.", work_tree);
 426        }
 427
 428        if (option_bare || work_tree)
 429                git_dir = xstrdup(dir);
 430        else {
 431                work_tree = dir;
 432                git_dir = xstrdup(mkpath("%s/.git", dir));
 433        }
 434
 435        if (!option_bare) {
 436                junk_work_tree = work_tree;
 437                if (safe_create_leading_directories_const(work_tree) < 0)
 438                        die_errno("could not create leading directories of '%s'",
 439                                  work_tree);
 440                if (!dest_exists && mkdir(work_tree, 0755))
 441                        die_errno("could not create work tree dir '%s'.",
 442                                  work_tree);
 443                set_git_work_tree(work_tree);
 444        }
 445        junk_git_dir = git_dir;
 446        atexit(remove_junk);
 447        sigchain_push_common(remove_junk_on_signal);
 448
 449        setenv(CONFIG_ENVIRONMENT, mkpath("%s/config", git_dir), 1);
 450
 451        if (safe_create_leading_directories_const(git_dir) < 0)
 452                die("could not create leading directories of '%s'", git_dir);
 453        set_git_dir(make_absolute_path(git_dir));
 454
 455        init_db(option_template, option_quiet ? INIT_DB_QUIET : 0);
 456
 457        /*
 458         * At this point, the config exists, so we do not need the
 459         * environment variable.  We actually need to unset it, too, to
 460         * re-enable parsing of the global configs.
 461         */
 462        unsetenv(CONFIG_ENVIRONMENT);
 463
 464        if (option_reference)
 465                setup_reference(git_dir);
 466
 467        git_config(git_default_config, NULL);
 468
 469        if (option_bare) {
 470                if (option_mirror)
 471                        src_ref_prefix = "refs/";
 472                strbuf_addstr(&branch_top, src_ref_prefix);
 473
 474                git_config_set("core.bare", "true");
 475        } else {
 476                strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
 477        }
 478
 479        strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
 480
 481        if (option_mirror || !option_bare) {
 482                /* Configure the remote */
 483                strbuf_addf(&key, "remote.%s.fetch", option_origin);
 484                git_config_set_multivar(key.buf, value.buf, "^$", 0);
 485                strbuf_reset(&key);
 486
 487                if (option_mirror) {
 488                        strbuf_addf(&key, "remote.%s.mirror", option_origin);
 489                        git_config_set(key.buf, "true");
 490                        strbuf_reset(&key);
 491                }
 492
 493                strbuf_addf(&key, "remote.%s.url", option_origin);
 494                git_config_set(key.buf, repo);
 495                strbuf_reset(&key);
 496        }
 497
 498        fetch_pattern = value.buf;
 499        refspec = parse_fetch_refspec(1, &fetch_pattern);
 500
 501        strbuf_reset(&value);
 502
 503        if (path && !is_bundle) {
 504                refs = clone_local(path, git_dir);
 505                mapped_refs = wanted_peer_refs(refs, refspec);
 506        } else {
 507                struct remote *remote = remote_get(argv[0]);
 508                transport = transport_get(remote, remote->url[0]);
 509
 510                if (!transport->get_refs_list || !transport->fetch)
 511                        die("Don't know how to clone %s", transport->url);
 512
 513                transport_set_option(transport, TRANS_OPT_KEEP, "yes");
 514
 515                if (option_depth)
 516                        transport_set_option(transport, TRANS_OPT_DEPTH,
 517                                             option_depth);
 518
 519                if (option_quiet)
 520                        transport->verbose = -1;
 521                else if (option_verbose)
 522                        transport->progress = 1;
 523
 524                if (option_upload_pack)
 525                        transport_set_option(transport, TRANS_OPT_UPLOADPACK,
 526                                             option_upload_pack);
 527
 528                refs = transport_get_remote_refs(transport);
 529                if (refs) {
 530                        mapped_refs = wanted_peer_refs(refs, refspec);
 531                        transport_fetch_refs(transport, mapped_refs);
 532                }
 533        }
 534
 535        if (refs) {
 536                clear_extra_refs();
 537
 538                write_remote_refs(mapped_refs);
 539
 540                remote_head = find_ref_by_name(refs, "HEAD");
 541                remote_head_points_at =
 542                        guess_remote_head(remote_head, mapped_refs, 0);
 543
 544                if (option_branch) {
 545                        struct strbuf head = STRBUF_INIT;
 546                        strbuf_addstr(&head, src_ref_prefix);
 547                        strbuf_addstr(&head, option_branch);
 548                        our_head_points_at =
 549                                find_ref_by_name(mapped_refs, head.buf);
 550                        strbuf_release(&head);
 551
 552                        if (!our_head_points_at) {
 553                                warning("Remote branch %s not found in "
 554                                        "upstream %s, using HEAD instead",
 555                                        option_branch, option_origin);
 556                                our_head_points_at = remote_head_points_at;
 557                        }
 558                }
 559                else
 560                        our_head_points_at = remote_head_points_at;
 561        }
 562        else {
 563                warning("You appear to have cloned an empty repository.");
 564                our_head_points_at = NULL;
 565                remote_head_points_at = NULL;
 566                remote_head = NULL;
 567                option_no_checkout = 1;
 568                if (!option_bare)
 569                        install_branch_config(0, "master", option_origin,
 570                                              "refs/heads/master");
 571        }
 572
 573        if (remote_head_points_at && !option_bare) {
 574                struct strbuf head_ref = STRBUF_INIT;
 575                strbuf_addstr(&head_ref, branch_top.buf);
 576                strbuf_addstr(&head_ref, "HEAD");
 577                create_symref(head_ref.buf,
 578                              remote_head_points_at->peer_ref->name,
 579                              reflog_msg.buf);
 580        }
 581
 582        if (our_head_points_at) {
 583                /* Local default branch link */
 584                create_symref("HEAD", our_head_points_at->name, NULL);
 585                if (!option_bare) {
 586                        const char *head = skip_prefix(our_head_points_at->name,
 587                                                       "refs/heads/");
 588                        update_ref(reflog_msg.buf, "HEAD",
 589                                   our_head_points_at->old_sha1,
 590                                   NULL, 0, DIE_ON_ERR);
 591                        install_branch_config(0, head, option_origin,
 592                                              our_head_points_at->name);
 593                }
 594        } else if (remote_head) {
 595                /* Source had detached HEAD pointing somewhere. */
 596                if (!option_bare) {
 597                        update_ref(reflog_msg.buf, "HEAD",
 598                                   remote_head->old_sha1,
 599                                   NULL, REF_NODEREF, DIE_ON_ERR);
 600                        our_head_points_at = remote_head;
 601                }
 602        } else {
 603                /* Nothing to checkout out */
 604                if (!option_no_checkout)
 605                        warning("remote HEAD refers to nonexistent ref, "
 606                                "unable to checkout.\n");
 607                option_no_checkout = 1;
 608        }
 609
 610        if (transport) {
 611                transport_unlock_pack(transport);
 612                transport_disconnect(transport);
 613        }
 614
 615        if (!option_no_checkout) {
 616                struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
 617                struct unpack_trees_options opts;
 618                struct tree *tree;
 619                struct tree_desc t;
 620                int fd;
 621
 622                /* We need to be in the new work tree for the checkout */
 623                setup_work_tree();
 624
 625                fd = hold_locked_index(lock_file, 1);
 626
 627                memset(&opts, 0, sizeof opts);
 628                opts.update = 1;
 629                opts.merge = 1;
 630                opts.fn = oneway_merge;
 631                opts.verbose_update = !option_quiet;
 632                opts.src_index = &the_index;
 633                opts.dst_index = &the_index;
 634
 635                tree = parse_tree_indirect(our_head_points_at->old_sha1);
 636                parse_tree(tree);
 637                init_tree_desc(&t, tree->buffer, tree->size);
 638                unpack_trees(1, &t, &opts);
 639
 640                if (write_cache(fd, active_cache, active_nr) ||
 641                    commit_locked_index(lock_file))
 642                        die("unable to write new index file");
 643
 644                err |= run_hook(NULL, "post-checkout", sha1_to_hex(null_sha1),
 645                                sha1_to_hex(our_head_points_at->old_sha1), "1",
 646                                NULL);
 647
 648                if (!err && option_recursive)
 649                        err = run_command_v_opt(argv_submodule, RUN_GIT_CMD);
 650        }
 651
 652        strbuf_release(&reflog_msg);
 653        strbuf_release(&branch_top);
 654        strbuf_release(&key);
 655        strbuf_release(&value);
 656        junk_pid = 0;
 657        return err;
 658}