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
8 * Clone a repository into a different directory that does not yet exist.
13 #include "parse-options.h"
14 #include "fetch-pack.h"
17 #include "tree-walk.h"
18 #include "unpack-trees.h"
19 #include "transport.h"
25 #include "run-command.h"
26 #include "connected.h"
30 * - respect DB_ENVIRONMENT for .git/objects.
32 * Implementation notes:
33 * - dropping use-separate-remote and no-separate-remote compatibility
36 static const char * const builtin_clone_usage[] = {
37 N_("git clone [<options>] [--] <repo> [<dir>]"),
41 static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
42 static int option_local = -1, option_no_hardlinks, option_shared, option_recursive;
44 static char *option_template, *option_depth, *option_since;
45 static char *option_origin = NULL;
46 static char *option_branch = NULL;
47 static struct string_list option_not = STRING_LIST_INIT_NODUP;
48 static const char *real_git_dir;
49 static char *option_upload_pack = "git-upload-pack";
50 static int option_verbosity;
51 static int option_progress = -1;
52 static struct string_list option_config;
53 static struct string_list option_reference;
54 static int option_dissociate;
56 static struct option builtin_clone_options[] = {
57 OPT__VERBOSITY(&option_verbosity),
58 OPT_BOOL(0, "progress", &option_progress,
59 N_("force progress reporting")),
60 OPT_BOOL('n', "no-checkout", &option_no_checkout,
61 N_("don't create a checkout")),
62 OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")),
63 OPT_HIDDEN_BOOL(0, "naked", &option_bare,
64 N_("create a bare repository")),
65 OPT_BOOL(0, "mirror", &option_mirror,
66 N_("create a mirror repository (implies bare)")),
67 OPT_BOOL('l', "local", &option_local,
68 N_("to clone from a local repository")),
69 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks,
70 N_("don't use local hardlinks, always copy")),
71 OPT_BOOL('s', "shared", &option_shared,
72 N_("setup as shared repository")),
73 OPT_BOOL(0, "recursive", &option_recursive,
74 N_("initialize submodules in the clone")),
75 OPT_BOOL(0, "recurse-submodules", &option_recursive,
76 N_("initialize submodules in the clone")),
77 OPT_STRING(0, "template", &option_template, N_("template-directory"),
78 N_("directory from which templates will be used")),
79 OPT_STRING_LIST(0, "reference", &option_reference, N_("repo"),
80 N_("reference repository")),
81 OPT_BOOL(0, "dissociate", &option_dissociate,
82 N_("use --reference only while cloning")),
83 OPT_STRING('o', "origin", &option_origin, N_("name"),
84 N_("use <name> instead of 'origin' to track upstream")),
85 OPT_STRING('b', "branch", &option_branch, N_("branch"),
86 N_("checkout <branch> instead of the remote's HEAD")),
87 OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
88 N_("path to git-upload-pack on the remote")),
89 OPT_STRING(0, "depth", &option_depth, N_("depth"),
90 N_("create a shallow clone of that depth")),
91 OPT_STRING(0, "shallow-since", &option_since, N_("time"),
92 N_("create a shallow clone since a specific time")),
93 OPT_STRING_LIST(0, "shallow-exclude", &option_not, N_("revision"),
94 N_("deepen history of shallow clone by excluding rev")),
95 OPT_BOOL(0, "single-branch", &option_single_branch,
96 N_("clone only one branch, HEAD or --branch")),
97 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
98 N_("separate git dir from working tree")),
99 OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
100 N_("set config inside the new repository")),
104 static const char *argv_submodule[] = {
105 "submodule", "update", "--init", "--recursive", NULL
108 static const char *get_repo_path_1(struct strbuf *path, int *is_bundle)
110 static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
111 static char *bundle_suffix[] = { ".bundle", "" };
112 size_t baselen = path->len;
116 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
117 strbuf_setlen(path, baselen);
118 strbuf_addstr(path, suffix[i]);
119 if (stat(path->buf, &st))
121 if (S_ISDIR(st.st_mode) && is_git_directory(path->buf)) {
124 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
125 /* Is it a "gitfile"? */
128 int len, fd = open(path->buf, O_RDONLY);
131 len = read_in_full(fd, signature, 8);
133 if (len != 8 || strncmp(signature, "gitdir: ", 8))
135 dst = read_gitfile(path->buf);
143 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
144 strbuf_setlen(path, baselen);
145 strbuf_addstr(path, bundle_suffix[i]);
146 if (!stat(path->buf, &st) && S_ISREG(st.st_mode)) {
155 static char *get_repo_path(const char *repo, int *is_bundle)
157 struct strbuf path = STRBUF_INIT;
161 strbuf_addstr(&path, repo);
162 raw = get_repo_path_1(&path, is_bundle);
163 canon = raw ? xstrdup(absolute_path(raw)) : NULL;
164 strbuf_release(&path);
168 static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
170 const char *end = repo + strlen(repo), *start, *ptr;
177 start = strstr(repo, "://");
184 * Skip authentication data. The stripping does happen
185 * greedily, such that we strip up to the last '@' inside
188 for (ptr = start; ptr < end && !is_dir_sep(*ptr); ptr++) {
194 * Strip trailing spaces, slashes and /.git
196 while (start < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
198 if (end - start > 5 && is_dir_sep(end[-5]) &&
199 !strncmp(end - 4, ".git", 4)) {
201 while (start < end && is_dir_sep(end[-1]))
206 * Strip trailing port number if we've got only a
207 * hostname (that is, there is no dir separator but a
208 * colon). This check is required such that we do not
209 * strip URI's like '/foo/bar:2222.git', which should
210 * result in a dir '2222' being guessed due to backwards
213 if (memchr(start, '/', end - start) == NULL
214 && memchr(start, ':', end - start) != NULL) {
216 while (start < ptr && isdigit(ptr[-1]) && ptr[-1] != ':')
218 if (start < ptr && ptr[-1] == ':')
223 * Find last component. To remain backwards compatible we
224 * also regard colons as path separators, such that
225 * cloning a repository 'foo:bar.git' would result in a
226 * directory 'bar' being guessed.
229 while (start < ptr && !is_dir_sep(ptr[-1]) && ptr[-1] != ':')
234 * Strip .{bundle,git}.
237 strip_suffix_mem(start, &len, is_bundle ? ".bundle" : ".git");
239 if (!len || (len == 1 && *start == '/'))
240 die("No directory name could be guessed.\n"
241 "Please specify a directory on the command line");
244 dir = xstrfmt("%.*s.git", (int)len, start);
246 dir = xstrndup(start, len);
248 * Replace sequences of 'control' characters and whitespace
249 * with one ascii space, remove leading and trailing spaces.
253 int prev_space = 1 /* strip leading whitespace */;
254 for (end = dir; *end; ++end) {
256 if ((unsigned char)ch < '\x20')
267 if (out > dir && prev_space)
273 static void strip_trailing_slashes(char *dir)
275 char *end = dir + strlen(dir);
277 while (dir < end - 1 && is_dir_sep(end[-1]))
282 static int add_one_reference(struct string_list_item *item, void *cb_data)
286 struct strbuf alternate = STRBUF_INIT;
288 /* Beware: read_gitfile(), real_path() and mkpath() return static buffer */
289 ref_git = xstrdup(real_path(item->string));
291 repo = read_gitfile(ref_git);
293 repo = read_gitfile(mkpath("%s/.git", ref_git));
296 ref_git = xstrdup(repo);
299 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
300 char *ref_git_git = mkpathdup("%s/.git", ref_git);
302 ref_git = ref_git_git;
303 } else if (!is_directory(mkpath("%s/objects", ref_git))) {
304 struct strbuf sb = STRBUF_INIT;
305 if (get_common_dir(&sb, ref_git))
306 die(_("reference repository '%s' as a linked checkout is not supported yet."),
308 die(_("reference repository '%s' is not a local repository."),
312 if (!access(mkpath("%s/shallow", ref_git), F_OK))
313 die(_("reference repository '%s' is shallow"), item->string);
315 if (!access(mkpath("%s/info/grafts", ref_git), F_OK))
316 die(_("reference repository '%s' is grafted"), item->string);
318 strbuf_addf(&alternate, "%s/objects", ref_git);
319 add_to_alternates_file(alternate.buf);
320 strbuf_release(&alternate);
325 static void setup_reference(void)
327 for_each_string_list(&option_reference, add_one_reference, NULL);
330 static void copy_alternates(struct strbuf *src, struct strbuf *dst,
331 const char *src_repo)
334 * Read from the source objects/info/alternates file
335 * and copy the entries to corresponding file in the
336 * destination repository with add_to_alternates_file().
337 * Both src and dst have "$path/objects/info/alternates".
339 * Instead of copying bit-for-bit from the original,
340 * we need to append to existing one so that the already
341 * created entry via "clone -s" is not lost, and also
342 * to turn entries with paths relative to the original
343 * absolute, so that they can be used in the new repository.
345 FILE *in = fopen(src->buf, "r");
346 struct strbuf line = STRBUF_INIT;
348 while (strbuf_getline(&line, in) != EOF) {
350 if (!line.len || line.buf[0] == '#')
352 if (is_absolute_path(line.buf)) {
353 add_to_alternates_file(line.buf);
356 abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf);
357 normalize_path_copy(abs_path, abs_path);
358 add_to_alternates_file(abs_path);
361 strbuf_release(&line);
365 static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
366 const char *src_repo, int src_baselen)
370 int src_len, dest_len;
373 dir = opendir(src->buf);
375 die_errno(_("failed to open '%s'"), src->buf);
377 if (mkdir(dest->buf, 0777)) {
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);
386 strbuf_addch(src, '/');
388 strbuf_addch(dest, '/');
389 dest_len = dest->len;
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);
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);
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);
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))
418 if (option_local > 0)
419 die_errno(_("failed to create link '%s'"), dest->buf);
420 option_no_hardlinks = 1;
422 if (copy_file_with_time(dest->buf, src->buf, 0666))
423 die_errno(_("failed to copy file to '%s'"), dest->buf);
428 static void clone_local(const char *src_repo, const char *dest_repo)
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);
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);
447 if (0 <= option_verbosity)
448 fprintf(stderr, _("done.\n"));
451 static const char *junk_work_tree;
452 static const char *junk_git_dir;
457 } junk_mode = JUNK_LEAVE_NONE;
459 static const char junk_leave_repo_msg[] =
460 N_("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");
464 static void remove_junk(void)
466 struct strbuf sb = STRBUF_INIT;
469 case JUNK_LEAVE_REPO:
470 warning("%s", _(junk_leave_repo_msg));
475 /* proceed to removal */
480 strbuf_addstr(&sb, junk_git_dir);
481 remove_dir_recursively(&sb, 0);
484 if (junk_work_tree) {
485 strbuf_addstr(&sb, junk_work_tree);
486 remove_dir_recursively(&sb, 0);
491 static void remove_junk_on_signal(int signo)
498 static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
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);
510 strbuf_addstr(&head, "refs/tags/");
511 strbuf_addstr(&head, branch);
512 ref = find_ref_by_name(refs, head.buf);
513 strbuf_release(&head);
518 static struct ref *wanted_peer_refs(const struct ref *refs,
519 struct refspec *refspec)
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;
525 if (option_single_branch) {
526 struct ref *remote_head = NULL;
529 remote_head = guess_remote_head(head, refs, 0);
533 remote_head = copy_ref(find_remote_branch(refs, option_branch));
536 if (!remote_head && option_branch)
537 warning(_("Could not find remote branch %s to clone."),
540 get_fetch_map(remote_head, refspec, &tail, 0);
542 /* if --branch=tag, pull the requested tag explicitly */
543 get_fetch_map(remote_head, tag_refspec, &tail, 0);
546 get_fetch_map(refs, refspec, &tail, 0);
548 if (!option_mirror && !option_single_branch)
549 get_fetch_map(refs, tag_refspec, &tail, 0);
554 static void write_remote_refs(const struct ref *local_refs)
558 struct ref_transaction *t;
559 struct strbuf err = STRBUF_INIT;
561 t = ref_transaction_begin(&err);
565 for (r = local_refs; r; r = r->next) {
568 if (ref_transaction_create(t, r->peer_ref->name, r->old_oid.hash,
573 if (initial_ref_transaction_commit(t, &err))
576 strbuf_release(&err);
577 ref_transaction_free(t);
580 static void write_followtags(const struct ref *refs, const char *msg)
582 const struct ref *ref;
583 for (ref = refs; ref; ref = ref->next) {
584 if (!starts_with(ref->name, "refs/tags/"))
586 if (ends_with(ref->name, "^{}"))
588 if (!has_object_file(&ref->old_oid))
590 update_ref(msg, ref->name, ref->old_oid.hash,
591 NULL, 0, UPDATE_REFS_DIE_ON_ERR);
595 static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
597 struct ref **rm = cb_data;
598 struct ref *ref = *rm;
601 * Skip anything missing a peer_ref, which we are not
602 * actually going to write a ref for.
604 while (ref && !ref->peer_ref)
606 /* Returning -1 notes "end of list" to the caller. */
610 hashcpy(sha1, ref->old_oid.hash);
615 static 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,
620 struct transport *transport,
621 int check_connectivity)
623 const struct ref *rm = mapped_refs;
625 if (check_connectivity) {
626 if (transport->progress)
627 fprintf(stderr, _("Checking connectivity... "));
628 if (check_everything_connected_with_transport(iterate_ref_map,
630 die(_("remote did not send all necessary objects"));
631 if (transport->progress)
632 fprintf(stderr, _("done.\n"));
636 write_remote_refs(mapped_refs);
637 if (option_single_branch)
638 write_followtags(refs, msg);
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,
648 die("unable to update %s", head_ref.buf);
649 strbuf_release(&head_ref);
653 static void update_head(const struct ref *our, const struct ref *remote,
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");
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);
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);
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.
677 update_ref(msg, "HEAD", remote->old_oid.hash,
678 NULL, REF_NODEREF, UPDATE_REFS_DIE_ON_ERR);
682 static int checkout(void)
684 unsigned char sha1[20];
686 struct lock_file *lock_file;
687 struct unpack_trees_options opts;
692 if (option_no_checkout)
695 head = resolve_refdup("HEAD", RESOLVE_REF_READING, sha1, NULL);
697 warning(_("remote HEAD refers to nonexistent ref, "
698 "unable to checkout.\n"));
701 if (!strcmp(head, "HEAD")) {
702 if (advice_detached_head)
703 detach_advice(sha1_to_hex(sha1));
705 if (!starts_with(head, "refs/heads/"))
706 die(_("HEAD not found below refs/heads!"));
710 /* We need to be in the new work tree for the checkout */
713 lock_file = xcalloc(1, sizeof(struct lock_file));
714 hold_locked_index(lock_file, 1);
716 memset(&opts, 0, sizeof opts);
719 opts.fn = oneway_merge;
720 opts.verbose_update = (option_verbosity >= 0);
721 opts.src_index = &the_index;
722 opts.dst_index = &the_index;
724 tree = parse_tree_indirect(sha1);
726 init_tree_desc(&t, tree->buffer, tree->size);
727 if (unpack_trees(1, &t, &opts) < 0)
728 die(_("unable to checkout working tree"));
730 if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
731 die(_("unable to write new index file"));
733 err |= run_hook_le(NULL, "post-checkout", sha1_to_hex(null_sha1),
734 sha1_to_hex(sha1), "1", NULL);
736 if (!err && option_recursive)
737 err = run_command_v_opt(argv_submodule, RUN_GIT_CMD);
742 static int write_one_config(const char *key, const char *value, void *data)
744 return git_config_set_multivar(key, value ? value : "true", "^$", 0);
747 static void write_config(struct string_list *config)
751 for (i = 0; i < config->nr; i++) {
752 if (git_config_parse_parameter(config->items[i].string,
753 write_one_config, NULL) < 0)
754 die("unable to write parameters to config file");
758 static void write_refspec_config(const char *src_ref_prefix,
759 const struct ref *our_head_points_at,
760 const struct ref *remote_head_points_at,
761 struct strbuf *branch_top)
763 struct strbuf key = STRBUF_INIT;
764 struct strbuf value = STRBUF_INIT;
766 if (option_mirror || !option_bare) {
767 if (option_single_branch && !option_mirror) {
769 if (starts_with(our_head_points_at->name, "refs/tags/"))
770 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
771 our_head_points_at->name);
773 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
774 branch_top->buf, option_branch);
775 } else if (remote_head_points_at) {
776 const char *head = remote_head_points_at->name;
777 if (!skip_prefix(head, "refs/heads/", &head))
778 die("BUG: remote HEAD points at non-head?");
780 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
781 branch_top->buf, head);
784 * otherwise, the next "git fetch" will
785 * simply fetch from HEAD without updating
786 * any remote-tracking branch, which is what
790 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
792 /* Configure the remote */
794 strbuf_addf(&key, "remote.%s.fetch", option_origin);
795 git_config_set_multivar(key.buf, value.buf, "^$", 0);
799 strbuf_addf(&key, "remote.%s.mirror", option_origin);
800 git_config_set(key.buf, "true");
806 strbuf_release(&key);
807 strbuf_release(&value);
810 static void dissociate_from_references(void)
812 static const char* argv[] = { "repack", "-a", "-d", NULL };
813 char *alternates = git_pathdup("objects/info/alternates");
815 if (!access(alternates, F_OK)) {
816 if (run_command_v_opt(argv, RUN_GIT_CMD|RUN_COMMAND_NO_STDIN))
817 die(_("cannot repack to clean up"));
818 if (unlink(alternates) && errno != ENOENT)
819 die_errno(_("cannot unlink temporary alternates file"));
824 int cmd_clone(int argc, const char **argv, const char *prefix)
826 int is_bundle = 0, is_local;
828 const char *repo_name, *repo, *work_tree, *git_dir;
831 const struct ref *refs, *remote_head;
832 const struct ref *remote_head_points_at;
833 const struct ref *our_head_points_at;
834 struct ref *mapped_refs;
835 const struct ref *ref;
836 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
837 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
838 struct transport *transport = NULL;
839 const char *src_ref_prefix = "refs/heads/";
840 struct remote *remote;
841 int err = 0, complete_refs_before_fetch = 1;
843 struct refspec *refspec;
844 const char *fetch_pattern;
846 packet_trace_identity("clone");
847 argc = parse_options(argc, argv, prefix, builtin_clone_options,
848 builtin_clone_usage, 0);
851 usage_msg_opt(_("Too many arguments."),
852 builtin_clone_usage, builtin_clone_options);
855 usage_msg_opt(_("You must specify a repository to clone."),
856 builtin_clone_usage, builtin_clone_options);
858 if (option_depth || option_since || option_not.nr)
860 if (option_single_branch == -1)
861 option_single_branch = deepen ? 1 : 0;
868 die(_("--bare and --origin %s options are incompatible."),
871 die(_("--bare and --separate-git-dir are incompatible."));
872 option_no_checkout = 1;
876 option_origin = "origin";
880 path = get_repo_path(repo_name, &is_bundle);
882 repo = xstrdup(absolute_path(repo_name));
883 else if (!strchr(repo_name, ':'))
884 die(_("repository '%s' does not exist"), repo_name);
888 /* no need to be strict, transport_set_option() will validate it again */
889 if (option_depth && atoi(option_depth) < 1)
890 die(_("depth %s is not a positive number"), option_depth);
893 dir = xstrdup(argv[1]);
895 dir = guess_dir_name(repo_name, is_bundle, option_bare);
896 strip_trailing_slashes(dir);
898 dest_exists = !stat(dir, &buf);
899 if (dest_exists && !is_empty_dir(dir))
900 die(_("destination path '%s' already exists and is not "
901 "an empty directory."), dir);
903 strbuf_addf(&reflog_msg, "clone: from %s", repo);
908 work_tree = getenv("GIT_WORK_TREE");
909 if (work_tree && !stat(work_tree, &buf))
910 die(_("working tree '%s' already exists."), work_tree);
913 if (option_bare || work_tree)
914 git_dir = xstrdup(dir);
917 git_dir = mkpathdup("%s/.git", dir);
921 sigchain_push_common(remove_junk_on_signal);
924 if (safe_create_leading_directories_const(work_tree) < 0)
925 die_errno(_("could not create leading directories of '%s'"),
927 if (!dest_exists && mkdir(work_tree, 0777))
928 die_errno(_("could not create work tree dir '%s'"),
930 junk_work_tree = work_tree;
931 set_git_work_tree(work_tree);
934 junk_git_dir = git_dir;
935 if (safe_create_leading_directories_const(git_dir) < 0)
936 die(_("could not create leading directories of '%s'"), git_dir);
938 set_git_dir_init(git_dir, real_git_dir, 0);
940 git_dir = real_git_dir;
941 junk_git_dir = real_git_dir;
944 if (0 <= option_verbosity) {
946 fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
948 fprintf(stderr, _("Cloning into '%s'...\n"), dir);
950 init_db(option_template, INIT_DB_QUIET);
951 write_config(&option_config);
953 git_config(git_default_config, NULL);
957 src_ref_prefix = "refs/";
958 strbuf_addstr(&branch_top, src_ref_prefix);
960 git_config_set("core.bare", "true");
962 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
965 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
966 strbuf_addf(&key, "remote.%s.url", option_origin);
967 git_config_set(key.buf, repo);
970 if (option_reference.nr)
973 fetch_pattern = value.buf;
974 refspec = parse_fetch_refspec(1, &fetch_pattern);
976 strbuf_reset(&value);
978 remote = remote_get(option_origin);
979 transport = transport_get(remote, remote->url[0]);
980 transport_set_verbosity(transport, option_verbosity, option_progress);
982 path = get_repo_path(remote->url[0], &is_bundle);
983 is_local = option_local != 0 && path && !is_bundle;
986 warning(_("--depth is ignored in local clones; use file:// instead."));
988 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
990 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
991 if (!access(mkpath("%s/shallow", path), F_OK)) {
992 if (option_local > 0)
993 warning(_("source repository is shallow, ignoring --local"));
997 if (option_local > 0 && !is_local)
998 warning(_("--local is ignored"));
999 transport->cloning = 1;
1001 if (!transport->get_refs_list || (!is_local && !transport->fetch))
1002 die(_("Don't know how to clone %s"), transport->url);
1004 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
1007 transport_set_option(transport, TRANS_OPT_DEPTH,
1010 transport_set_option(transport, TRANS_OPT_DEEPEN_SINCE,
1013 transport_set_option(transport, TRANS_OPT_DEEPEN_NOT,
1014 (const char *)&option_not);
1015 if (option_single_branch)
1016 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1018 if (option_upload_pack)
1019 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
1020 option_upload_pack);
1022 if (transport->smart_options && !deepen)
1023 transport->smart_options->check_self_contained_and_connected = 1;
1025 refs = transport_get_remote_refs(transport);
1028 mapped_refs = wanted_peer_refs(refs, refspec);
1030 * transport_get_remote_refs() may return refs with null sha-1
1031 * in mapped_refs (see struct transport->get_refs_list
1032 * comment). In that case we need fetch it early because
1033 * remote_head code below relies on it.
1035 * for normal clones, transport_get_remote_refs() should
1036 * return reliable ref set, we can delay cloning until after
1037 * remote HEAD check.
1039 for (ref = refs; ref; ref = ref->next)
1040 if (is_null_oid(&ref->old_oid)) {
1041 complete_refs_before_fetch = 0;
1045 if (!is_local && !complete_refs_before_fetch)
1046 transport_fetch_refs(transport, mapped_refs);
1048 remote_head = find_ref_by_name(refs, "HEAD");
1049 remote_head_points_at =
1050 guess_remote_head(remote_head, mapped_refs, 0);
1052 if (option_branch) {
1053 our_head_points_at =
1054 find_remote_branch(mapped_refs, option_branch);
1056 if (!our_head_points_at)
1057 die(_("Remote branch %s not found in upstream %s"),
1058 option_branch, option_origin);
1061 our_head_points_at = remote_head_points_at;
1065 die(_("Remote branch %s not found in upstream %s"),
1066 option_branch, option_origin);
1068 warning(_("You appear to have cloned an empty repository."));
1070 our_head_points_at = NULL;
1071 remote_head_points_at = NULL;
1073 option_no_checkout = 1;
1075 install_branch_config(0, "master", option_origin,
1076 "refs/heads/master");
1079 write_refspec_config(src_ref_prefix, our_head_points_at,
1080 remote_head_points_at, &branch_top);
1083 clone_local(path, git_dir);
1084 else if (refs && complete_refs_before_fetch)
1085 transport_fetch_refs(transport, mapped_refs);
1087 update_remote_refs(refs, mapped_refs, remote_head_points_at,
1088 branch_top.buf, reflog_msg.buf, transport, !is_local);
1090 update_head(our_head_points_at, remote_head, reflog_msg.buf);
1092 transport_unlock_pack(transport);
1093 transport_disconnect(transport);
1095 if (option_dissociate) {
1097 dissociate_from_references();
1100 junk_mode = JUNK_LEAVE_REPO;
1103 strbuf_release(&reflog_msg);
1104 strbuf_release(&branch_top);
1105 strbuf_release(&key);
1106 strbuf_release(&value);
1107 junk_mode = JUNK_LEAVE_ALL;