gpg-interface: drop pointless config_error_nonbool() checks
[alt-git.git] / builtin / clone.c
blob54d9b9976aa62c36e54c0773b2169ba9c7228779
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 */
11 #define USE_THE_INDEX_VARIABLE
12 #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 "fetch-pack.h"
23 #include "refs.h"
24 #include "refspec.h"
25 #include "object-file.h"
26 #include "object-store-ll.h"
27 #include "tree.h"
28 #include "tree-walk.h"
29 #include "unpack-trees.h"
30 #include "transport.h"
31 #include "strbuf.h"
32 #include "dir.h"
33 #include "dir-iterator.h"
34 #include "iterator.h"
35 #include "sigchain.h"
36 #include "branch.h"
37 #include "remote.h"
38 #include "run-command.h"
39 #include "setup.h"
40 #include "connected.h"
41 #include "packfile.h"
42 #include "path.h"
43 #include "pkt-line.h"
44 #include "list-objects-filter-options.h"
45 #include "hook.h"
46 #include "bundle.h"
47 #include "bundle-uri.h"
50 * Overall FIXMEs:
51 * - respect DB_ENVIRONMENT for .git/objects.
53 * Implementation notes:
54 * - dropping use-separate-remote and no-separate-remote compatibility
57 static const char * const builtin_clone_usage[] = {
58 N_("git clone [<options>] [--] <repo> [<dir>]"),
59 NULL
62 static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
63 static int option_local = -1, option_no_hardlinks, option_shared;
64 static int option_no_tags;
65 static int option_shallow_submodules;
66 static int option_reject_shallow = -1; /* unspecified */
67 static int config_reject_shallow = -1; /* unspecified */
68 static int deepen;
69 static char *option_template, *option_depth, *option_since;
70 static char *option_origin = NULL;
71 static char *remote_name = NULL;
72 static char *option_branch = NULL;
73 static struct string_list option_not = STRING_LIST_INIT_NODUP;
74 static const char *real_git_dir;
75 static 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_LIST('c', "config", &option_config, N_("key=value"),
161 N_("set config inside the new repository")),
162 OPT_STRING_LIST(0, "server-option", &server_options,
163 N_("server-specific"), N_("option to transmit")),
164 OPT_IPVERSION(&family),
165 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
166 OPT_BOOL(0, "also-filter-submodules", &option_filter_submodules,
167 N_("apply partial clone filters to submodules")),
168 OPT_BOOL(0, "remote-submodules", &option_remote_submodules,
169 N_("any cloned submodules will use their remote-tracking branch")),
170 OPT_BOOL(0, "sparse", &option_sparse_checkout,
171 N_("initialize sparse-checkout file to include only files at root")),
172 OPT_STRING(0, "bundle-uri", &bundle_uri,
173 N_("uri"), N_("a URI for downloading bundles before fetching from origin remote")),
174 OPT_END()
177 static const char *get_repo_path_1(struct strbuf *path, int *is_bundle)
179 static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
180 static char *bundle_suffix[] = { ".bundle", "" };
181 size_t baselen = path->len;
182 struct stat st;
183 int i;
185 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
186 strbuf_setlen(path, baselen);
187 strbuf_addstr(path, suffix[i]);
188 if (stat(path->buf, &st))
189 continue;
190 if (S_ISDIR(st.st_mode) && is_git_directory(path->buf)) {
191 *is_bundle = 0;
192 return path->buf;
193 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
194 /* Is it a "gitfile"? */
195 char signature[8];
196 const char *dst;
197 int len, fd = open(path->buf, O_RDONLY);
198 if (fd < 0)
199 continue;
200 len = read_in_full(fd, signature, 8);
201 close(fd);
202 if (len != 8 || strncmp(signature, "gitdir: ", 8))
203 continue;
204 dst = read_gitfile(path->buf);
205 if (dst) {
206 *is_bundle = 0;
207 return dst;
212 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
213 strbuf_setlen(path, baselen);
214 strbuf_addstr(path, bundle_suffix[i]);
215 if (!stat(path->buf, &st) && S_ISREG(st.st_mode)) {
216 *is_bundle = 1;
217 return path->buf;
221 return NULL;
224 static char *get_repo_path(const char *repo, int *is_bundle)
226 struct strbuf path = STRBUF_INIT;
227 const char *raw;
228 char *canon;
230 strbuf_addstr(&path, repo);
231 raw = get_repo_path_1(&path, is_bundle);
232 canon = raw ? absolute_pathdup(raw) : NULL;
233 strbuf_release(&path);
234 return canon;
237 static int add_one_reference(struct string_list_item *item, void *cb_data)
239 struct strbuf err = STRBUF_INIT;
240 int *required = cb_data;
241 char *ref_git = compute_alternate_path(item->string, &err);
243 if (!ref_git) {
244 if (*required)
245 die("%s", err.buf);
246 else
247 fprintf(stderr,
248 _("info: Could not add alternate for '%s': %s\n"),
249 item->string, err.buf);
250 } else {
251 struct strbuf sb = STRBUF_INIT;
252 strbuf_addf(&sb, "%s/objects", ref_git);
253 add_to_alternates_file(sb.buf);
254 strbuf_release(&sb);
257 strbuf_release(&err);
258 free(ref_git);
259 return 0;
262 static void setup_reference(void)
264 int required = 1;
265 for_each_string_list(&option_required_reference,
266 add_one_reference, &required);
267 required = 0;
268 for_each_string_list(&option_optional_reference,
269 add_one_reference, &required);
272 static void copy_alternates(struct strbuf *src, const char *src_repo)
275 * Read from the source objects/info/alternates file
276 * and copy the entries to corresponding file in the
277 * destination repository with add_to_alternates_file().
278 * Both src and dst have "$path/objects/info/alternates".
280 * Instead of copying bit-for-bit from the original,
281 * we need to append to existing one so that the already
282 * created entry via "clone -s" is not lost, and also
283 * to turn entries with paths relative to the original
284 * absolute, so that they can be used in the new repository.
286 FILE *in = xfopen(src->buf, "r");
287 struct strbuf line = STRBUF_INIT;
289 while (strbuf_getline(&line, in) != EOF) {
290 char *abs_path;
291 if (!line.len || line.buf[0] == '#')
292 continue;
293 if (is_absolute_path(line.buf)) {
294 add_to_alternates_file(line.buf);
295 continue;
297 abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf);
298 if (!normalize_path_copy(abs_path, abs_path))
299 add_to_alternates_file(abs_path);
300 else
301 warning("skipping invalid relative alternate: %s/%s",
302 src_repo, line.buf);
303 free(abs_path);
305 strbuf_release(&line);
306 fclose(in);
309 static void mkdir_if_missing(const char *pathname, mode_t mode)
311 struct stat st;
313 if (!mkdir(pathname, mode))
314 return;
316 if (errno != EEXIST)
317 die_errno(_("failed to create directory '%s'"), pathname);
318 else if (stat(pathname, &st))
319 die_errno(_("failed to stat '%s'"), pathname);
320 else if (!S_ISDIR(st.st_mode))
321 die(_("%s exists and is not a directory"), pathname);
324 static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
325 const char *src_repo)
327 int src_len, dest_len;
328 struct dir_iterator *iter;
329 int iter_status;
330 struct strbuf realpath = STRBUF_INIT;
332 mkdir_if_missing(dest->buf, 0777);
334 iter = dir_iterator_begin(src->buf, DIR_ITERATOR_PEDANTIC);
336 if (!iter) {
337 if (errno == ENOTDIR) {
338 int saved_errno = errno;
339 struct stat st;
341 if (!lstat(src->buf, &st) && S_ISLNK(st.st_mode))
342 die(_("'%s' is a symlink, refusing to clone with --local"),
343 src->buf);
344 errno = saved_errno;
346 die_errno(_("failed to start iterator over '%s'"), src->buf);
349 strbuf_addch(src, '/');
350 src_len = src->len;
351 strbuf_addch(dest, '/');
352 dest_len = dest->len;
354 while ((iter_status = dir_iterator_advance(iter)) == ITER_OK) {
355 strbuf_setlen(src, src_len);
356 strbuf_addstr(src, iter->relative_path);
357 strbuf_setlen(dest, dest_len);
358 strbuf_addstr(dest, iter->relative_path);
360 if (S_ISLNK(iter->st.st_mode))
361 die(_("symlink '%s' exists, refusing to clone with --local"),
362 iter->relative_path);
364 if (S_ISDIR(iter->st.st_mode)) {
365 mkdir_if_missing(dest->buf, 0777);
366 continue;
369 /* Files that cannot be copied bit-for-bit... */
370 if (!fspathcmp(iter->relative_path, "info/alternates")) {
371 copy_alternates(src, src_repo);
372 continue;
375 if (unlink(dest->buf) && errno != ENOENT)
376 die_errno(_("failed to unlink '%s'"), dest->buf);
377 if (!option_no_hardlinks) {
378 strbuf_realpath(&realpath, src->buf, 1);
379 if (!link(realpath.buf, dest->buf))
380 continue;
381 if (option_local > 0)
382 die_errno(_("failed to create link '%s'"), dest->buf);
383 option_no_hardlinks = 1;
385 if (copy_file_with_time(dest->buf, src->buf, 0666))
386 die_errno(_("failed to copy file to '%s'"), dest->buf);
389 if (iter_status != ITER_DONE) {
390 strbuf_setlen(src, src_len);
391 die(_("failed to iterate over '%s'"), src->buf);
394 strbuf_release(&realpath);
397 static void clone_local(const char *src_repo, const char *dest_repo)
399 if (option_shared) {
400 struct strbuf alt = STRBUF_INIT;
401 get_common_dir(&alt, src_repo);
402 strbuf_addstr(&alt, "/objects");
403 add_to_alternates_file(alt.buf);
404 strbuf_release(&alt);
405 } else {
406 struct strbuf src = STRBUF_INIT;
407 struct strbuf dest = STRBUF_INIT;
408 get_common_dir(&src, src_repo);
409 get_common_dir(&dest, dest_repo);
410 strbuf_addstr(&src, "/objects");
411 strbuf_addstr(&dest, "/objects");
412 copy_or_link_directory(&src, &dest, src_repo);
413 strbuf_release(&src);
414 strbuf_release(&dest);
417 if (0 <= option_verbosity)
418 fprintf(stderr, _("done.\n"));
421 static const char *junk_work_tree;
422 static int junk_work_tree_flags;
423 static const char *junk_git_dir;
424 static int junk_git_dir_flags;
425 static enum {
426 JUNK_LEAVE_NONE,
427 JUNK_LEAVE_REPO,
428 JUNK_LEAVE_ALL
429 } junk_mode = JUNK_LEAVE_NONE;
431 static const char junk_leave_repo_msg[] =
432 N_("Clone succeeded, but checkout failed.\n"
433 "You can inspect what was checked out with 'git status'\n"
434 "and retry with 'git restore --source=HEAD :/'\n");
436 static void remove_junk(void)
438 struct strbuf sb = STRBUF_INIT;
440 switch (junk_mode) {
441 case JUNK_LEAVE_REPO:
442 warning("%s", _(junk_leave_repo_msg));
443 /* fall-through */
444 case JUNK_LEAVE_ALL:
445 return;
446 default:
447 /* proceed to removal */
448 break;
451 if (junk_git_dir) {
452 strbuf_addstr(&sb, junk_git_dir);
453 remove_dir_recursively(&sb, junk_git_dir_flags);
454 strbuf_reset(&sb);
456 if (junk_work_tree) {
457 strbuf_addstr(&sb, junk_work_tree);
458 remove_dir_recursively(&sb, junk_work_tree_flags);
460 strbuf_release(&sb);
463 static void remove_junk_on_signal(int signo)
465 remove_junk();
466 sigchain_pop(signo);
467 raise(signo);
470 static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
472 struct ref *ref;
473 struct strbuf head = STRBUF_INIT;
474 strbuf_addstr(&head, "refs/heads/");
475 strbuf_addstr(&head, branch);
476 ref = find_ref_by_name(refs, head.buf);
477 strbuf_release(&head);
479 if (ref)
480 return ref;
482 strbuf_addstr(&head, "refs/tags/");
483 strbuf_addstr(&head, branch);
484 ref = find_ref_by_name(refs, head.buf);
485 strbuf_release(&head);
487 return ref;
490 static struct ref *wanted_peer_refs(const struct ref *refs,
491 struct refspec *refspec)
493 struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
494 struct ref *local_refs = head;
495 struct ref **tail = head ? &head->next : &local_refs;
497 if (option_single_branch) {
498 struct ref *remote_head = NULL;
500 if (!option_branch)
501 remote_head = guess_remote_head(head, refs, 0);
502 else {
503 local_refs = NULL;
504 tail = &local_refs;
505 remote_head = copy_ref(find_remote_branch(refs, option_branch));
508 if (!remote_head && option_branch)
509 warning(_("Could not find remote branch %s to clone."),
510 option_branch);
511 else {
512 int i;
513 for (i = 0; i < refspec->nr; i++)
514 get_fetch_map(remote_head, &refspec->items[i],
515 &tail, 0);
517 /* if --branch=tag, pull the requested tag explicitly */
518 get_fetch_map(remote_head, tag_refspec, &tail, 0);
520 free_refs(remote_head);
521 } else {
522 int i;
523 for (i = 0; i < refspec->nr; i++)
524 get_fetch_map(refs, &refspec->items[i], &tail, 0);
527 if (!option_mirror && !option_single_branch && !option_no_tags)
528 get_fetch_map(refs, tag_refspec, &tail, 0);
530 return local_refs;
533 static void write_remote_refs(const struct ref *local_refs)
535 const struct ref *r;
537 struct ref_transaction *t;
538 struct strbuf err = STRBUF_INIT;
540 t = ref_transaction_begin(&err);
541 if (!t)
542 die("%s", err.buf);
544 for (r = local_refs; r; r = r->next) {
545 if (!r->peer_ref)
546 continue;
547 if (ref_transaction_create(t, r->peer_ref->name, &r->old_oid,
548 0, NULL, &err))
549 die("%s", err.buf);
552 if (initial_ref_transaction_commit(t, &err))
553 die("%s", err.buf);
555 strbuf_release(&err);
556 ref_transaction_free(t);
559 static void write_followtags(const struct ref *refs, const char *msg)
561 const struct ref *ref;
562 for (ref = refs; ref; ref = ref->next) {
563 if (!starts_with(ref->name, "refs/tags/"))
564 continue;
565 if (ends_with(ref->name, "^{}"))
566 continue;
567 if (!repo_has_object_file_with_flags(the_repository, &ref->old_oid,
568 OBJECT_INFO_QUICK |
569 OBJECT_INFO_SKIP_FETCH_OBJECT))
570 continue;
571 update_ref(msg, ref->name, &ref->old_oid, NULL, 0,
572 UPDATE_REFS_DIE_ON_ERR);
576 static const struct object_id *iterate_ref_map(void *cb_data)
578 struct ref **rm = cb_data;
579 struct ref *ref = *rm;
582 * Skip anything missing a peer_ref, which we are not
583 * actually going to write a ref for.
585 while (ref && !ref->peer_ref)
586 ref = ref->next;
587 if (!ref)
588 return NULL;
590 *rm = ref->next;
591 return &ref->old_oid;
594 static void update_remote_refs(const struct ref *refs,
595 const struct ref *mapped_refs,
596 const struct ref *remote_head_points_at,
597 const char *branch_top,
598 const char *msg,
599 struct transport *transport,
600 int check_connectivity)
602 const struct ref *rm = mapped_refs;
604 if (check_connectivity) {
605 struct check_connected_options opt = CHECK_CONNECTED_INIT;
607 opt.transport = transport;
608 opt.progress = transport->progress;
610 if (check_connected(iterate_ref_map, &rm, &opt))
611 die(_("remote did not send all necessary objects"));
614 if (refs) {
615 write_remote_refs(mapped_refs);
616 if (option_single_branch && !option_no_tags)
617 write_followtags(refs, msg);
620 if (remote_head_points_at && !option_bare) {
621 struct strbuf head_ref = STRBUF_INIT;
622 strbuf_addstr(&head_ref, branch_top);
623 strbuf_addstr(&head_ref, "HEAD");
624 if (create_symref(head_ref.buf,
625 remote_head_points_at->peer_ref->name,
626 msg) < 0)
627 die(_("unable to update %s"), head_ref.buf);
628 strbuf_release(&head_ref);
632 static void update_head(const struct ref *our, const struct ref *remote,
633 const char *unborn, const char *msg)
635 const char *head;
636 if (our && skip_prefix(our->name, "refs/heads/", &head)) {
637 /* Local default branch link */
638 if (create_symref("HEAD", our->name, NULL) < 0)
639 die(_("unable to update HEAD"));
640 if (!option_bare) {
641 update_ref(msg, "HEAD", &our->old_oid, NULL, 0,
642 UPDATE_REFS_DIE_ON_ERR);
643 install_branch_config(0, head, remote_name, our->name);
645 } else if (our) {
646 struct commit *c = lookup_commit_reference(the_repository,
647 &our->old_oid);
648 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
649 update_ref(msg, "HEAD", &c->object.oid, NULL, REF_NO_DEREF,
650 UPDATE_REFS_DIE_ON_ERR);
651 } else if (remote) {
653 * We know remote HEAD points to a non-branch, or
654 * HEAD points to a branch but we don't know which one.
655 * Detach HEAD in all these cases.
657 update_ref(msg, "HEAD", &remote->old_oid, NULL, REF_NO_DEREF,
658 UPDATE_REFS_DIE_ON_ERR);
659 } else if (unborn && skip_prefix(unborn, "refs/heads/", &head)) {
661 * Unborn head from remote; same as "our" case above except
662 * that we have no ref to update.
664 if (create_symref("HEAD", unborn, NULL) < 0)
665 die(_("unable to update HEAD"));
666 if (!option_bare)
667 install_branch_config(0, head, remote_name, unborn);
671 static int git_sparse_checkout_init(const char *repo)
673 struct child_process cmd = CHILD_PROCESS_INIT;
674 int result = 0;
675 strvec_pushl(&cmd.args, "-C", repo, "sparse-checkout", "set", NULL);
678 * We must apply the setting in the current process
679 * for the later checkout to use the sparse-checkout file.
681 core_apply_sparse_checkout = 1;
683 cmd.git_cmd = 1;
684 if (run_command(&cmd)) {
685 error(_("failed to initialize sparse-checkout"));
686 result = 1;
689 return result;
692 static int checkout(int submodule_progress, int filter_submodules)
694 struct object_id oid;
695 char *head;
696 struct lock_file lock_file = LOCK_INIT;
697 struct unpack_trees_options opts;
698 struct tree *tree;
699 struct tree_desc t;
700 int err = 0;
702 if (option_no_checkout)
703 return 0;
705 head = resolve_refdup("HEAD", RESOLVE_REF_READING, &oid, NULL);
706 if (!head) {
707 warning(_("remote HEAD refers to nonexistent ref, "
708 "unable to checkout"));
709 return 0;
711 if (!strcmp(head, "HEAD")) {
712 if (advice_enabled(ADVICE_DETACHED_HEAD))
713 detach_advice(oid_to_hex(&oid));
714 FREE_AND_NULL(head);
715 } else {
716 if (!starts_with(head, "refs/heads/"))
717 die(_("HEAD not found below refs/heads!"));
720 /* We need to be in the new work tree for the checkout */
721 setup_work_tree();
723 repo_hold_locked_index(the_repository, &lock_file, LOCK_DIE_ON_ERROR);
725 memset(&opts, 0, sizeof opts);
726 opts.update = 1;
727 opts.merge = 1;
728 opts.clone = 1;
729 opts.preserve_ignored = 0;
730 opts.fn = oneway_merge;
731 opts.verbose_update = (option_verbosity >= 0);
732 opts.src_index = &the_index;
733 opts.dst_index = &the_index;
734 init_checkout_metadata(&opts.meta, head, &oid, NULL);
736 tree = parse_tree_indirect(&oid);
737 if (!tree)
738 die(_("unable to parse commit %s"), oid_to_hex(&oid));
739 parse_tree(tree);
740 init_tree_desc(&t, tree->buffer, tree->size);
741 if (unpack_trees(1, &t, &opts) < 0)
742 die(_("unable to checkout working tree"));
744 free(head);
746 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
747 die(_("unable to write new index file"));
749 err |= run_hooks_l("post-checkout", oid_to_hex(null_oid()),
750 oid_to_hex(&oid), "1", NULL);
752 if (!err && (option_recurse_submodules.nr > 0)) {
753 struct child_process cmd = CHILD_PROCESS_INIT;
754 strvec_pushl(&cmd.args, "submodule", "update", "--require-init",
755 "--recursive", NULL);
757 if (option_shallow_submodules == 1)
758 strvec_push(&cmd.args, "--depth=1");
760 if (max_jobs != -1)
761 strvec_pushf(&cmd.args, "--jobs=%d", max_jobs);
763 if (submodule_progress)
764 strvec_push(&cmd.args, "--progress");
766 if (option_verbosity < 0)
767 strvec_push(&cmd.args, "--quiet");
769 if (option_remote_submodules) {
770 strvec_push(&cmd.args, "--remote");
771 strvec_push(&cmd.args, "--no-fetch");
774 if (filter_submodules && filter_options.choice)
775 strvec_pushf(&cmd.args, "--filter=%s",
776 expand_list_objects_filter_spec(&filter_options));
778 if (option_single_branch >= 0)
779 strvec_push(&cmd.args, option_single_branch ?
780 "--single-branch" :
781 "--no-single-branch");
783 cmd.git_cmd = 1;
784 err = run_command(&cmd);
787 return err;
790 static int git_clone_config(const char *k, const char *v,
791 const struct config_context *ctx, void *cb)
793 if (!strcmp(k, "clone.defaultremotename")) {
794 if (!v)
795 return config_error_nonbool(k);
796 free(remote_name);
797 remote_name = xstrdup(v);
799 if (!strcmp(k, "clone.rejectshallow"))
800 config_reject_shallow = git_config_bool(k, v);
801 if (!strcmp(k, "clone.filtersubmodules"))
802 config_filter_submodules = git_config_bool(k, v);
804 return git_default_config(k, v, ctx, cb);
807 static int write_one_config(const char *key, const char *value,
808 const struct config_context *ctx,
809 void *data)
812 * give git_clone_config a chance to write config values back to the
813 * environment, since git_config_set_multivar_gently only deals with
814 * config-file writes
816 int apply_failed = git_clone_config(key, value, ctx, data);
817 if (apply_failed)
818 return apply_failed;
820 return git_config_set_multivar_gently(key,
821 value ? value : "true",
822 CONFIG_REGEX_NONE, 0);
825 static void write_config(struct string_list *config)
827 int i;
829 for (i = 0; i < config->nr; i++) {
830 if (git_config_parse_parameter(config->items[i].string,
831 write_one_config, NULL) < 0)
832 die(_("unable to write parameters to config file"));
836 static void write_refspec_config(const char *src_ref_prefix,
837 const struct ref *our_head_points_at,
838 const struct ref *remote_head_points_at,
839 struct strbuf *branch_top)
841 struct strbuf key = STRBUF_INIT;
842 struct strbuf value = STRBUF_INIT;
844 if (option_mirror || !option_bare) {
845 if (option_single_branch && !option_mirror) {
846 if (option_branch) {
847 if (starts_with(our_head_points_at->name, "refs/tags/"))
848 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
849 our_head_points_at->name);
850 else
851 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
852 branch_top->buf, option_branch);
853 } else if (remote_head_points_at) {
854 const char *head = remote_head_points_at->name;
855 if (!skip_prefix(head, "refs/heads/", &head))
856 BUG("remote HEAD points at non-head?");
858 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
859 branch_top->buf, head);
862 * otherwise, the next "git fetch" will
863 * simply fetch from HEAD without updating
864 * any remote-tracking branch, which is what
865 * we want.
867 } else {
868 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
870 /* Configure the remote */
871 if (value.len) {
872 strbuf_addf(&key, "remote.%s.fetch", remote_name);
873 git_config_set_multivar(key.buf, value.buf, "^$", 0);
874 strbuf_reset(&key);
876 if (option_mirror) {
877 strbuf_addf(&key, "remote.%s.mirror", remote_name);
878 git_config_set(key.buf, "true");
879 strbuf_reset(&key);
884 strbuf_release(&key);
885 strbuf_release(&value);
888 static void dissociate_from_references(void)
890 char *alternates = git_pathdup("objects/info/alternates");
892 if (!access(alternates, F_OK)) {
893 struct child_process cmd = CHILD_PROCESS_INIT;
895 cmd.git_cmd = 1;
896 cmd.no_stdin = 1;
897 strvec_pushl(&cmd.args, "repack", "-a", "-d", NULL);
898 if (run_command(&cmd))
899 die(_("cannot repack to clean up"));
900 if (unlink(alternates) && errno != ENOENT)
901 die_errno(_("cannot unlink temporary alternates file"));
903 free(alternates);
906 static int path_exists(const char *path)
908 struct stat sb;
909 return !stat(path, &sb);
912 int cmd_clone(int argc, const char **argv, const char *prefix)
914 int is_bundle = 0, is_local;
915 int reject_shallow = 0;
916 const char *repo_name, *repo, *work_tree, *git_dir;
917 char *repo_to_free = NULL;
918 char *path = NULL, *dir, *display_repo = NULL;
919 int dest_exists, real_dest_exists = 0;
920 const struct ref *refs, *remote_head;
921 struct ref *remote_head_points_at = NULL;
922 const struct ref *our_head_points_at;
923 char *unborn_head = NULL;
924 struct ref *mapped_refs = NULL;
925 const struct ref *ref;
926 struct strbuf key = STRBUF_INIT;
927 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
928 struct transport *transport = NULL;
929 const char *src_ref_prefix = "refs/heads/";
930 struct remote *remote;
931 int err = 0, complete_refs_before_fetch = 1;
932 int submodule_progress;
933 int filter_submodules = 0;
934 int hash_algo;
935 const int do_not_override_repo_unix_permissions = -1;
937 struct transport_ls_refs_options transport_ls_refs_options =
938 TRANSPORT_LS_REFS_OPTIONS_INIT;
940 packet_trace_identity("clone");
942 git_config(git_clone_config, NULL);
944 argc = parse_options(argc, argv, prefix, builtin_clone_options,
945 builtin_clone_usage, 0);
947 if (argc > 2)
948 usage_msg_opt(_("Too many arguments."),
949 builtin_clone_usage, builtin_clone_options);
951 if (argc == 0)
952 usage_msg_opt(_("You must specify a repository to clone."),
953 builtin_clone_usage, builtin_clone_options);
955 if (option_depth || option_since || option_not.nr)
956 deepen = 1;
957 if (option_single_branch == -1)
958 option_single_branch = deepen ? 1 : 0;
960 if (option_mirror)
961 option_bare = 1;
963 if (option_bare) {
964 if (real_git_dir)
965 die(_("options '%s' and '%s' cannot be used together"), "--bare", "--separate-git-dir");
966 option_no_checkout = 1;
969 if (bundle_uri && deepen)
970 die(_("--bundle-uri is incompatible with --depth, --shallow-since, and --shallow-exclude"));
972 repo_name = argv[0];
974 path = get_repo_path(repo_name, &is_bundle);
975 if (path) {
976 FREE_AND_NULL(path);
977 repo = repo_to_free = absolute_pathdup(repo_name);
978 } else if (strchr(repo_name, ':')) {
979 repo = repo_name;
980 display_repo = transport_anonymize_url(repo);
981 } else
982 die(_("repository '%s' does not exist"), repo_name);
984 /* no need to be strict, transport_set_option() will validate it again */
985 if (option_depth && atoi(option_depth) < 1)
986 die(_("depth %s is not a positive number"), option_depth);
988 if (argc == 2)
989 dir = xstrdup(argv[1]);
990 else
991 dir = git_url_basename(repo_name, is_bundle, option_bare);
992 strip_dir_trailing_slashes(dir);
994 dest_exists = path_exists(dir);
995 if (dest_exists && !is_empty_dir(dir))
996 die(_("destination path '%s' already exists and is not "
997 "an empty directory."), dir);
999 if (real_git_dir) {
1000 real_dest_exists = path_exists(real_git_dir);
1001 if (real_dest_exists && !is_empty_dir(real_git_dir))
1002 die(_("repository path '%s' already exists and is not "
1003 "an empty directory."), real_git_dir);
1007 strbuf_addf(&reflog_msg, "clone: from %s",
1008 display_repo ? display_repo : repo);
1009 free(display_repo);
1011 if (option_bare)
1012 work_tree = NULL;
1013 else {
1014 work_tree = getenv("GIT_WORK_TREE");
1015 if (work_tree && path_exists(work_tree))
1016 die(_("working tree '%s' already exists."), work_tree);
1019 if (option_bare || work_tree)
1020 git_dir = xstrdup(dir);
1021 else {
1022 work_tree = dir;
1023 git_dir = mkpathdup("%s/.git", dir);
1026 atexit(remove_junk);
1027 sigchain_push_common(remove_junk_on_signal);
1029 if (!option_bare) {
1030 if (safe_create_leading_directories_const(work_tree) < 0)
1031 die_errno(_("could not create leading directories of '%s'"),
1032 work_tree);
1033 if (dest_exists)
1034 junk_work_tree_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1035 else if (mkdir(work_tree, 0777))
1036 die_errno(_("could not create work tree dir '%s'"),
1037 work_tree);
1038 junk_work_tree = work_tree;
1039 set_git_work_tree(work_tree);
1042 if (real_git_dir) {
1043 if (real_dest_exists)
1044 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1045 junk_git_dir = real_git_dir;
1046 } else {
1047 if (dest_exists)
1048 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1049 junk_git_dir = git_dir;
1051 if (safe_create_leading_directories_const(git_dir) < 0)
1052 die(_("could not create leading directories of '%s'"), git_dir);
1054 if (0 <= option_verbosity) {
1055 if (option_bare)
1056 fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
1057 else
1058 fprintf(stderr, _("Cloning into '%s'...\n"), dir);
1061 if (option_recurse_submodules.nr > 0) {
1062 struct string_list_item *item;
1063 struct strbuf sb = STRBUF_INIT;
1064 int val;
1066 /* remove duplicates */
1067 string_list_sort(&option_recurse_submodules);
1068 string_list_remove_duplicates(&option_recurse_submodules, 0);
1071 * NEEDSWORK: In a multi-working-tree world, this needs to be
1072 * set in the per-worktree config.
1074 for_each_string_list_item(item, &option_recurse_submodules) {
1075 strbuf_addf(&sb, "submodule.active=%s",
1076 item->string);
1077 string_list_append(&option_config,
1078 strbuf_detach(&sb, NULL));
1081 if (!git_config_get_bool("submodule.stickyRecursiveClone", &val) &&
1082 val)
1083 string_list_append(&option_config, "submodule.recurse=true");
1085 if (option_required_reference.nr &&
1086 option_optional_reference.nr)
1087 die(_("clone --recursive is not compatible with "
1088 "both --reference and --reference-if-able"));
1089 else if (option_required_reference.nr) {
1090 string_list_append(&option_config,
1091 "submodule.alternateLocation=superproject");
1092 string_list_append(&option_config,
1093 "submodule.alternateErrorStrategy=die");
1094 } else if (option_optional_reference.nr) {
1095 string_list_append(&option_config,
1096 "submodule.alternateLocation=superproject");
1097 string_list_append(&option_config,
1098 "submodule.alternateErrorStrategy=info");
1102 init_db(git_dir, real_git_dir, option_template, GIT_HASH_UNKNOWN, NULL,
1103 do_not_override_repo_unix_permissions, INIT_DB_QUIET);
1105 if (real_git_dir) {
1106 free((char *)git_dir);
1107 git_dir = real_git_dir;
1111 * additional config can be injected with -c, make sure it's included
1112 * after init_db, which clears the entire config environment.
1114 write_config(&option_config);
1117 * re-read config after init_db and write_config to pick up any config
1118 * injected by --template and --config, respectively.
1120 git_config(git_clone_config, NULL);
1123 * If option_reject_shallow is specified from CLI option,
1124 * ignore config_reject_shallow from git_clone_config.
1126 if (config_reject_shallow != -1)
1127 reject_shallow = config_reject_shallow;
1128 if (option_reject_shallow != -1)
1129 reject_shallow = option_reject_shallow;
1132 * If option_filter_submodules is specified from CLI option,
1133 * ignore config_filter_submodules from git_clone_config.
1135 if (config_filter_submodules != -1)
1136 filter_submodules = config_filter_submodules;
1137 if (option_filter_submodules != -1)
1138 filter_submodules = option_filter_submodules;
1141 * Exit if the user seems to be doing something silly with submodule
1142 * filter flags (but not with filter configs, as those should be
1143 * set-and-forget).
1145 if (option_filter_submodules > 0 && !filter_options.choice)
1146 die(_("the option '%s' requires '%s'"),
1147 "--also-filter-submodules", "--filter");
1148 if (option_filter_submodules > 0 && !option_recurse_submodules.nr)
1149 die(_("the option '%s' requires '%s'"),
1150 "--also-filter-submodules", "--recurse-submodules");
1153 * apply the remote name provided by --origin only after this second
1154 * call to git_config, to ensure it overrides all config-based values.
1156 if (option_origin) {
1157 free(remote_name);
1158 remote_name = xstrdup(option_origin);
1161 if (!remote_name)
1162 remote_name = xstrdup("origin");
1164 if (!valid_remote_name(remote_name))
1165 die(_("'%s' is not a valid remote name"), remote_name);
1167 if (option_bare) {
1168 if (option_mirror)
1169 src_ref_prefix = "refs/";
1170 strbuf_addstr(&branch_top, src_ref_prefix);
1172 git_config_set("core.bare", "true");
1173 } else {
1174 strbuf_addf(&branch_top, "refs/remotes/%s/", remote_name);
1177 strbuf_addf(&key, "remote.%s.url", remote_name);
1178 git_config_set(key.buf, repo);
1179 strbuf_reset(&key);
1181 if (option_no_tags) {
1182 strbuf_addf(&key, "remote.%s.tagOpt", remote_name);
1183 git_config_set(key.buf, "--no-tags");
1184 strbuf_reset(&key);
1187 if (option_required_reference.nr || option_optional_reference.nr)
1188 setup_reference();
1190 if (option_sparse_checkout && git_sparse_checkout_init(dir))
1191 return 1;
1193 remote = remote_get(remote_name);
1195 refspec_appendf(&remote->fetch, "+%s*:%s*", src_ref_prefix,
1196 branch_top.buf);
1198 path = get_repo_path(remote->url[0], &is_bundle);
1199 is_local = option_local != 0 && path && !is_bundle;
1200 if (is_local) {
1201 if (option_depth)
1202 warning(_("--depth is ignored in local clones; use file:// instead."));
1203 if (option_since)
1204 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
1205 if (option_not.nr)
1206 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
1207 if (filter_options.choice)
1208 warning(_("--filter is ignored in local clones; use file:// instead."));
1209 if (!access(mkpath("%s/shallow", path), F_OK)) {
1210 if (reject_shallow)
1211 die(_("source repository is shallow, reject to clone."));
1212 if (option_local > 0)
1213 warning(_("source repository is shallow, ignoring --local"));
1214 is_local = 0;
1217 if (option_local > 0 && !is_local)
1218 warning(_("--local is ignored"));
1220 transport = transport_get(remote, path ? path : remote->url[0]);
1221 transport_set_verbosity(transport, option_verbosity, option_progress);
1222 transport->family = family;
1223 transport->cloning = 1;
1225 if (is_bundle) {
1226 struct bundle_header header = BUNDLE_HEADER_INIT;
1227 int fd = read_bundle_header(path, &header);
1228 int has_filter = header.filter.choice != LOFC_DISABLED;
1230 if (fd > 0)
1231 close(fd);
1232 bundle_header_release(&header);
1233 if (has_filter)
1234 die(_("cannot clone from filtered bundle"));
1237 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
1239 if (reject_shallow)
1240 transport_set_option(transport, TRANS_OPT_REJECT_SHALLOW, "1");
1241 if (option_depth)
1242 transport_set_option(transport, TRANS_OPT_DEPTH,
1243 option_depth);
1244 if (option_since)
1245 transport_set_option(transport, TRANS_OPT_DEEPEN_SINCE,
1246 option_since);
1247 if (option_not.nr)
1248 transport_set_option(transport, TRANS_OPT_DEEPEN_NOT,
1249 (const char *)&option_not);
1250 if (option_single_branch)
1251 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
1253 if (option_upload_pack)
1254 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
1255 option_upload_pack);
1257 if (server_options.nr)
1258 transport->server_options = &server_options;
1260 if (filter_options.choice) {
1261 const char *spec =
1262 expand_list_objects_filter_spec(&filter_options);
1263 transport_set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER,
1264 spec);
1265 transport_set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1268 if (transport->smart_options && !deepen && !filter_options.choice)
1269 transport->smart_options->check_self_contained_and_connected = 1;
1272 * Before fetching from the remote, download and install bundle
1273 * data from the --bundle-uri option.
1275 if (bundle_uri) {
1276 int has_heuristic = 0;
1278 /* At this point, we need the_repository to match the cloned repo. */
1279 if (repo_init(the_repository, git_dir, work_tree))
1280 warning(_("failed to initialize the repo, skipping bundle URI"));
1281 else if (fetch_bundle_uri(the_repository, bundle_uri, &has_heuristic))
1282 warning(_("failed to fetch objects from bundle URI '%s'"),
1283 bundle_uri);
1284 else if (has_heuristic)
1285 git_config_set_gently("fetch.bundleuri", bundle_uri);
1288 strvec_push(&transport_ls_refs_options.ref_prefixes, "HEAD");
1289 refspec_ref_prefixes(&remote->fetch,
1290 &transport_ls_refs_options.ref_prefixes);
1291 if (option_branch)
1292 expand_ref_prefix(&transport_ls_refs_options.ref_prefixes,
1293 option_branch);
1294 if (!option_no_tags)
1295 strvec_push(&transport_ls_refs_options.ref_prefixes,
1296 "refs/tags/");
1298 refs = transport_get_remote_refs(transport, &transport_ls_refs_options);
1300 if (refs)
1301 mapped_refs = wanted_peer_refs(refs, &remote->fetch);
1303 if (!bundle_uri) {
1305 * Populate transport->got_remote_bundle_uri and
1306 * transport->bundle_uri. We might get nothing.
1308 transport_get_remote_bundle_uri(transport);
1310 if (transport->bundles &&
1311 hashmap_get_size(&transport->bundles->bundles)) {
1312 /* At this point, we need the_repository to match the cloned repo. */
1313 if (repo_init(the_repository, git_dir, work_tree))
1314 warning(_("failed to initialize the repo, skipping bundle URI"));
1315 else if (fetch_bundle_list(the_repository,
1316 transport->bundles))
1317 warning(_("failed to fetch advertised bundles"));
1318 } else {
1319 clear_bundle_list(transport->bundles);
1320 FREE_AND_NULL(transport->bundles);
1325 * Now that we know what algorithm the remote side is using,
1326 * let's set ours to the same thing.
1328 hash_algo = hash_algo_by_ptr(transport_get_hash_algo(transport));
1329 initialize_repository_version(hash_algo, 1);
1330 repo_set_hash_algo(the_repository, hash_algo);
1332 if (mapped_refs) {
1334 * transport_get_remote_refs() may return refs with null sha-1
1335 * in mapped_refs (see struct transport->get_refs_list
1336 * comment). In that case we need fetch it early because
1337 * remote_head code below relies on it.
1339 * for normal clones, transport_get_remote_refs() should
1340 * return reliable ref set, we can delay cloning until after
1341 * remote HEAD check.
1343 for (ref = refs; ref; ref = ref->next)
1344 if (is_null_oid(&ref->old_oid)) {
1345 complete_refs_before_fetch = 0;
1346 break;
1349 if (!is_local && !complete_refs_before_fetch) {
1350 if (transport_fetch_refs(transport, mapped_refs))
1351 die(_("remote transport reported error"));
1355 remote_head = find_ref_by_name(refs, "HEAD");
1356 remote_head_points_at = guess_remote_head(remote_head, mapped_refs, 0);
1358 if (option_branch) {
1359 our_head_points_at = find_remote_branch(mapped_refs, option_branch);
1360 if (!our_head_points_at)
1361 die(_("Remote branch %s not found in upstream %s"),
1362 option_branch, remote_name);
1363 } else if (remote_head_points_at) {
1364 our_head_points_at = remote_head_points_at;
1365 } else if (remote_head) {
1366 our_head_points_at = NULL;
1367 } else {
1368 const char *branch;
1370 if (!mapped_refs) {
1371 warning(_("You appear to have cloned an empty repository."));
1372 option_no_checkout = 1;
1375 if (transport_ls_refs_options.unborn_head_target &&
1376 skip_prefix(transport_ls_refs_options.unborn_head_target,
1377 "refs/heads/", &branch)) {
1378 unborn_head = xstrdup(transport_ls_refs_options.unborn_head_target);
1379 } else {
1380 branch = git_default_branch_name(0);
1381 unborn_head = xstrfmt("refs/heads/%s", branch);
1385 * We may have selected a local default branch name "foo",
1386 * and even though the remote's HEAD does not point there,
1387 * it may still have a "foo" branch. If so, set it up so
1388 * that we can follow the usual checkout code later.
1390 * Note that for an empty repo we'll already have set
1391 * option_no_checkout above, which would work against us here.
1392 * But for an empty repo, find_remote_branch() can never find
1393 * a match.
1395 our_head_points_at = find_remote_branch(mapped_refs, branch);
1398 write_refspec_config(src_ref_prefix, our_head_points_at,
1399 remote_head_points_at, &branch_top);
1401 if (filter_options.choice)
1402 partial_clone_register(remote_name, &filter_options);
1404 if (is_local)
1405 clone_local(path, git_dir);
1406 else if (mapped_refs && complete_refs_before_fetch) {
1407 if (transport_fetch_refs(transport, mapped_refs))
1408 die(_("remote transport reported error"));
1411 update_remote_refs(refs, mapped_refs, remote_head_points_at,
1412 branch_top.buf, reflog_msg.buf, transport,
1413 !is_local);
1415 update_head(our_head_points_at, remote_head, unborn_head, reflog_msg.buf);
1418 * We want to show progress for recursive submodule clones iff
1419 * we did so for the main clone. But only the transport knows
1420 * the final decision for this flag, so we need to rescue the value
1421 * before we free the transport.
1423 submodule_progress = transport->progress;
1425 transport_unlock_pack(transport, 0);
1426 transport_disconnect(transport);
1428 if (option_dissociate) {
1429 close_object_store(the_repository->objects);
1430 dissociate_from_references();
1433 junk_mode = JUNK_LEAVE_REPO;
1434 err = checkout(submodule_progress, filter_submodules);
1436 free(remote_name);
1437 strbuf_release(&reflog_msg);
1438 strbuf_release(&branch_top);
1439 strbuf_release(&key);
1440 free_refs(mapped_refs);
1441 free_refs(remote_head_points_at);
1442 free(unborn_head);
1443 free(dir);
1444 free(path);
1445 free(repo_to_free);
1446 junk_mode = JUNK_LEAVE_ALL;
1448 transport_ls_refs_options_release(&transport_ls_refs_options);
1449 return err;