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.
11 #define USE_THE_INDEX_VARIABLE
17 #include "environment.h"
21 #include "parse-options.h"
24 #include "object-file.h"
25 #include "object-store-ll.h"
27 #include "tree-walk.h"
28 #include "unpack-trees.h"
29 #include "transport.h"
32 #include "dir-iterator.h"
37 #include "run-command.h"
39 #include "connected.h"
43 #include "list-objects-filter-options.h"
46 #include "bundle-uri.h"
50 * - respect DB_ENVIRONMENT for .git/objects.
52 * Implementation notes:
53 * - dropping use-separate-remote and no-separate-remote compatibility
56 static const char * const builtin_clone_usage
[] = {
57 N_("git clone [<options>] [--] <repo> [<dir>]"),
61 static int option_no_checkout
, option_bare
, option_mirror
, option_single_branch
= -1;
62 static int option_local
= -1, option_no_hardlinks
, option_shared
;
63 static int option_no_tags
;
64 static int option_shallow_submodules
;
65 static int option_reject_shallow
= -1; /* unspecified */
66 static int config_reject_shallow
= -1; /* unspecified */
68 static char *option_template
, *option_depth
, *option_since
;
69 static char *option_origin
= NULL
;
70 static char *remote_name
= NULL
;
71 static char *option_branch
= NULL
;
72 static struct string_list option_not
= STRING_LIST_INIT_NODUP
;
73 static const char *real_git_dir
;
74 static const char *ref_format
;
75 static 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
)
97 string_list_clear((struct string_list
*)opt
->value
, 0);
99 string_list_append((struct string_list
*)opt
->value
, arg
);
101 string_list_append((struct string_list
*)opt
->value
,
102 (const char *)opt
->defval
);
107 static struct option builtin_clone_options
[] = {
108 OPT__VERBOSITY(&option_verbosity
),
109 OPT_BOOL(0, "progress", &option_progress
,
110 N_("force progress reporting")),
111 OPT_BOOL(0, "reject-shallow", &option_reject_shallow
,
112 N_("don't clone shallow repository")),
113 OPT_BOOL('n', "no-checkout", &option_no_checkout
,
114 N_("don't create a checkout")),
115 OPT_BOOL(0, "bare", &option_bare
, N_("create a bare repository")),
116 OPT_HIDDEN_BOOL(0, "naked", &option_bare
,
117 N_("create a bare repository")),
118 OPT_BOOL(0, "mirror", &option_mirror
,
119 N_("create a mirror repository (implies bare)")),
120 OPT_BOOL('l', "local", &option_local
,
121 N_("to clone from a local repository")),
122 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks
,
123 N_("don't use local hardlinks, always copy")),
124 OPT_BOOL('s', "shared", &option_shared
,
125 N_("setup as shared repository")),
126 { OPTION_CALLBACK
, 0, "recurse-submodules", &option_recurse_submodules
,
127 N_("pathspec"), N_("initialize submodules in the clone"),
128 PARSE_OPT_OPTARG
, recurse_submodules_cb
, (intptr_t)"." },
129 OPT_ALIAS(0, "recursive", "recurse-submodules"),
130 OPT_INTEGER('j', "jobs", &max_jobs
,
131 N_("number of submodules cloned in parallel")),
132 OPT_STRING(0, "template", &option_template
, N_("template-directory"),
133 N_("directory from which templates will be used")),
134 OPT_STRING_LIST(0, "reference", &option_required_reference
, N_("repo"),
135 N_("reference repository")),
136 OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference
,
137 N_("repo"), N_("reference repository")),
138 OPT_BOOL(0, "dissociate", &option_dissociate
,
139 N_("use --reference only while cloning")),
140 OPT_STRING('o', "origin", &option_origin
, N_("name"),
141 N_("use <name> instead of 'origin' to track upstream")),
142 OPT_STRING('b', "branch", &option_branch
, N_("branch"),
143 N_("checkout <branch> instead of the remote's HEAD")),
144 OPT_STRING('u', "upload-pack", &option_upload_pack
, N_("path"),
145 N_("path to git-upload-pack on the remote")),
146 OPT_STRING(0, "depth", &option_depth
, N_("depth"),
147 N_("create a shallow clone of that depth")),
148 OPT_STRING(0, "shallow-since", &option_since
, N_("time"),
149 N_("create a shallow clone since a specific time")),
150 OPT_STRING_LIST(0, "shallow-exclude", &option_not
, N_("revision"),
151 N_("deepen history of shallow clone, excluding rev")),
152 OPT_BOOL(0, "single-branch", &option_single_branch
,
153 N_("clone only one branch, HEAD or --branch")),
154 OPT_BOOL(0, "no-tags", &option_no_tags
,
155 N_("don't clone any tags, and make later fetches not to follow them")),
156 OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules
,
157 N_("any cloned submodules will be shallow")),
158 OPT_STRING(0, "separate-git-dir", &real_git_dir
, N_("gitdir"),
159 N_("separate git dir from working tree")),
160 OPT_STRING(0, "ref-format", &ref_format
, N_("format"),
161 N_("specify the reference format to use")),
162 OPT_STRING_LIST('c', "config", &option_config
, N_("key=value"),
163 N_("set config inside the new repository")),
164 OPT_STRING_LIST(0, "server-option", &server_options
,
165 N_("server-specific"), N_("option to transmit")),
166 OPT_IPVERSION(&family
),
167 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options
),
168 OPT_BOOL(0, "also-filter-submodules", &option_filter_submodules
,
169 N_("apply partial clone filters to submodules")),
170 OPT_BOOL(0, "remote-submodules", &option_remote_submodules
,
171 N_("any cloned submodules will use their remote-tracking branch")),
172 OPT_BOOL(0, "sparse", &option_sparse_checkout
,
173 N_("initialize sparse-checkout file to include only files at root")),
174 OPT_STRING(0, "bundle-uri", &bundle_uri
,
175 N_("uri"), N_("a URI for downloading bundles before fetching from origin remote")),
179 static const char *get_repo_path_1(struct strbuf
*path
, int *is_bundle
)
181 static char *suffix
[] = { "/.git", "", ".git/.git", ".git" };
182 static char *bundle_suffix
[] = { ".bundle", "" };
183 size_t baselen
= path
->len
;
187 for (i
= 0; i
< ARRAY_SIZE(suffix
); i
++) {
188 strbuf_setlen(path
, baselen
);
189 strbuf_addstr(path
, suffix
[i
]);
190 if (stat(path
->buf
, &st
))
192 if (S_ISDIR(st
.st_mode
) && is_git_directory(path
->buf
)) {
195 } else if (S_ISREG(st
.st_mode
) && st
.st_size
> 8) {
196 /* Is it a "gitfile"? */
199 int len
, fd
= open(path
->buf
, O_RDONLY
);
202 len
= read_in_full(fd
, signature
, 8);
204 if (len
!= 8 || strncmp(signature
, "gitdir: ", 8))
206 dst
= read_gitfile(path
->buf
);
214 for (i
= 0; i
< ARRAY_SIZE(bundle_suffix
); i
++) {
215 strbuf_setlen(path
, baselen
);
216 strbuf_addstr(path
, bundle_suffix
[i
]);
217 if (!stat(path
->buf
, &st
) && S_ISREG(st
.st_mode
)) {
226 static char *get_repo_path(const char *repo
, int *is_bundle
)
228 struct strbuf path
= STRBUF_INIT
;
232 strbuf_addstr(&path
, repo
);
233 raw
= get_repo_path_1(&path
, is_bundle
);
234 canon
= raw
? absolute_pathdup(raw
) : NULL
;
235 strbuf_release(&path
);
239 static int add_one_reference(struct string_list_item
*item
, void *cb_data
)
241 struct strbuf err
= STRBUF_INIT
;
242 int *required
= cb_data
;
243 char *ref_git
= compute_alternate_path(item
->string
, &err
);
250 _("info: Could not add alternate for '%s': %s\n"),
251 item
->string
, err
.buf
);
253 struct strbuf sb
= STRBUF_INIT
;
254 strbuf_addf(&sb
, "%s/objects", ref_git
);
255 add_to_alternates_file(sb
.buf
);
259 strbuf_release(&err
);
264 static void setup_reference(void)
267 for_each_string_list(&option_required_reference
,
268 add_one_reference
, &required
);
270 for_each_string_list(&option_optional_reference
,
271 add_one_reference
, &required
);
274 static void copy_alternates(struct strbuf
*src
, const char *src_repo
)
277 * Read from the source objects/info/alternates file
278 * and copy the entries to corresponding file in the
279 * destination repository with add_to_alternates_file().
280 * Both src and dst have "$path/objects/info/alternates".
282 * Instead of copying bit-for-bit from the original,
283 * we need to append to existing one so that the already
284 * created entry via "clone -s" is not lost, and also
285 * to turn entries with paths relative to the original
286 * absolute, so that they can be used in the new repository.
288 FILE *in
= xfopen(src
->buf
, "r");
289 struct strbuf line
= STRBUF_INIT
;
291 while (strbuf_getline(&line
, in
) != EOF
) {
293 if (!line
.len
|| line
.buf
[0] == '#')
295 if (is_absolute_path(line
.buf
)) {
296 add_to_alternates_file(line
.buf
);
299 abs_path
= mkpathdup("%s/objects/%s", src_repo
, line
.buf
);
300 if (!normalize_path_copy(abs_path
, abs_path
))
301 add_to_alternates_file(abs_path
);
303 warning("skipping invalid relative alternate: %s/%s",
307 strbuf_release(&line
);
311 static void mkdir_if_missing(const char *pathname
, mode_t mode
)
315 if (!mkdir(pathname
, mode
))
319 die_errno(_("failed to create directory '%s'"), pathname
);
320 else if (stat(pathname
, &st
))
321 die_errno(_("failed to stat '%s'"), pathname
);
322 else if (!S_ISDIR(st
.st_mode
))
323 die(_("%s exists and is not a directory"), pathname
);
326 static void copy_or_link_directory(struct strbuf
*src
, struct strbuf
*dest
,
327 const char *src_repo
)
329 int src_len
, dest_len
;
330 struct dir_iterator
*iter
;
332 struct strbuf realpath
= STRBUF_INIT
;
334 mkdir_if_missing(dest
->buf
, 0777);
336 iter
= dir_iterator_begin(src
->buf
, DIR_ITERATOR_PEDANTIC
);
339 if (errno
== ENOTDIR
) {
340 int saved_errno
= errno
;
343 if (!lstat(src
->buf
, &st
) && S_ISLNK(st
.st_mode
))
344 die(_("'%s' is a symlink, refusing to clone with --local"),
348 die_errno(_("failed to start iterator over '%s'"), src
->buf
);
351 strbuf_addch(src
, '/');
353 strbuf_addch(dest
, '/');
354 dest_len
= dest
->len
;
356 while ((iter_status
= dir_iterator_advance(iter
)) == ITER_OK
) {
357 strbuf_setlen(src
, src_len
);
358 strbuf_addstr(src
, iter
->relative_path
);
359 strbuf_setlen(dest
, dest_len
);
360 strbuf_addstr(dest
, iter
->relative_path
);
362 if (S_ISLNK(iter
->st
.st_mode
))
363 die(_("symlink '%s' exists, refusing to clone with --local"),
364 iter
->relative_path
);
366 if (S_ISDIR(iter
->st
.st_mode
)) {
367 mkdir_if_missing(dest
->buf
, 0777);
371 /* Files that cannot be copied bit-for-bit... */
372 if (!fspathcmp(iter
->relative_path
, "info/alternates")) {
373 copy_alternates(src
, src_repo
);
377 if (unlink(dest
->buf
) && errno
!= ENOENT
)
378 die_errno(_("failed to unlink '%s'"), dest
->buf
);
379 if (!option_no_hardlinks
) {
380 strbuf_realpath(&realpath
, src
->buf
, 1);
381 if (!link(realpath
.buf
, dest
->buf
))
383 if (option_local
> 0)
384 die_errno(_("failed to create link '%s'"), dest
->buf
);
385 option_no_hardlinks
= 1;
387 if (copy_file_with_time(dest
->buf
, src
->buf
, 0666))
388 die_errno(_("failed to copy file to '%s'"), dest
->buf
);
391 if (iter_status
!= ITER_DONE
) {
392 strbuf_setlen(src
, src_len
);
393 die(_("failed to iterate over '%s'"), src
->buf
);
396 strbuf_release(&realpath
);
399 static void clone_local(const char *src_repo
, const char *dest_repo
)
402 struct strbuf alt
= STRBUF_INIT
;
403 get_common_dir(&alt
, src_repo
);
404 strbuf_addstr(&alt
, "/objects");
405 add_to_alternates_file(alt
.buf
);
406 strbuf_release(&alt
);
408 struct strbuf src
= STRBUF_INIT
;
409 struct strbuf dest
= STRBUF_INIT
;
410 get_common_dir(&src
, src_repo
);
411 get_common_dir(&dest
, dest_repo
);
412 strbuf_addstr(&src
, "/objects");
413 strbuf_addstr(&dest
, "/objects");
414 copy_or_link_directory(&src
, &dest
, src_repo
);
415 strbuf_release(&src
);
416 strbuf_release(&dest
);
419 if (0 <= option_verbosity
)
420 fprintf(stderr
, _("done.\n"));
423 static const char *junk_work_tree
;
424 static int junk_work_tree_flags
;
425 static const char *junk_git_dir
;
426 static int junk_git_dir_flags
;
431 } junk_mode
= JUNK_LEAVE_NONE
;
433 static const char junk_leave_repo_msg
[] =
434 N_("Clone succeeded, but checkout failed.\n"
435 "You can inspect what was checked out with 'git status'\n"
436 "and retry with 'git restore --source=HEAD :/'\n");
438 static void remove_junk(void)
440 struct strbuf sb
= STRBUF_INIT
;
443 case JUNK_LEAVE_REPO
:
444 warning("%s", _(junk_leave_repo_msg
));
449 /* proceed to removal */
454 strbuf_addstr(&sb
, junk_git_dir
);
455 remove_dir_recursively(&sb
, junk_git_dir_flags
);
458 if (junk_work_tree
) {
459 strbuf_addstr(&sb
, junk_work_tree
);
460 remove_dir_recursively(&sb
, junk_work_tree_flags
);
465 static void remove_junk_on_signal(int signo
)
472 static struct ref
*find_remote_branch(const struct ref
*refs
, const char *branch
)
475 struct strbuf head
= STRBUF_INIT
;
476 strbuf_addstr(&head
, "refs/heads/");
477 strbuf_addstr(&head
, branch
);
478 ref
= find_ref_by_name(refs
, head
.buf
);
479 strbuf_release(&head
);
484 strbuf_addstr(&head
, "refs/tags/");
485 strbuf_addstr(&head
, branch
);
486 ref
= find_ref_by_name(refs
, head
.buf
);
487 strbuf_release(&head
);
492 static struct ref
*wanted_peer_refs(const struct ref
*refs
,
493 struct refspec
*refspec
)
495 struct ref
*head
= copy_ref(find_ref_by_name(refs
, "HEAD"));
496 struct ref
*local_refs
= head
;
497 struct ref
**tail
= head
? &head
->next
: &local_refs
;
499 if (option_single_branch
) {
500 struct ref
*remote_head
= NULL
;
503 remote_head
= guess_remote_head(head
, refs
, 0);
507 remote_head
= copy_ref(find_remote_branch(refs
, option_branch
));
510 if (!remote_head
&& option_branch
)
511 warning(_("Could not find remote branch %s to clone."),
515 for (i
= 0; i
< refspec
->nr
; i
++)
516 get_fetch_map(remote_head
, &refspec
->items
[i
],
519 /* if --branch=tag, pull the requested tag explicitly */
520 get_fetch_map(remote_head
, tag_refspec
, &tail
, 0);
522 free_refs(remote_head
);
525 for (i
= 0; i
< refspec
->nr
; i
++)
526 get_fetch_map(refs
, &refspec
->items
[i
], &tail
, 0);
529 if (!option_mirror
&& !option_single_branch
&& !option_no_tags
)
530 get_fetch_map(refs
, tag_refspec
, &tail
, 0);
535 static void write_remote_refs(const struct ref
*local_refs
)
539 struct ref_transaction
*t
;
540 struct strbuf err
= STRBUF_INIT
;
542 t
= ref_transaction_begin(&err
);
546 for (r
= local_refs
; r
; r
= r
->next
) {
549 if (ref_transaction_create(t
, r
->peer_ref
->name
, &r
->old_oid
,
554 if (initial_ref_transaction_commit(t
, &err
))
557 strbuf_release(&err
);
558 ref_transaction_free(t
);
561 static void write_followtags(const struct ref
*refs
, const char *msg
)
563 const struct ref
*ref
;
564 for (ref
= refs
; ref
; ref
= ref
->next
) {
565 if (!starts_with(ref
->name
, "refs/tags/"))
567 if (ends_with(ref
->name
, "^{}"))
569 if (!repo_has_object_file_with_flags(the_repository
, &ref
->old_oid
,
571 OBJECT_INFO_SKIP_FETCH_OBJECT
))
573 update_ref(msg
, ref
->name
, &ref
->old_oid
, NULL
, 0,
574 UPDATE_REFS_DIE_ON_ERR
);
578 static const struct object_id
*iterate_ref_map(void *cb_data
)
580 struct ref
**rm
= cb_data
;
581 struct ref
*ref
= *rm
;
584 * Skip anything missing a peer_ref, which we are not
585 * actually going to write a ref for.
587 while (ref
&& !ref
->peer_ref
)
593 return &ref
->old_oid
;
596 static void update_remote_refs(const struct ref
*refs
,
597 const struct ref
*mapped_refs
,
598 const struct ref
*remote_head_points_at
,
599 const char *branch_top
,
601 struct transport
*transport
,
602 int check_connectivity
)
604 const struct ref
*rm
= mapped_refs
;
606 if (check_connectivity
) {
607 struct check_connected_options opt
= CHECK_CONNECTED_INIT
;
609 opt
.transport
= transport
;
610 opt
.progress
= transport
->progress
;
612 if (check_connected(iterate_ref_map
, &rm
, &opt
))
613 die(_("remote did not send all necessary objects"));
617 write_remote_refs(mapped_refs
);
618 if (option_single_branch
&& !option_no_tags
)
619 write_followtags(refs
, msg
);
622 if (remote_head_points_at
&& !option_bare
) {
623 struct strbuf head_ref
= STRBUF_INIT
;
624 strbuf_addstr(&head_ref
, branch_top
);
625 strbuf_addstr(&head_ref
, "HEAD");
626 if (create_symref(head_ref
.buf
,
627 remote_head_points_at
->peer_ref
->name
,
629 die(_("unable to update %s"), head_ref
.buf
);
630 strbuf_release(&head_ref
);
634 static void update_head(const struct ref
*our
, const struct ref
*remote
,
635 const char *unborn
, const char *msg
)
638 if (our
&& skip_prefix(our
->name
, "refs/heads/", &head
)) {
639 /* Local default branch link */
640 if (create_symref("HEAD", our
->name
, NULL
) < 0)
641 die(_("unable to update HEAD"));
643 update_ref(msg
, "HEAD", &our
->old_oid
, NULL
, 0,
644 UPDATE_REFS_DIE_ON_ERR
);
645 install_branch_config(0, head
, remote_name
, our
->name
);
648 struct commit
*c
= lookup_commit_reference(the_repository
,
650 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
651 update_ref(msg
, "HEAD", &c
->object
.oid
, NULL
, REF_NO_DEREF
,
652 UPDATE_REFS_DIE_ON_ERR
);
655 * We know remote HEAD points to a non-branch, or
656 * HEAD points to a branch but we don't know which one.
657 * Detach HEAD in all these cases.
659 update_ref(msg
, "HEAD", &remote
->old_oid
, NULL
, REF_NO_DEREF
,
660 UPDATE_REFS_DIE_ON_ERR
);
661 } else if (unborn
&& skip_prefix(unborn
, "refs/heads/", &head
)) {
663 * Unborn head from remote; same as "our" case above except
664 * that we have no ref to update.
666 if (create_symref("HEAD", unborn
, NULL
) < 0)
667 die(_("unable to update HEAD"));
669 install_branch_config(0, head
, remote_name
, unborn
);
673 static int git_sparse_checkout_init(const char *repo
)
675 struct child_process cmd
= CHILD_PROCESS_INIT
;
677 strvec_pushl(&cmd
.args
, "-C", repo
, "sparse-checkout", "set", NULL
);
680 * We must apply the setting in the current process
681 * for the later checkout to use the sparse-checkout file.
683 core_apply_sparse_checkout
= 1;
686 if (run_command(&cmd
)) {
687 error(_("failed to initialize sparse-checkout"));
694 static int checkout(int submodule_progress
, int filter_submodules
)
696 struct object_id oid
;
698 struct lock_file lock_file
= LOCK_INIT
;
699 struct unpack_trees_options opts
;
704 if (option_no_checkout
)
707 head
= resolve_refdup("HEAD", RESOLVE_REF_READING
, &oid
, NULL
);
709 warning(_("remote HEAD refers to nonexistent ref, "
710 "unable to checkout"));
713 if (!strcmp(head
, "HEAD")) {
714 if (advice_enabled(ADVICE_DETACHED_HEAD
))
715 detach_advice(oid_to_hex(&oid
));
718 if (!starts_with(head
, "refs/heads/"))
719 die(_("HEAD not found below refs/heads!"));
722 /* We need to be in the new work tree for the checkout */
725 repo_hold_locked_index(the_repository
, &lock_file
, LOCK_DIE_ON_ERROR
);
727 memset(&opts
, 0, sizeof opts
);
731 opts
.preserve_ignored
= 0;
732 opts
.fn
= oneway_merge
;
733 opts
.verbose_update
= (option_verbosity
>= 0);
734 opts
.src_index
= &the_index
;
735 opts
.dst_index
= &the_index
;
736 init_checkout_metadata(&opts
.meta
, head
, &oid
, NULL
);
738 tree
= parse_tree_indirect(&oid
);
740 die(_("unable to parse commit %s"), oid_to_hex(&oid
));
742 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
743 if (unpack_trees(1, &t
, &opts
) < 0)
744 die(_("unable to checkout working tree"));
748 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
749 die(_("unable to write new index file"));
751 err
|= run_hooks_l("post-checkout", oid_to_hex(null_oid()),
752 oid_to_hex(&oid
), "1", NULL
);
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
);
759 if (option_shallow_submodules
== 1)
760 strvec_push(&cmd
.args
, "--depth=1");
763 strvec_pushf(&cmd
.args
, "--jobs=%d", max_jobs
);
765 if (submodule_progress
)
766 strvec_push(&cmd
.args
, "--progress");
768 if (option_verbosity
< 0)
769 strvec_push(&cmd
.args
, "--quiet");
771 if (option_remote_submodules
) {
772 strvec_push(&cmd
.args
, "--remote");
773 strvec_push(&cmd
.args
, "--no-fetch");
776 if (filter_submodules
&& filter_options
.choice
)
777 strvec_pushf(&cmd
.args
, "--filter=%s",
778 expand_list_objects_filter_spec(&filter_options
));
780 if (option_single_branch
>= 0)
781 strvec_push(&cmd
.args
, option_single_branch
?
783 "--no-single-branch");
786 err
= run_command(&cmd
);
792 static int git_clone_config(const char *k
, const char *v
,
793 const struct config_context
*ctx
, void *cb
)
795 if (!strcmp(k
, "clone.defaultremotename")) {
797 return config_error_nonbool(k
);
799 remote_name
= xstrdup(v
);
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
);
806 return git_default_config(k
, v
, ctx
, cb
);
809 static int write_one_config(const char *key
, const char *value
,
810 const struct config_context
*ctx
,
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
818 int apply_failed
= git_clone_config(key
, value
, ctx
, data
);
822 return git_config_set_multivar_gently(key
,
823 value
? value
: "true",
824 CONFIG_REGEX_NONE
, 0);
827 static void write_config(struct string_list
*config
)
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"));
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
)
843 struct strbuf key
= STRBUF_INIT
;
844 struct strbuf value
= STRBUF_INIT
;
846 if (option_mirror
|| !option_bare
) {
847 if (option_single_branch
&& !option_mirror
) {
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
);
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?");
860 strbuf_addf(&value
, "+%s:%s%s", remote_head_points_at
->name
,
861 branch_top
->buf
, head
);
864 * otherwise, the next "git fetch" will
865 * simply fetch from HEAD without updating
866 * any remote-tracking branch, which is what
870 strbuf_addf(&value
, "+%s*:%s*", src_ref_prefix
, branch_top
->buf
);
872 /* Configure the remote */
874 strbuf_addf(&key
, "remote.%s.fetch", remote_name
);
875 git_config_set_multivar(key
.buf
, value
.buf
, "^$", 0);
879 strbuf_addf(&key
, "remote.%s.mirror", remote_name
);
880 git_config_set(key
.buf
, "true");
886 strbuf_release(&key
);
887 strbuf_release(&value
);
890 static void dissociate_from_references(void)
892 char *alternates
= git_pathdup("objects/info/alternates");
894 if (!access(alternates
, F_OK
)) {
895 struct child_process cmd
= CHILD_PROCESS_INIT
;
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"));
908 static int path_exists(const char *path
)
911 return !stat(path
, &sb
);
914 int cmd_clone(int argc
, const char **argv
, const char *prefix
)
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 branch_top
= STRBUF_INIT
, reflog_msg
= STRBUF_INIT
;
930 struct transport
*transport
= NULL
;
931 const char *src_ref_prefix
= "refs/heads/";
932 struct remote
*remote
;
933 int err
= 0, complete_refs_before_fetch
= 1;
934 int submodule_progress
;
935 int filter_submodules
= 0;
937 unsigned int ref_storage_format
= REF_STORAGE_FORMAT_UNKNOWN
;
938 const int do_not_override_repo_unix_permissions
= -1;
940 struct transport_ls_refs_options transport_ls_refs_options
=
941 TRANSPORT_LS_REFS_OPTIONS_INIT
;
943 packet_trace_identity("clone");
945 git_config(git_clone_config
, NULL
);
947 argc
= parse_options(argc
, argv
, prefix
, builtin_clone_options
,
948 builtin_clone_usage
, 0);
951 usage_msg_opt(_("Too many arguments."),
952 builtin_clone_usage
, builtin_clone_options
);
955 usage_msg_opt(_("You must specify a repository to clone."),
956 builtin_clone_usage
, builtin_clone_options
);
958 if (option_depth
|| option_since
|| option_not
.nr
)
960 if (option_single_branch
== -1)
961 option_single_branch
= deepen
? 1 : 0;
964 ref_storage_format
= ref_storage_format_by_name(ref_format
);
965 if (ref_storage_format
== REF_STORAGE_FORMAT_UNKNOWN
)
966 die(_("unknown ref storage format '%s'"), ref_format
);
974 die(_("options '%s' and '%s' cannot be used together"), "--bare", "--separate-git-dir");
975 option_no_checkout
= 1;
978 if (bundle_uri
&& deepen
)
979 die(_("options '%s' and '%s' cannot be used together"),
981 "--depth/--shallow-since/--shallow-exclude");
985 path
= get_repo_path(repo_name
, &is_bundle
);
988 repo
= repo_to_free
= absolute_pathdup(repo_name
);
989 } else if (strchr(repo_name
, ':')) {
991 display_repo
= transport_anonymize_url(repo
);
993 die(_("repository '%s' does not exist"), repo_name
);
995 /* no need to be strict, transport_set_option() will validate it again */
996 if (option_depth
&& atoi(option_depth
) < 1)
997 die(_("depth %s is not a positive number"), option_depth
);
1000 dir
= xstrdup(argv
[1]);
1002 dir
= git_url_basename(repo_name
, is_bundle
, option_bare
);
1003 strip_dir_trailing_slashes(dir
);
1005 dest_exists
= path_exists(dir
);
1006 if (dest_exists
&& !is_empty_dir(dir
))
1007 die(_("destination path '%s' already exists and is not "
1008 "an empty directory."), dir
);
1011 real_dest_exists
= path_exists(real_git_dir
);
1012 if (real_dest_exists
&& !is_empty_dir(real_git_dir
))
1013 die(_("repository path '%s' already exists and is not "
1014 "an empty directory."), real_git_dir
);
1018 strbuf_addf(&reflog_msg
, "clone: from %s",
1019 display_repo
? display_repo
: repo
);
1025 work_tree
= getenv("GIT_WORK_TREE");
1026 if (work_tree
&& path_exists(work_tree
))
1027 die(_("working tree '%s' already exists."), work_tree
);
1030 if (option_bare
|| work_tree
)
1031 git_dir
= xstrdup(dir
);
1034 git_dir
= mkpathdup("%s/.git", dir
);
1037 atexit(remove_junk
);
1038 sigchain_push_common(remove_junk_on_signal
);
1041 if (safe_create_leading_directories_const(work_tree
) < 0)
1042 die_errno(_("could not create leading directories of '%s'"),
1045 junk_work_tree_flags
|= REMOVE_DIR_KEEP_TOPLEVEL
;
1046 else if (mkdir(work_tree
, 0777))
1047 die_errno(_("could not create work tree dir '%s'"),
1049 junk_work_tree
= work_tree
;
1050 set_git_work_tree(work_tree
);
1054 if (real_dest_exists
)
1055 junk_git_dir_flags
|= REMOVE_DIR_KEEP_TOPLEVEL
;
1056 junk_git_dir
= real_git_dir
;
1059 junk_git_dir_flags
|= REMOVE_DIR_KEEP_TOPLEVEL
;
1060 junk_git_dir
= git_dir
;
1062 if (safe_create_leading_directories_const(git_dir
) < 0)
1063 die(_("could not create leading directories of '%s'"), git_dir
);
1065 if (0 <= option_verbosity
) {
1067 fprintf(stderr
, _("Cloning into bare repository '%s'...\n"), dir
);
1069 fprintf(stderr
, _("Cloning into '%s'...\n"), dir
);
1072 if (option_recurse_submodules
.nr
> 0) {
1073 struct string_list_item
*item
;
1074 struct strbuf sb
= STRBUF_INIT
;
1077 /* remove duplicates */
1078 string_list_sort(&option_recurse_submodules
);
1079 string_list_remove_duplicates(&option_recurse_submodules
, 0);
1082 * NEEDSWORK: In a multi-working-tree world, this needs to be
1083 * set in the per-worktree config.
1085 for_each_string_list_item(item
, &option_recurse_submodules
) {
1086 strbuf_addf(&sb
, "submodule.active=%s",
1088 string_list_append(&option_config
,
1089 strbuf_detach(&sb
, NULL
));
1092 if (!git_config_get_bool("submodule.stickyRecursiveClone", &val
) &&
1094 string_list_append(&option_config
, "submodule.recurse=true");
1096 if (option_required_reference
.nr
&&
1097 option_optional_reference
.nr
)
1098 die(_("clone --recursive is not compatible with "
1099 "both --reference and --reference-if-able"));
1100 else if (option_required_reference
.nr
) {
1101 string_list_append(&option_config
,
1102 "submodule.alternateLocation=superproject");
1103 string_list_append(&option_config
,
1104 "submodule.alternateErrorStrategy=die");
1105 } else if (option_optional_reference
.nr
) {
1106 string_list_append(&option_config
,
1107 "submodule.alternateLocation=superproject");
1108 string_list_append(&option_config
,
1109 "submodule.alternateErrorStrategy=info");
1114 * Initialize the repository, but skip initializing the reference
1115 * database. We do not yet know about the object format of the
1116 * repository, and reference backends may persist that information into
1117 * their on-disk data structures.
1119 init_db(git_dir
, real_git_dir
, option_template
, GIT_HASH_UNKNOWN
,
1120 ref_storage_format
, NULL
,
1121 do_not_override_repo_unix_permissions
, INIT_DB_QUIET
| INIT_DB_SKIP_REFDB
);
1124 free((char *)git_dir
);
1125 git_dir
= real_git_dir
;
1129 * additional config can be injected with -c, make sure it's included
1130 * after init_db, which clears the entire config environment.
1132 write_config(&option_config
);
1135 * re-read config after init_db and write_config to pick up any config
1136 * injected by --template and --config, respectively.
1138 git_config(git_clone_config
, NULL
);
1141 * If option_reject_shallow is specified from CLI option,
1142 * ignore config_reject_shallow from git_clone_config.
1144 if (config_reject_shallow
!= -1)
1145 reject_shallow
= config_reject_shallow
;
1146 if (option_reject_shallow
!= -1)
1147 reject_shallow
= option_reject_shallow
;
1150 * If option_filter_submodules is specified from CLI option,
1151 * ignore config_filter_submodules from git_clone_config.
1153 if (config_filter_submodules
!= -1)
1154 filter_submodules
= config_filter_submodules
;
1155 if (option_filter_submodules
!= -1)
1156 filter_submodules
= option_filter_submodules
;
1159 * Exit if the user seems to be doing something silly with submodule
1160 * filter flags (but not with filter configs, as those should be
1163 if (option_filter_submodules
> 0 && !filter_options
.choice
)
1164 die(_("the option '%s' requires '%s'"),
1165 "--also-filter-submodules", "--filter");
1166 if (option_filter_submodules
> 0 && !option_recurse_submodules
.nr
)
1167 die(_("the option '%s' requires '%s'"),
1168 "--also-filter-submodules", "--recurse-submodules");
1171 * apply the remote name provided by --origin only after this second
1172 * call to git_config, to ensure it overrides all config-based values.
1174 if (option_origin
) {
1176 remote_name
= xstrdup(option_origin
);
1180 remote_name
= xstrdup("origin");
1182 if (!valid_remote_name(remote_name
))
1183 die(_("'%s' is not a valid remote name"), remote_name
);
1187 src_ref_prefix
= "refs/";
1188 strbuf_addstr(&branch_top
, src_ref_prefix
);
1190 git_config_set("core.bare", "true");
1192 strbuf_addf(&branch_top
, "refs/remotes/%s/", remote_name
);
1195 strbuf_addf(&key
, "remote.%s.url", remote_name
);
1196 git_config_set(key
.buf
, repo
);
1199 if (option_no_tags
) {
1200 strbuf_addf(&key
, "remote.%s.tagOpt", remote_name
);
1201 git_config_set(key
.buf
, "--no-tags");
1205 if (option_required_reference
.nr
|| option_optional_reference
.nr
)
1208 remote
= remote_get_early(remote_name
);
1210 refspec_appendf(&remote
->fetch
, "+%s*:%s*", src_ref_prefix
,
1213 path
= get_repo_path(remote
->url
[0], &is_bundle
);
1214 is_local
= option_local
!= 0 && path
&& !is_bundle
;
1217 warning(_("--depth is ignored in local clones; use file:// instead."));
1219 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
1221 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
1222 if (filter_options
.choice
)
1223 warning(_("--filter is ignored in local clones; use file:// instead."));
1224 if (!access(mkpath("%s/shallow", path
), F_OK
)) {
1226 die(_("source repository is shallow, reject to clone."));
1227 if (option_local
> 0)
1228 warning(_("source repository is shallow, ignoring --local"));
1232 if (option_local
> 0 && !is_local
)
1233 warning(_("--local is ignored"));
1235 transport
= transport_get(remote
, path
? path
: remote
->url
[0]);
1236 transport_set_verbosity(transport
, option_verbosity
, option_progress
);
1237 transport
->family
= family
;
1238 transport
->cloning
= 1;
1241 struct bundle_header header
= BUNDLE_HEADER_INIT
;
1242 int fd
= read_bundle_header(path
, &header
);
1243 int has_filter
= header
.filter
.choice
!= LOFC_DISABLED
;
1247 bundle_header_release(&header
);
1249 die(_("cannot clone from filtered bundle"));
1252 transport_set_option(transport
, TRANS_OPT_KEEP
, "yes");
1255 transport_set_option(transport
, TRANS_OPT_REJECT_SHALLOW
, "1");
1257 transport_set_option(transport
, TRANS_OPT_DEPTH
,
1260 transport_set_option(transport
, TRANS_OPT_DEEPEN_SINCE
,
1263 transport_set_option(transport
, TRANS_OPT_DEEPEN_NOT
,
1264 (const char *)&option_not
);
1265 if (option_single_branch
)
1266 transport_set_option(transport
, TRANS_OPT_FOLLOWTAGS
, "1");
1268 if (option_upload_pack
)
1269 transport_set_option(transport
, TRANS_OPT_UPLOADPACK
,
1270 option_upload_pack
);
1272 if (server_options
.nr
)
1273 transport
->server_options
= &server_options
;
1275 if (filter_options
.choice
) {
1277 expand_list_objects_filter_spec(&filter_options
);
1278 transport_set_option(transport
, TRANS_OPT_LIST_OBJECTS_FILTER
,
1280 transport_set_option(transport
, TRANS_OPT_FROM_PROMISOR
, "1");
1283 if (transport
->smart_options
&& !deepen
&& !filter_options
.choice
)
1284 transport
->smart_options
->check_self_contained_and_connected
= 1;
1286 strvec_push(&transport_ls_refs_options
.ref_prefixes
, "HEAD");
1287 refspec_ref_prefixes(&remote
->fetch
,
1288 &transport_ls_refs_options
.ref_prefixes
);
1290 expand_ref_prefix(&transport_ls_refs_options
.ref_prefixes
,
1292 if (!option_no_tags
)
1293 strvec_push(&transport_ls_refs_options
.ref_prefixes
,
1296 refs
= transport_get_remote_refs(transport
, &transport_ls_refs_options
);
1299 * Now that we know what algorithm the remote side is using, let's set
1300 * ours to the same thing.
1302 hash_algo
= hash_algo_by_ptr(transport_get_hash_algo(transport
));
1303 initialize_repository_version(hash_algo
, the_repository
->ref_storage_format
, 1);
1304 repo_set_hash_algo(the_repository
, hash_algo
);
1305 create_reference_database(the_repository
->ref_storage_format
, NULL
, 1);
1308 * Before fetching from the remote, download and install bundle
1309 * data from the --bundle-uri option.
1312 int has_heuristic
= 0;
1314 /* At this point, we need the_repository to match the cloned repo. */
1315 if (repo_init(the_repository
, git_dir
, work_tree
))
1316 warning(_("failed to initialize the repo, skipping bundle URI"));
1317 else if (fetch_bundle_uri(the_repository
, bundle_uri
, &has_heuristic
))
1318 warning(_("failed to fetch objects from bundle URI '%s'"),
1320 else if (has_heuristic
)
1321 git_config_set_gently("fetch.bundleuri", bundle_uri
);
1324 * Populate transport->got_remote_bundle_uri and
1325 * transport->bundle_uri. We might get nothing.
1327 transport_get_remote_bundle_uri(transport
);
1329 if (transport
->bundles
&&
1330 hashmap_get_size(&transport
->bundles
->bundles
)) {
1331 /* At this point, we need the_repository to match the cloned repo. */
1332 if (repo_init(the_repository
, git_dir
, work_tree
))
1333 warning(_("failed to initialize the repo, skipping bundle URI"));
1334 else if (fetch_bundle_list(the_repository
,
1335 transport
->bundles
))
1336 warning(_("failed to fetch advertised bundles"));
1338 clear_bundle_list(transport
->bundles
);
1339 FREE_AND_NULL(transport
->bundles
);
1344 mapped_refs
= wanted_peer_refs(refs
, &remote
->fetch
);
1348 * transport_get_remote_refs() may return refs with null sha-1
1349 * in mapped_refs (see struct transport->get_refs_list
1350 * comment). In that case we need fetch it early because
1351 * remote_head code below relies on it.
1353 * for normal clones, transport_get_remote_refs() should
1354 * return reliable ref set, we can delay cloning until after
1355 * remote HEAD check.
1357 for (ref
= refs
; ref
; ref
= ref
->next
)
1358 if (is_null_oid(&ref
->old_oid
)) {
1359 complete_refs_before_fetch
= 0;
1363 if (!is_local
&& !complete_refs_before_fetch
) {
1364 if (transport_fetch_refs(transport
, mapped_refs
))
1365 die(_("remote transport reported error"));
1369 remote_head
= find_ref_by_name(refs
, "HEAD");
1370 remote_head_points_at
= guess_remote_head(remote_head
, mapped_refs
, 0);
1372 if (option_branch
) {
1373 our_head_points_at
= find_remote_branch(mapped_refs
, option_branch
);
1374 if (!our_head_points_at
)
1375 die(_("Remote branch %s not found in upstream %s"),
1376 option_branch
, remote_name
);
1377 } else if (remote_head_points_at
) {
1378 our_head_points_at
= remote_head_points_at
;
1379 } else if (remote_head
) {
1380 our_head_points_at
= NULL
;
1385 warning(_("You appear to have cloned an empty repository."));
1386 option_no_checkout
= 1;
1389 if (transport_ls_refs_options
.unborn_head_target
&&
1390 skip_prefix(transport_ls_refs_options
.unborn_head_target
,
1391 "refs/heads/", &branch
)) {
1392 unborn_head
= xstrdup(transport_ls_refs_options
.unborn_head_target
);
1394 branch
= git_default_branch_name(0);
1395 unborn_head
= xstrfmt("refs/heads/%s", branch
);
1399 * We may have selected a local default branch name "foo",
1400 * and even though the remote's HEAD does not point there,
1401 * it may still have a "foo" branch. If so, set it up so
1402 * that we can follow the usual checkout code later.
1404 * Note that for an empty repo we'll already have set
1405 * option_no_checkout above, which would work against us here.
1406 * But for an empty repo, find_remote_branch() can never find
1409 our_head_points_at
= find_remote_branch(mapped_refs
, branch
);
1412 write_refspec_config(src_ref_prefix
, our_head_points_at
,
1413 remote_head_points_at
, &branch_top
);
1415 if (filter_options
.choice
)
1416 partial_clone_register(remote_name
, &filter_options
);
1419 clone_local(path
, git_dir
);
1420 else if (mapped_refs
&& complete_refs_before_fetch
) {
1421 if (transport_fetch_refs(transport
, mapped_refs
))
1422 die(_("remote transport reported error"));
1425 update_remote_refs(refs
, mapped_refs
, remote_head_points_at
,
1426 branch_top
.buf
, reflog_msg
.buf
, transport
,
1429 update_head(our_head_points_at
, remote_head
, unborn_head
, reflog_msg
.buf
);
1432 * We want to show progress for recursive submodule clones iff
1433 * we did so for the main clone. But only the transport knows
1434 * the final decision for this flag, so we need to rescue the value
1435 * before we free the transport.
1437 submodule_progress
= transport
->progress
;
1439 transport_unlock_pack(transport
, 0);
1440 transport_disconnect(transport
);
1442 if (option_dissociate
) {
1443 close_object_store(the_repository
->objects
);
1444 dissociate_from_references();
1447 if (option_sparse_checkout
&& git_sparse_checkout_init(dir
))
1450 junk_mode
= JUNK_LEAVE_REPO
;
1451 err
= checkout(submodule_progress
, filter_submodules
);
1454 strbuf_release(&reflog_msg
);
1455 strbuf_release(&branch_top
);
1456 strbuf_release(&key
);
1457 free_refs(mapped_refs
);
1458 free_refs(remote_head_points_at
);
1463 junk_mode
= JUNK_LEAVE_ALL
;
1465 transport_ls_refs_options_release(&transport_ls_refs_options
);