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