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