another batch after 2.47-rc0
[alt-git.git] / builtin / clone.c
blobe77339c84720f244f7789cef55f1cbd97c6ab9c8
1 /*
2 * Builtin "git clone"
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.
9 */
10 #define USE_THE_REPOSITORY_VARIABLE
11 #include "builtin.h"
13 #include "abspath.h"
14 #include "advice.h"
15 #include "config.h"
16 #include "copy.h"
17 #include "environment.h"
18 #include "gettext.h"
19 #include "hex.h"
20 #include "lockfile.h"
21 #include "parse-options.h"
22 #include "refs.h"
23 #include "refspec.h"
24 #include "object-file.h"
25 #include "object-store-ll.h"
26 #include "tree.h"
27 #include "tree-walk.h"
28 #include "unpack-trees.h"
29 #include "transport.h"
30 #include "strbuf.h"
31 #include "dir.h"
32 #include "dir-iterator.h"
33 #include "iterator.h"
34 #include "sigchain.h"
35 #include "branch.h"
36 #include "remote.h"
37 #include "run-command.h"
38 #include "setup.h"
39 #include "connected.h"
40 #include "packfile.h"
41 #include "path.h"
42 #include "pkt-line.h"
43 #include "list-objects-filter-options.h"
44 #include "hook.h"
45 #include "bundle.h"
46 #include "bundle-uri.h"
49 * Overall FIXMEs:
50 * - respect DB_ENVIRONMENT for .git/objects.
52 * Implementation notes:
53 * - dropping use-separate-remote and no-separate-remote compatibility
56 static const char * const builtin_clone_usage[] = {
57 N_("git clone [<options>] [--] <repo> [<dir>]"),
58 NULL
61 static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
62 static int option_local = -1, option_no_hardlinks, option_shared;
63 static int option_no_tags;
64 static int option_shallow_submodules;
65 static int option_reject_shallow = -1; /* unspecified */
66 static int config_reject_shallow = -1; /* unspecified */
67 static int deepen;
68 static char *option_template, *option_depth, *option_since;
69 static char *option_origin = NULL;
70 static char *remote_name = NULL;
71 static char *option_branch = NULL;
72 static struct string_list option_not = STRING_LIST_INIT_NODUP;
73 static const char *real_git_dir;
74 static const char *ref_format;
75 static const char *option_upload_pack = "git-upload-pack";
76 static int option_verbosity;
77 static int option_progress = -1;
78 static int option_sparse_checkout;
79 static enum transport_family family;
80 static struct string_list option_config = STRING_LIST_INIT_NODUP;
81 static struct string_list option_required_reference = STRING_LIST_INIT_NODUP;
82 static struct string_list option_optional_reference = STRING_LIST_INIT_NODUP;
83 static int option_dissociate;
84 static int max_jobs = -1;
85 static struct string_list option_recurse_submodules = STRING_LIST_INIT_NODUP;
86 static struct list_objects_filter_options filter_options = LIST_OBJECTS_FILTER_INIT;
87 static int option_filter_submodules = -1; /* unspecified */
88 static int config_filter_submodules = -1; /* unspecified */
89 static struct string_list server_options = STRING_LIST_INIT_NODUP;
90 static int option_remote_submodules;
91 static const char *bundle_uri;
93 static int recurse_submodules_cb(const struct option *opt,
94 const char *arg, int unset)
96 if (unset)
97 string_list_clear((struct string_list *)opt->value, 0);
98 else if (arg)
99 string_list_append((struct string_list *)opt->value, arg);
100 else
101 string_list_append((struct string_list *)opt->value,
102 (const char *)opt->defval);
104 return 0;
107 static struct option builtin_clone_options[] = {
108 OPT__VERBOSITY(&option_verbosity),
109 OPT_BOOL(0, "progress", &option_progress,
110 N_("force progress reporting")),
111 OPT_BOOL(0, "reject-shallow", &option_reject_shallow,
112 N_("don't clone shallow repository")),
113 OPT_BOOL('n', "no-checkout", &option_no_checkout,
114 N_("don't create a checkout")),
115 OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")),
116 OPT_HIDDEN_BOOL(0, "naked", &option_bare,
117 N_("create a bare repository")),
118 OPT_BOOL(0, "mirror", &option_mirror,
119 N_("create a mirror repository (implies --bare)")),
120 OPT_BOOL('l', "local", &option_local,
121 N_("to clone from a local repository")),
122 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks,
123 N_("don't use local hardlinks, always copy")),
124 OPT_BOOL('s', "shared", &option_shared,
125 N_("setup as shared repository")),
126 { OPTION_CALLBACK, 0, "recurse-submodules", &option_recurse_submodules,
127 N_("pathspec"), N_("initialize submodules in the clone"),
128 PARSE_OPT_OPTARG, recurse_submodules_cb, (intptr_t)"." },
129 OPT_ALIAS(0, "recursive", "recurse-submodules"),
130 OPT_INTEGER('j', "jobs", &max_jobs,
131 N_("number of submodules cloned in parallel")),
132 OPT_STRING(0, "template", &option_template, N_("template-directory"),
133 N_("directory from which templates will be used")),
134 OPT_STRING_LIST(0, "reference", &option_required_reference, N_("repo"),
135 N_("reference repository")),
136 OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference,
137 N_("repo"), N_("reference repository")),
138 OPT_BOOL(0, "dissociate", &option_dissociate,
139 N_("use --reference only while cloning")),
140 OPT_STRING('o', "origin", &option_origin, N_("name"),
141 N_("use <name> instead of 'origin' to track upstream")),
142 OPT_STRING('b', "branch", &option_branch, N_("branch"),
143 N_("checkout <branch> instead of the remote's HEAD")),
144 OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
145 N_("path to git-upload-pack on the remote")),
146 OPT_STRING(0, "depth", &option_depth, N_("depth"),
147 N_("create a shallow clone of that depth")),
148 OPT_STRING(0, "shallow-since", &option_since, N_("time"),
149 N_("create a shallow clone since a specific time")),
150 OPT_STRING_LIST(0, "shallow-exclude", &option_not, N_("revision"),
151 N_("deepen history of shallow clone, excluding rev")),
152 OPT_BOOL(0, "single-branch", &option_single_branch,
153 N_("clone only one branch, HEAD or --branch")),
154 OPT_BOOL(0, "no-tags", &option_no_tags,
155 N_("don't clone any tags, and make later fetches not to follow them")),
156 OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules,
157 N_("any cloned submodules will be shallow")),
158 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
159 N_("separate git dir from working tree")),
160 OPT_STRING(0, "ref-format", &ref_format, N_("format"),
161 N_("specify the reference format to use")),
162 OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
163 N_("set config inside the new repository")),
164 OPT_STRING_LIST(0, "server-option", &server_options,
165 N_("server-specific"), N_("option to transmit")),
166 OPT_IPVERSION(&family),
167 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
168 OPT_BOOL(0, "also-filter-submodules", &option_filter_submodules,
169 N_("apply partial clone filters to submodules")),
170 OPT_BOOL(0, "remote-submodules", &option_remote_submodules,
171 N_("any cloned submodules will use their remote-tracking branch")),
172 OPT_BOOL(0, "sparse", &option_sparse_checkout,
173 N_("initialize sparse-checkout file to include only files at root")),
174 OPT_STRING(0, "bundle-uri", &bundle_uri,
175 N_("uri"), N_("a URI for downloading bundles before fetching from origin remote")),
176 OPT_END()
179 static const char *get_repo_path_1(struct strbuf *path, int *is_bundle)
181 static const char *suffix[] = { "/.git", "", ".git/.git", ".git" };
182 static const char *bundle_suffix[] = { ".bundle", "" };
183 size_t baselen = path->len;
184 struct stat st;
185 int i;
187 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
188 strbuf_setlen(path, baselen);
189 strbuf_addstr(path, suffix[i]);
190 if (stat(path->buf, &st))
191 continue;
192 if (S_ISDIR(st.st_mode) && is_git_directory(path->buf)) {
193 *is_bundle = 0;
194 return path->buf;
195 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
196 /* Is it a "gitfile"? */
197 char signature[8];
198 const char *dst;
199 int len, fd = open(path->buf, O_RDONLY);
200 if (fd < 0)
201 continue;
202 len = read_in_full(fd, signature, 8);
203 close(fd);
204 if (len != 8 || strncmp(signature, "gitdir: ", 8))
205 continue;
206 dst = read_gitfile(path->buf);
207 if (dst) {
208 *is_bundle = 0;
209 return dst;
214 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
215 strbuf_setlen(path, baselen);
216 strbuf_addstr(path, bundle_suffix[i]);
217 if (!stat(path->buf, &st) && S_ISREG(st.st_mode)) {
218 *is_bundle = 1;
219 return path->buf;
223 return NULL;
226 static char *get_repo_path(const char *repo, int *is_bundle)
228 struct strbuf path = STRBUF_INIT;
229 const char *raw;
230 char *canon;
232 strbuf_addstr(&path, repo);
233 raw = get_repo_path_1(&path, is_bundle);
234 canon = raw ? absolute_pathdup(raw) : NULL;
235 strbuf_release(&path);
236 return canon;
239 static int add_one_reference(struct string_list_item *item, void *cb_data)
241 struct strbuf err = STRBUF_INIT;
242 int *required = cb_data;
243 char *ref_git = compute_alternate_path(item->string, &err);
245 if (!ref_git) {
246 if (*required)
247 die("%s", err.buf);
248 else
249 fprintf(stderr,
250 _("info: Could not add alternate for '%s': %s\n"),
251 item->string, err.buf);
252 } else {
253 struct strbuf sb = STRBUF_INIT;
254 strbuf_addf(&sb, "%s/objects", ref_git);
255 add_to_alternates_file(sb.buf);
256 strbuf_release(&sb);
259 strbuf_release(&err);
260 free(ref_git);
261 return 0;
264 static void setup_reference(void)
266 int required = 1;
267 for_each_string_list(&option_required_reference,
268 add_one_reference, &required);
269 required = 0;
270 for_each_string_list(&option_optional_reference,
271 add_one_reference, &required);
274 static void copy_alternates(struct strbuf *src, const char *src_repo)
277 * Read from the source objects/info/alternates file
278 * and copy the entries to corresponding file in the
279 * destination repository with add_to_alternates_file().
280 * Both src and dst have "$path/objects/info/alternates".
282 * Instead of copying bit-for-bit from the original,
283 * we need to append to existing one so that the already
284 * created entry via "clone -s" is not lost, and also
285 * to turn entries with paths relative to the original
286 * absolute, so that they can be used in the new repository.
288 FILE *in = xfopen(src->buf, "r");
289 struct strbuf line = STRBUF_INIT;
291 while (strbuf_getline(&line, in) != EOF) {
292 char *abs_path;
293 if (!line.len || line.buf[0] == '#')
294 continue;
295 if (is_absolute_path(line.buf)) {
296 add_to_alternates_file(line.buf);
297 continue;
299 abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf);
300 if (!normalize_path_copy(abs_path, abs_path))
301 add_to_alternates_file(abs_path);
302 else
303 warning("skipping invalid relative alternate: %s/%s",
304 src_repo, line.buf);
305 free(abs_path);
307 strbuf_release(&line);
308 fclose(in);
311 static void mkdir_if_missing(const char *pathname, mode_t mode)
313 struct stat st;
315 if (!mkdir(pathname, mode))
316 return;
318 if (errno != EEXIST)
319 die_errno(_("failed to create directory '%s'"), pathname);
320 else if (stat(pathname, &st))
321 die_errno(_("failed to stat '%s'"), pathname);
322 else if (!S_ISDIR(st.st_mode))
323 die(_("%s exists and is not a directory"), pathname);
326 static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
327 const char *src_repo)
329 int src_len, dest_len;
330 struct dir_iterator *iter;
331 int iter_status;
334 * Refuse copying directories by default which aren't owned by us. The
335 * code that performs either the copying or hardlinking is not prepared
336 * to handle various edge cases where an adversary may for example
337 * racily swap out files for symlinks. This can cause us to
338 * inadvertently use the wrong source file.
340 * Furthermore, even if we were prepared to handle such races safely,
341 * creating hardlinks across user boundaries is an inherently unsafe
342 * operation as the hardlinked files can be rewritten at will by the
343 * potentially-untrusted user. We thus refuse to do so by default.
345 die_upon_dubious_ownership(NULL, NULL, src_repo);
347 mkdir_if_missing(dest->buf, 0777);
349 iter = dir_iterator_begin(src->buf, DIR_ITERATOR_PEDANTIC);
351 if (!iter) {
352 if (errno == ENOTDIR) {
353 int saved_errno = errno;
354 struct stat st;
356 if (!lstat(src->buf, &st) && S_ISLNK(st.st_mode))
357 die(_("'%s' is a symlink, refusing to clone with --local"),
358 src->buf);
359 errno = saved_errno;
361 die_errno(_("failed to start iterator over '%s'"), src->buf);
364 strbuf_addch(src, '/');
365 src_len = src->len;
366 strbuf_addch(dest, '/');
367 dest_len = dest->len;
369 while ((iter_status = dir_iterator_advance(iter)) == ITER_OK) {
370 strbuf_setlen(src, src_len);
371 strbuf_addstr(src, iter->relative_path);
372 strbuf_setlen(dest, dest_len);
373 strbuf_addstr(dest, iter->relative_path);
375 if (S_ISLNK(iter->st.st_mode))
376 die(_("symlink '%s' exists, refusing to clone with --local"),
377 iter->relative_path);
379 if (S_ISDIR(iter->st.st_mode)) {
380 mkdir_if_missing(dest->buf, 0777);
381 continue;
384 /* Files that cannot be copied bit-for-bit... */
385 if (!fspathcmp(iter->relative_path, "info/alternates")) {
386 copy_alternates(src, src_repo);
387 continue;
390 if (unlink(dest->buf) && errno != ENOENT)
391 die_errno(_("failed to unlink '%s'"), dest->buf);
392 if (!option_no_hardlinks) {
393 if (!link(src->buf, dest->buf)) {
394 struct stat st;
397 * Sanity-check whether the created hardlink
398 * actually links to the expected file now. This
399 * catches time-of-check-time-of-use bugs in
400 * case the source file was meanwhile swapped.
402 if (lstat(dest->buf, &st))
403 die(_("hardlink cannot be checked at '%s'"), dest->buf);
404 if (st.st_mode != iter->st.st_mode ||
405 st.st_ino != iter->st.st_ino ||
406 st.st_dev != iter->st.st_dev ||
407 st.st_size != iter->st.st_size ||
408 st.st_uid != iter->st.st_uid ||
409 st.st_gid != iter->st.st_gid)
410 die(_("hardlink different from source at '%s'"), dest->buf);
412 continue;
414 if (option_local > 0)
415 die_errno(_("failed to create link '%s'"), dest->buf);
416 option_no_hardlinks = 1;
418 if (copy_file_with_time(dest->buf, src->buf, 0666))
419 die_errno(_("failed to copy file to '%s'"), dest->buf);
422 if (iter_status != ITER_DONE) {
423 strbuf_setlen(src, src_len);
424 die(_("failed to iterate over '%s'"), src->buf);
428 static void clone_local(const char *src_repo, const char *dest_repo)
430 if (option_shared) {
431 struct strbuf alt = STRBUF_INIT;
432 get_common_dir(&alt, src_repo);
433 strbuf_addstr(&alt, "/objects");
434 add_to_alternates_file(alt.buf);
435 strbuf_release(&alt);
436 } else {
437 struct strbuf src = STRBUF_INIT;
438 struct strbuf dest = STRBUF_INIT;
439 get_common_dir(&src, src_repo);
440 get_common_dir(&dest, dest_repo);
441 strbuf_addstr(&src, "/objects");
442 strbuf_addstr(&dest, "/objects");
443 copy_or_link_directory(&src, &dest, src_repo);
444 strbuf_release(&src);
445 strbuf_release(&dest);
448 if (0 <= option_verbosity)
449 fprintf(stderr, _("done.\n"));
452 static const char *junk_work_tree;
453 static int junk_work_tree_flags;
454 static const char *junk_git_dir;
455 static int junk_git_dir_flags;
456 static enum {
457 JUNK_LEAVE_NONE,
458 JUNK_LEAVE_REPO,
459 JUNK_LEAVE_ALL
460 } junk_mode = JUNK_LEAVE_NONE;
462 static const char junk_leave_repo_msg[] =
463 N_("Clone succeeded, but checkout failed.\n"
464 "You can inspect what was checked out with 'git status'\n"
465 "and retry with 'git restore --source=HEAD :/'\n");
467 static void remove_junk(void)
469 struct strbuf sb = STRBUF_INIT;
471 switch (junk_mode) {
472 case JUNK_LEAVE_REPO:
473 warning("%s", _(junk_leave_repo_msg));
474 /* fall-through */
475 case JUNK_LEAVE_ALL:
476 return;
477 default:
478 /* proceed to removal */
479 break;
482 if (junk_git_dir) {
483 strbuf_addstr(&sb, junk_git_dir);
484 remove_dir_recursively(&sb, junk_git_dir_flags);
485 strbuf_reset(&sb);
487 if (junk_work_tree) {
488 strbuf_addstr(&sb, junk_work_tree);
489 remove_dir_recursively(&sb, junk_work_tree_flags);
491 strbuf_release(&sb);
494 static void remove_junk_on_signal(int signo)
496 remove_junk();
497 sigchain_pop(signo);
498 raise(signo);
501 static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
503 struct ref *ref;
504 struct strbuf head = STRBUF_INIT;
505 strbuf_addstr(&head, "refs/heads/");
506 strbuf_addstr(&head, branch);
507 ref = find_ref_by_name(refs, head.buf);
508 strbuf_release(&head);
510 if (ref)
511 return ref;
513 strbuf_addstr(&head, "refs/tags/");
514 strbuf_addstr(&head, branch);
515 ref = find_ref_by_name(refs, head.buf);
516 strbuf_release(&head);
518 return ref;
521 static struct ref *wanted_peer_refs(const struct ref *refs,
522 struct refspec *refspec)
524 struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
525 struct ref *local_refs = head;
526 struct ref **tail = head ? &head->next : &local_refs;
527 struct refspec_item tag_refspec;
529 refspec_item_init(&tag_refspec, TAG_REFSPEC, 0);
531 if (option_single_branch) {
532 struct ref *remote_head = NULL;
534 if (!option_branch)
535 remote_head = guess_remote_head(head, refs, 0);
536 else {
537 free_one_ref(head);
538 local_refs = head = NULL;
539 tail = &local_refs;
540 remote_head = copy_ref(find_remote_branch(refs, option_branch));
543 if (!remote_head && option_branch)
544 warning(_("Could not find remote branch %s to clone."),
545 option_branch);
546 else {
547 int i;
548 for (i = 0; i < refspec->nr; i++)
549 get_fetch_map(remote_head, &refspec->items[i],
550 &tail, 0);
552 /* if --branch=tag, pull the requested tag explicitly */
553 get_fetch_map(remote_head, &tag_refspec, &tail, 0);
555 free_refs(remote_head);
556 } else {
557 int i;
558 for (i = 0; i < refspec->nr; i++)
559 get_fetch_map(refs, &refspec->items[i], &tail, 0);
562 if (!option_mirror && !option_single_branch && !option_no_tags)
563 get_fetch_map(refs, &tag_refspec, &tail, 0);
565 refspec_item_clear(&tag_refspec);
566 return local_refs;
569 static void write_remote_refs(const struct ref *local_refs)
571 const struct ref *r;
573 struct ref_transaction *t;
574 struct strbuf err = STRBUF_INIT;
576 t = ref_store_transaction_begin(get_main_ref_store(the_repository),
577 &err);
578 if (!t)
579 die("%s", err.buf);
581 for (r = local_refs; r; r = r->next) {
582 if (!r->peer_ref)
583 continue;
584 if (ref_transaction_create(t, r->peer_ref->name, &r->old_oid,
585 NULL, 0, NULL, &err))
586 die("%s", err.buf);
589 if (initial_ref_transaction_commit(t, &err))
590 die("%s", err.buf);
592 strbuf_release(&err);
593 ref_transaction_free(t);
596 static void write_followtags(const struct ref *refs, const char *msg)
598 const struct ref *ref;
599 for (ref = refs; ref; ref = ref->next) {
600 if (!starts_with(ref->name, "refs/tags/"))
601 continue;
602 if (ends_with(ref->name, "^{}"))
603 continue;
604 if (!repo_has_object_file_with_flags(the_repository, &ref->old_oid,
605 OBJECT_INFO_QUICK |
606 OBJECT_INFO_SKIP_FETCH_OBJECT))
607 continue;
608 refs_update_ref(get_main_ref_store(the_repository), msg,
609 ref->name, &ref->old_oid, NULL, 0,
610 UPDATE_REFS_DIE_ON_ERR);
614 static const struct object_id *iterate_ref_map(void *cb_data)
616 struct ref **rm = cb_data;
617 struct ref *ref = *rm;
620 * Skip anything missing a peer_ref, which we are not
621 * actually going to write a ref for.
623 while (ref && !ref->peer_ref)
624 ref = ref->next;
625 if (!ref)
626 return NULL;
628 *rm = ref->next;
629 return &ref->old_oid;
632 static void update_remote_refs(const struct ref *refs,
633 const struct ref *mapped_refs,
634 const struct ref *remote_head_points_at,
635 const char *branch_top,
636 const char *msg,
637 struct transport *transport,
638 int check_connectivity)
640 const struct ref *rm = mapped_refs;
642 if (check_connectivity) {
643 struct check_connected_options opt = CHECK_CONNECTED_INIT;
645 opt.transport = transport;
646 opt.progress = transport->progress;
648 if (check_connected(iterate_ref_map, &rm, &opt))
649 die(_("remote did not send all necessary objects"));
652 if (refs) {
653 write_remote_refs(mapped_refs);
654 if (option_single_branch && !option_no_tags)
655 write_followtags(refs, msg);
658 if (remote_head_points_at && !option_bare) {
659 struct strbuf head_ref = STRBUF_INIT;
660 strbuf_addstr(&head_ref, branch_top);
661 strbuf_addstr(&head_ref, "HEAD");
662 if (refs_update_symref(get_main_ref_store(the_repository), head_ref.buf,
663 remote_head_points_at->peer_ref->name,
664 msg) < 0)
665 die(_("unable to update %s"), head_ref.buf);
666 strbuf_release(&head_ref);
670 static void update_head(const struct ref *our, const struct ref *remote,
671 const char *unborn, const char *msg)
673 const char *head;
674 if (our && skip_prefix(our->name, "refs/heads/", &head)) {
675 /* Local default branch link */
676 if (refs_update_symref(get_main_ref_store(the_repository), "HEAD", our->name, NULL) < 0)
677 die(_("unable to update HEAD"));
678 if (!option_bare) {
679 refs_update_ref(get_main_ref_store(the_repository),
680 msg, "HEAD", &our->old_oid, NULL, 0,
681 UPDATE_REFS_DIE_ON_ERR);
682 install_branch_config(0, head, remote_name, our->name);
684 } else if (our) {
685 struct commit *c = lookup_commit_reference(the_repository,
686 &our->old_oid);
687 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
688 refs_update_ref(get_main_ref_store(the_repository), msg,
689 "HEAD", &c->object.oid, NULL, REF_NO_DEREF,
690 UPDATE_REFS_DIE_ON_ERR);
691 } else if (remote) {
693 * We know remote HEAD points to a non-branch, or
694 * HEAD points to a branch but we don't know which one.
695 * Detach HEAD in all these cases.
697 refs_update_ref(get_main_ref_store(the_repository), msg,
698 "HEAD", &remote->old_oid, NULL, REF_NO_DEREF,
699 UPDATE_REFS_DIE_ON_ERR);
700 } else if (unborn && skip_prefix(unborn, "refs/heads/", &head)) {
702 * Unborn head from remote; same as "our" case above except
703 * that we have no ref to update.
705 if (refs_update_symref(get_main_ref_store(the_repository), "HEAD", unborn, NULL) < 0)
706 die(_("unable to update HEAD"));
707 if (!option_bare)
708 install_branch_config(0, head, remote_name, unborn);
712 static int git_sparse_checkout_init(const char *repo)
714 struct child_process cmd = CHILD_PROCESS_INIT;
715 int result = 0;
716 strvec_pushl(&cmd.args, "-C", repo, "sparse-checkout", "set", NULL);
719 * We must apply the setting in the current process
720 * for the later checkout to use the sparse-checkout file.
722 core_apply_sparse_checkout = 1;
724 cmd.git_cmd = 1;
725 if (run_command(&cmd)) {
726 error(_("failed to initialize sparse-checkout"));
727 result = 1;
730 return result;
733 static int checkout(int submodule_progress, int filter_submodules,
734 enum ref_storage_format ref_storage_format)
736 struct object_id oid;
737 char *head;
738 struct lock_file lock_file = LOCK_INIT;
739 struct unpack_trees_options opts;
740 struct tree *tree;
741 struct tree_desc t;
742 int err = 0;
744 if (option_no_checkout)
745 return 0;
747 head = refs_resolve_refdup(get_main_ref_store(the_repository), "HEAD",
748 RESOLVE_REF_READING, &oid, NULL);
749 if (!head) {
750 warning(_("remote HEAD refers to nonexistent ref, "
751 "unable to checkout"));
752 return 0;
754 if (!strcmp(head, "HEAD")) {
755 if (advice_enabled(ADVICE_DETACHED_HEAD))
756 detach_advice(oid_to_hex(&oid));
757 FREE_AND_NULL(head);
758 } else {
759 if (!starts_with(head, "refs/heads/"))
760 die(_("HEAD not found below refs/heads!"));
763 /* We need to be in the new work tree for the checkout */
764 setup_work_tree();
766 repo_hold_locked_index(the_repository, &lock_file, LOCK_DIE_ON_ERROR);
768 memset(&opts, 0, sizeof opts);
769 opts.update = 1;
770 opts.merge = 1;
771 opts.clone = 1;
772 opts.preserve_ignored = 0;
773 opts.fn = oneway_merge;
774 opts.verbose_update = (option_verbosity >= 0);
775 opts.src_index = the_repository->index;
776 opts.dst_index = the_repository->index;
777 init_checkout_metadata(&opts.meta, head, &oid, NULL);
779 tree = parse_tree_indirect(&oid);
780 if (!tree)
781 die(_("unable to parse commit %s"), oid_to_hex(&oid));
782 if (parse_tree(tree) < 0)
783 exit(128);
784 init_tree_desc(&t, &tree->object.oid, tree->buffer, tree->size);
785 if (unpack_trees(1, &t, &opts) < 0)
786 die(_("unable to checkout working tree"));
788 free(head);
790 if (write_locked_index(the_repository->index, &lock_file, COMMIT_LOCK))
791 die(_("unable to write new index file"));
793 err |= run_hooks_l(the_repository, "post-checkout", oid_to_hex(null_oid()),
794 oid_to_hex(&oid), "1", NULL);
796 if (!err && (option_recurse_submodules.nr > 0)) {
797 struct child_process cmd = CHILD_PROCESS_INIT;
798 strvec_pushl(&cmd.args, "submodule", "update", "--require-init",
799 "--recursive", NULL);
801 if (option_shallow_submodules == 1)
802 strvec_push(&cmd.args, "--depth=1");
804 if (max_jobs != -1)
805 strvec_pushf(&cmd.args, "--jobs=%d", max_jobs);
807 if (submodule_progress)
808 strvec_push(&cmd.args, "--progress");
810 if (option_verbosity < 0)
811 strvec_push(&cmd.args, "--quiet");
813 if (option_remote_submodules) {
814 strvec_push(&cmd.args, "--remote");
815 strvec_push(&cmd.args, "--no-fetch");
818 if (ref_storage_format != REF_STORAGE_FORMAT_UNKNOWN)
819 strvec_pushf(&cmd.args, "--ref-format=%s",
820 ref_storage_format_to_name(ref_storage_format));
822 if (filter_submodules && filter_options.choice)
823 strvec_pushf(&cmd.args, "--filter=%s",
824 expand_list_objects_filter_spec(&filter_options));
826 if (option_single_branch >= 0)
827 strvec_push(&cmd.args, option_single_branch ?
828 "--single-branch" :
829 "--no-single-branch");
831 cmd.git_cmd = 1;
832 err = run_command(&cmd);
835 return err;
838 static int git_clone_config(const char *k, const char *v,
839 const struct config_context *ctx, void *cb)
841 if (!strcmp(k, "clone.defaultremotename")) {
842 if (!v)
843 return config_error_nonbool(k);
844 free(remote_name);
845 remote_name = xstrdup(v);
847 if (!strcmp(k, "clone.rejectshallow"))
848 config_reject_shallow = git_config_bool(k, v);
849 if (!strcmp(k, "clone.filtersubmodules"))
850 config_filter_submodules = git_config_bool(k, v);
852 return git_default_config(k, v, ctx, cb);
855 static int write_one_config(const char *key, const char *value,
856 const struct config_context *ctx,
857 void *data)
860 * give git_clone_config a chance to write config values back to the
861 * environment, since git_config_set_multivar_gently only deals with
862 * config-file writes
864 int apply_failed = git_clone_config(key, value, ctx, data);
865 if (apply_failed)
866 return apply_failed;
868 return git_config_set_multivar_gently(key,
869 value ? value : "true",
870 CONFIG_REGEX_NONE, 0);
873 static void write_config(struct string_list *config)
875 int i;
877 for (i = 0; i < config->nr; i++) {
878 if (git_config_parse_parameter(config->items[i].string,
879 write_one_config, NULL) < 0)
880 die(_("unable to write parameters to config file"));
884 static void write_refspec_config(const char *src_ref_prefix,
885 const struct ref *our_head_points_at,
886 const struct ref *remote_head_points_at,
887 struct strbuf *branch_top)
889 struct strbuf key = STRBUF_INIT;
890 struct strbuf value = STRBUF_INIT;
892 if (option_mirror || !option_bare) {
893 if (option_single_branch && !option_mirror) {
894 if (option_branch) {
895 if (starts_with(our_head_points_at->name, "refs/tags/"))
896 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
897 our_head_points_at->name);
898 else
899 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
900 branch_top->buf, option_branch);
901 } else if (remote_head_points_at) {
902 const char *head = remote_head_points_at->name;
903 if (!skip_prefix(head, "refs/heads/", &head))
904 BUG("remote HEAD points at non-head?");
906 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
907 branch_top->buf, head);
910 * otherwise, the next "git fetch" will
911 * simply fetch from HEAD without updating
912 * any remote-tracking branch, which is what
913 * we want.
915 } else {
916 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
918 /* Configure the remote */
919 if (value.len) {
920 strbuf_addf(&key, "remote.%s.fetch", remote_name);
921 git_config_set_multivar(key.buf, value.buf, "^$", 0);
922 strbuf_reset(&key);
924 if (option_mirror) {
925 strbuf_addf(&key, "remote.%s.mirror", remote_name);
926 git_config_set(key.buf, "true");
927 strbuf_reset(&key);
932 strbuf_release(&key);
933 strbuf_release(&value);
936 static void dissociate_from_references(void)
938 char *alternates = git_pathdup("objects/info/alternates");
940 if (!access(alternates, F_OK)) {
941 struct child_process cmd = CHILD_PROCESS_INIT;
943 cmd.git_cmd = 1;
944 cmd.no_stdin = 1;
945 strvec_pushl(&cmd.args, "repack", "-a", "-d", NULL);
946 if (run_command(&cmd))
947 die(_("cannot repack to clean up"));
948 if (unlink(alternates) && errno != ENOENT)
949 die_errno(_("cannot unlink temporary alternates file"));
951 free(alternates);
954 static int path_exists(const char *path)
956 struct stat sb;
957 return !stat(path, &sb);
960 int cmd_clone(int argc,
961 const char **argv,
962 const char *prefix,
963 struct repository *repository UNUSED)
965 int is_bundle = 0, is_local;
966 int reject_shallow = 0;
967 const char *repo_name, *repo, *work_tree, *git_dir;
968 char *repo_to_free = NULL;
969 char *path = NULL, *dir, *display_repo = NULL;
970 int dest_exists, real_dest_exists = 0;
971 const struct ref *refs, *remote_head;
972 struct ref *remote_head_points_at = NULL;
973 const struct ref *our_head_points_at;
974 char *unborn_head = NULL;
975 struct ref *mapped_refs = NULL;
976 const struct ref *ref;
977 struct strbuf key = STRBUF_INIT;
978 struct strbuf buf = STRBUF_INIT;
979 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
980 struct transport *transport = NULL;
981 const char *src_ref_prefix = "refs/heads/";
982 struct remote *remote;
983 int err = 0, complete_refs_before_fetch = 1;
984 int submodule_progress;
985 int filter_submodules = 0;
986 int hash_algo;
987 enum ref_storage_format ref_storage_format = REF_STORAGE_FORMAT_UNKNOWN;
988 const int do_not_override_repo_unix_permissions = -1;
990 struct transport_ls_refs_options transport_ls_refs_options =
991 TRANSPORT_LS_REFS_OPTIONS_INIT;
993 packet_trace_identity("clone");
995 git_config(git_clone_config, NULL);
997 argc = parse_options(argc, argv, prefix, builtin_clone_options,
998 builtin_clone_usage, 0);
1000 if (argc > 2)
1001 usage_msg_opt(_("Too many arguments."),
1002 builtin_clone_usage, builtin_clone_options);
1004 if (argc == 0)
1005 usage_msg_opt(_("You must specify a repository to clone."),
1006 builtin_clone_usage, builtin_clone_options);
1008 if (option_depth || option_since || option_not.nr)
1009 deepen = 1;
1010 if (option_single_branch == -1)
1011 option_single_branch = deepen ? 1 : 0;
1013 if (ref_format) {
1014 ref_storage_format = ref_storage_format_by_name(ref_format);
1015 if (ref_storage_format == REF_STORAGE_FORMAT_UNKNOWN)
1016 die(_("unknown ref storage format '%s'"), ref_format);
1019 if (option_mirror)
1020 option_bare = 1;
1022 if (option_bare) {
1023 if (real_git_dir)
1024 die(_("options '%s' and '%s' cannot be used together"), "--bare", "--separate-git-dir");
1025 option_no_checkout = 1;
1028 if (bundle_uri && deepen)
1029 die(_("options '%s' and '%s' cannot be used together"),
1030 "--bundle-uri",
1031 "--depth/--shallow-since/--shallow-exclude");
1033 repo_name = argv[0];
1035 path = get_repo_path(repo_name, &is_bundle);
1036 if (path) {
1037 FREE_AND_NULL(path);
1038 repo = repo_to_free = absolute_pathdup(repo_name);
1039 } else if (strchr(repo_name, ':')) {
1040 repo = repo_name;
1041 display_repo = transport_anonymize_url(repo);
1042 } else
1043 die(_("repository '%s' does not exist"), repo_name);
1045 /* no need to be strict, transport_set_option() will validate it again */
1046 if (option_depth && atoi(option_depth) < 1)
1047 die(_("depth %s is not a positive number"), option_depth);
1049 if (argc == 2)
1050 dir = xstrdup(argv[1]);
1051 else
1052 dir = git_url_basename(repo_name, is_bundle, option_bare);
1053 strip_dir_trailing_slashes(dir);
1055 dest_exists = path_exists(dir);
1056 if (dest_exists && !is_empty_dir(dir))
1057 die(_("destination path '%s' already exists and is not "
1058 "an empty directory."), dir);
1060 if (real_git_dir) {
1061 real_dest_exists = path_exists(real_git_dir);
1062 if (real_dest_exists && !is_empty_dir(real_git_dir))
1063 die(_("repository path '%s' already exists and is not "
1064 "an empty directory."), real_git_dir);
1068 strbuf_addf(&reflog_msg, "clone: from %s",
1069 display_repo ? display_repo : repo);
1070 free(display_repo);
1072 if (option_bare)
1073 work_tree = NULL;
1074 else {
1075 work_tree = getenv("GIT_WORK_TREE");
1076 if (work_tree && path_exists(work_tree))
1077 die(_("working tree '%s' already exists."), work_tree);
1080 if (option_bare || work_tree)
1081 git_dir = xstrdup(dir);
1082 else {
1083 work_tree = dir;
1084 git_dir = mkpathdup("%s/.git", dir);
1087 atexit(remove_junk);
1088 sigchain_push_common(remove_junk_on_signal);
1090 if (!option_bare) {
1091 if (safe_create_leading_directories_const(work_tree) < 0)
1092 die_errno(_("could not create leading directories of '%s'"),
1093 work_tree);
1094 if (dest_exists)
1095 junk_work_tree_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1096 else if (mkdir(work_tree, 0777))
1097 die_errno(_("could not create work tree dir '%s'"),
1098 work_tree);
1099 junk_work_tree = work_tree;
1100 set_git_work_tree(work_tree);
1103 if (real_git_dir) {
1104 if (real_dest_exists)
1105 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1106 junk_git_dir = real_git_dir;
1107 } else {
1108 if (dest_exists)
1109 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1110 junk_git_dir = git_dir;
1112 if (safe_create_leading_directories_const(git_dir) < 0)
1113 die(_("could not create leading directories of '%s'"), git_dir);
1115 if (0 <= option_verbosity) {
1116 if (option_bare)
1117 fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
1118 else
1119 fprintf(stderr, _("Cloning into '%s'...\n"), dir);
1122 if (option_recurse_submodules.nr > 0) {
1123 struct string_list_item *item;
1124 struct strbuf sb = STRBUF_INIT;
1125 int val;
1127 /* remove duplicates */
1128 string_list_sort(&option_recurse_submodules);
1129 string_list_remove_duplicates(&option_recurse_submodules, 0);
1132 * NEEDSWORK: In a multi-working-tree world, this needs to be
1133 * set in the per-worktree config.
1135 for_each_string_list_item(item, &option_recurse_submodules) {
1136 strbuf_addf(&sb, "submodule.active=%s",
1137 item->string);
1138 string_list_append(&option_config,
1139 strbuf_detach(&sb, NULL));
1142 if (!git_config_get_bool("submodule.stickyRecursiveClone", &val) &&
1143 val)
1144 string_list_append(&option_config, "submodule.recurse=true");
1146 if (option_required_reference.nr &&
1147 option_optional_reference.nr)
1148 die(_("clone --recursive is not compatible with "
1149 "both --reference and --reference-if-able"));
1150 else if (option_required_reference.nr) {
1151 string_list_append(&option_config,
1152 "submodule.alternateLocation=superproject");
1153 string_list_append(&option_config,
1154 "submodule.alternateErrorStrategy=die");
1155 } else if (option_optional_reference.nr) {
1156 string_list_append(&option_config,
1157 "submodule.alternateLocation=superproject");
1158 string_list_append(&option_config,
1159 "submodule.alternateErrorStrategy=info");
1164 * Initialize the repository, but skip initializing the reference
1165 * database. We do not yet know about the object format of the
1166 * repository, and reference backends may persist that information into
1167 * their on-disk data structures.
1169 init_db(git_dir, real_git_dir, option_template, GIT_HASH_UNKNOWN,
1170 ref_storage_format, NULL,
1171 do_not_override_repo_unix_permissions, INIT_DB_QUIET | INIT_DB_SKIP_REFDB);
1173 if (real_git_dir) {
1174 free((char *)git_dir);
1175 git_dir = real_git_dir;
1179 * We have a chicken-and-egg situation between initializing the refdb
1180 * and spawning transport helpers:
1182 * - Initializing the refdb requires us to know about the object
1183 * format. We thus have to spawn the transport helper to learn
1184 * about it.
1186 * - The transport helper may want to access the Git repository. But
1187 * because the refdb has not been initialized, we don't have "HEAD"
1188 * or "refs/". Thus, the helper cannot find the Git repository.
1190 * Ideally, we would have structured the helper protocol such that it's
1191 * mandatory for the helper to first announce its capabilities without
1192 * yet assuming a fully initialized repository. Like that, we could
1193 * have added a "lazy-refdb-init" capability that announces whether the
1194 * helper is ready to handle not-yet-initialized refdbs. If any helper
1195 * didn't support them, we would have fully initialized the refdb with
1196 * the SHA1 object format, but later on bailed out if we found out that
1197 * the remote repository used a different object format.
1199 * But we didn't, and thus we use the following workaround to partially
1200 * initialize the repository's refdb such that it can be discovered by
1201 * Git commands. To do so, we:
1203 * - Create an invalid HEAD ref pointing at "refs/heads/.invalid".
1205 * - Create the "refs/" directory.
1207 * - Set up the ref storage format and repository version as
1208 * required.
1210 * This is sufficient for Git commands to discover the Git directory.
1212 initialize_repository_version(GIT_HASH_UNKNOWN,
1213 the_repository->ref_storage_format, 1);
1215 strbuf_addf(&buf, "%s/HEAD", git_dir);
1216 write_file(buf.buf, "ref: refs/heads/.invalid");
1218 strbuf_reset(&buf);
1219 strbuf_addf(&buf, "%s/refs", git_dir);
1220 safe_create_dir(buf.buf, 1);
1223 * additional config can be injected with -c, make sure it's included
1224 * after init_db, which clears the entire config environment.
1226 write_config(&option_config);
1229 * re-read config after init_db and write_config to pick up any config
1230 * injected by --template and --config, respectively.
1232 git_config(git_clone_config, NULL);
1235 * If option_reject_shallow is specified from CLI option,
1236 * ignore config_reject_shallow from git_clone_config.
1238 if (config_reject_shallow != -1)
1239 reject_shallow = config_reject_shallow;
1240 if (option_reject_shallow != -1)
1241 reject_shallow = option_reject_shallow;
1244 * If option_filter_submodules is specified from CLI option,
1245 * ignore config_filter_submodules from git_clone_config.
1247 if (config_filter_submodules != -1)
1248 filter_submodules = config_filter_submodules;
1249 if (option_filter_submodules != -1)
1250 filter_submodules = option_filter_submodules;
1253 * Exit if the user seems to be doing something silly with submodule
1254 * filter flags (but not with filter configs, as those should be
1255 * set-and-forget).
1257 if (option_filter_submodules > 0 && !filter_options.choice)
1258 die(_("the option '%s' requires '%s'"),
1259 "--also-filter-submodules", "--filter");
1260 if (option_filter_submodules > 0 && !option_recurse_submodules.nr)
1261 die(_("the option '%s' requires '%s'"),
1262 "--also-filter-submodules", "--recurse-submodules");
1265 * apply the remote name provided by --origin only after this second
1266 * call to git_config, to ensure it overrides all config-based values.
1268 if (option_origin) {
1269 free(remote_name);
1270 remote_name = xstrdup(option_origin);
1273 if (!remote_name)
1274 remote_name = xstrdup("origin");
1276 if (!valid_remote_name(remote_name))
1277 die(_("'%s' is not a valid remote name"), remote_name);
1279 if (option_bare) {
1280 if (option_mirror)
1281 src_ref_prefix = "refs/";
1282 strbuf_addstr(&branch_top, src_ref_prefix);
1284 git_config_set("core.bare", "true");
1285 } else {
1286 strbuf_addf(&branch_top, "refs/remotes/%s/", remote_name);
1289 strbuf_addf(&key, "remote.%s.url", remote_name);
1290 git_config_set(key.buf, repo);
1291 strbuf_reset(&key);
1293 if (option_no_tags) {
1294 strbuf_addf(&key, "remote.%s.tagOpt", remote_name);
1295 git_config_set(key.buf, "--no-tags");
1296 strbuf_reset(&key);
1299 if (option_required_reference.nr || option_optional_reference.nr)
1300 setup_reference();
1302 remote = remote_get_early(remote_name);
1304 refspec_appendf(&remote->fetch, "+%s*:%s*", src_ref_prefix,
1305 branch_top.buf);
1307 path = get_repo_path(remote->url.v[0], &is_bundle);
1308 is_local = option_local != 0 && path && !is_bundle;
1309 if (is_local) {
1310 if (option_depth)
1311 warning(_("--depth is ignored in local clones; use file:// instead."));
1312 if (option_since)
1313 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
1314 if (option_not.nr)
1315 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
1316 if (filter_options.choice)
1317 warning(_("--filter is ignored in local clones; use file:// instead."));
1318 if (!access(mkpath("%s/shallow", path), F_OK)) {
1319 if (reject_shallow)
1320 die(_("source repository is shallow, reject to clone."));
1321 if (option_local > 0)
1322 warning(_("source repository is shallow, ignoring --local"));
1323 is_local = 0;
1326 if (option_local > 0 && !is_local)
1327 warning(_("--local is ignored"));
1329 transport = transport_get(remote, path ? path : remote->url.v[0]);
1330 transport_set_verbosity(transport, option_verbosity, option_progress);
1331 transport->family = family;
1332 transport->cloning = 1;
1334 if (is_bundle) {
1335 struct bundle_header header = BUNDLE_HEADER_INIT;
1336 int fd = read_bundle_header(path, &header);
1337 int has_filter = header.filter.choice != LOFC_DISABLED;
1339 if (fd > 0)
1340 close(fd);
1341 bundle_header_release(&header);
1342 if (has_filter)
1343 die(_("cannot clone from filtered bundle"));
1346 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
1348 if (reject_shallow)
1349 transport_set_option(transport, TRANS_OPT_REJECT_SHALLOW, "1");
1350 if (option_depth)
1351 transport_set_option(transport, TRANS_OPT_DEPTH,
1352 option_depth);
1353 if (option_since)
1354 transport_set_option(transport, TRANS_OPT_DEEPEN_SINCE,
1355 option_since);
1356 if (option_not.nr)
1357 transport_set_option(transport, TRANS_OPT_DEEPEN_NOT,
1358 (const char *)&option_not);
1359 if (option_single_branch)
1360 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1362 if (option_upload_pack)
1363 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
1364 option_upload_pack);
1366 if (server_options.nr)
1367 transport->server_options = &server_options;
1369 if (filter_options.choice) {
1370 const char *spec =
1371 expand_list_objects_filter_spec(&filter_options);
1372 transport_set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER,
1373 spec);
1374 transport_set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1377 if (transport->smart_options && !deepen && !filter_options.choice)
1378 transport->smart_options->check_self_contained_and_connected = 1;
1380 strvec_push(&transport_ls_refs_options.ref_prefixes, "HEAD");
1381 refspec_ref_prefixes(&remote->fetch,
1382 &transport_ls_refs_options.ref_prefixes);
1383 if (option_branch)
1384 expand_ref_prefix(&transport_ls_refs_options.ref_prefixes,
1385 option_branch);
1386 if (!option_no_tags)
1387 strvec_push(&transport_ls_refs_options.ref_prefixes,
1388 "refs/tags/");
1390 refs = transport_get_remote_refs(transport, &transport_ls_refs_options);
1393 * Now that we know what algorithm the remote side is using, let's set
1394 * ours to the same thing.
1396 hash_algo = hash_algo_by_ptr(transport_get_hash_algo(transport));
1397 initialize_repository_version(hash_algo, the_repository->ref_storage_format, 1);
1398 repo_set_hash_algo(the_repository, hash_algo);
1399 create_reference_database(the_repository->ref_storage_format, NULL, 1);
1402 * Before fetching from the remote, download and install bundle
1403 * data from the --bundle-uri option.
1405 if (bundle_uri) {
1406 int has_heuristic = 0;
1408 /* At this point, we need the_repository to match the cloned repo. */
1409 if (repo_init(the_repository, git_dir, work_tree))
1410 warning(_("failed to initialize the repo, skipping bundle URI"));
1411 else if (fetch_bundle_uri(the_repository, bundle_uri, &has_heuristic))
1412 warning(_("failed to fetch objects from bundle URI '%s'"),
1413 bundle_uri);
1414 else if (has_heuristic)
1415 git_config_set_gently("fetch.bundleuri", bundle_uri);
1416 } else {
1418 * Populate transport->got_remote_bundle_uri and
1419 * transport->bundle_uri. We might get nothing.
1421 transport_get_remote_bundle_uri(transport);
1423 if (transport->bundles &&
1424 hashmap_get_size(&transport->bundles->bundles)) {
1425 /* At this point, we need the_repository to match the cloned repo. */
1426 if (repo_init(the_repository, git_dir, work_tree))
1427 warning(_("failed to initialize the repo, skipping bundle URI"));
1428 else if (fetch_bundle_list(the_repository,
1429 transport->bundles))
1430 warning(_("failed to fetch advertised bundles"));
1431 } else {
1432 clear_bundle_list(transport->bundles);
1433 FREE_AND_NULL(transport->bundles);
1437 if (refs)
1438 mapped_refs = wanted_peer_refs(refs, &remote->fetch);
1440 if (mapped_refs) {
1442 * transport_get_remote_refs() may return refs with null sha-1
1443 * in mapped_refs (see struct transport->get_refs_list
1444 * comment). In that case we need fetch it early because
1445 * remote_head code below relies on it.
1447 * for normal clones, transport_get_remote_refs() should
1448 * return reliable ref set, we can delay cloning until after
1449 * remote HEAD check.
1451 for (ref = refs; ref; ref = ref->next)
1452 if (is_null_oid(&ref->old_oid)) {
1453 complete_refs_before_fetch = 0;
1454 break;
1457 if (!is_local && !complete_refs_before_fetch) {
1458 if (transport_fetch_refs(transport, mapped_refs))
1459 die(_("remote transport reported error"));
1463 remote_head = find_ref_by_name(refs, "HEAD");
1464 remote_head_points_at = guess_remote_head(remote_head, mapped_refs, 0);
1466 if (option_branch) {
1467 our_head_points_at = find_remote_branch(mapped_refs, option_branch);
1468 if (!our_head_points_at)
1469 die(_("Remote branch %s not found in upstream %s"),
1470 option_branch, remote_name);
1471 } else if (remote_head_points_at) {
1472 our_head_points_at = remote_head_points_at;
1473 } else if (remote_head) {
1474 our_head_points_at = NULL;
1475 } else {
1476 char *to_free = NULL;
1477 const char *branch;
1479 if (!mapped_refs) {
1480 warning(_("You appear to have cloned an empty repository."));
1481 option_no_checkout = 1;
1484 if (transport_ls_refs_options.unborn_head_target &&
1485 skip_prefix(transport_ls_refs_options.unborn_head_target,
1486 "refs/heads/", &branch)) {
1487 unborn_head = xstrdup(transport_ls_refs_options.unborn_head_target);
1488 } else {
1489 branch = to_free = repo_default_branch_name(the_repository, 0);
1490 unborn_head = xstrfmt("refs/heads/%s", branch);
1494 * We may have selected a local default branch name "foo",
1495 * and even though the remote's HEAD does not point there,
1496 * it may still have a "foo" branch. If so, set it up so
1497 * that we can follow the usual checkout code later.
1499 * Note that for an empty repo we'll already have set
1500 * option_no_checkout above, which would work against us here.
1501 * But for an empty repo, find_remote_branch() can never find
1502 * a match.
1504 our_head_points_at = find_remote_branch(mapped_refs, branch);
1506 free(to_free);
1509 write_refspec_config(src_ref_prefix, our_head_points_at,
1510 remote_head_points_at, &branch_top);
1512 if (filter_options.choice)
1513 partial_clone_register(remote_name, &filter_options);
1515 if (is_local)
1516 clone_local(path, git_dir);
1517 else if (mapped_refs && complete_refs_before_fetch) {
1518 if (transport_fetch_refs(transport, mapped_refs))
1519 die(_("remote transport reported error"));
1522 update_remote_refs(refs, mapped_refs, remote_head_points_at,
1523 branch_top.buf, reflog_msg.buf, transport,
1524 !is_local);
1526 update_head(our_head_points_at, remote_head, unborn_head, reflog_msg.buf);
1529 * We want to show progress for recursive submodule clones iff
1530 * we did so for the main clone. But only the transport knows
1531 * the final decision for this flag, so we need to rescue the value
1532 * before we free the transport.
1534 submodule_progress = transport->progress;
1536 transport_unlock_pack(transport, 0);
1537 transport_disconnect(transport);
1539 if (option_dissociate) {
1540 close_object_store(the_repository->objects);
1541 dissociate_from_references();
1544 if (option_sparse_checkout && git_sparse_checkout_init(dir))
1545 return 1;
1547 junk_mode = JUNK_LEAVE_REPO;
1548 err = checkout(submodule_progress, filter_submodules,
1549 ref_storage_format);
1551 free(remote_name);
1552 strbuf_release(&reflog_msg);
1553 strbuf_release(&branch_top);
1554 strbuf_release(&buf);
1555 strbuf_release(&key);
1556 free_refs(mapped_refs);
1557 free_refs(remote_head_points_at);
1558 free(unborn_head);
1559 free(dir);
1560 free(path);
1561 free(repo_to_free);
1562 UNLEAK(repo);
1563 junk_mode = JUNK_LEAVE_ALL;
1565 transport_ls_refs_options_release(&transport_ls_refs_options);
1566 return err;