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