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_COMPATIBILITY_MACROS
15 #include "parse-options.h"
16 #include "fetch-pack.h"
19 #include "object-store.h"
21 #include "tree-walk.h"
22 #include "unpack-trees.h"
23 #include "transport.h"
26 #include "dir-iterator.h"
31 #include "run-command.h"
32 #include "connected.h"
34 #include "list-objects-filter-options.h"
38 * - respect DB_ENVIRONMENT for .git/objects.
40 * Implementation notes:
41 * - dropping use-separate-remote and no-separate-remote compatibility
44 static const char * const builtin_clone_usage
[] = {
45 N_("git clone [<options>] [--] <repo> [<dir>]"),
49 static int option_no_checkout
, option_bare
, option_mirror
, option_single_branch
= -1;
50 static int option_local
= -1, option_no_hardlinks
, option_shared
;
51 static int option_no_tags
;
52 static int option_shallow_submodules
;
54 static char *option_template
, *option_depth
, *option_since
;
55 static char *option_origin
= NULL
;
56 static char *option_branch
= NULL
;
57 static struct string_list option_not
= STRING_LIST_INIT_NODUP
;
58 static const char *real_git_dir
;
59 static char *option_upload_pack
= "git-upload-pack";
60 static int option_verbosity
;
61 static int option_progress
= -1;
62 static int option_sparse_checkout
;
63 static enum transport_family family
;
64 static struct string_list option_config
= STRING_LIST_INIT_NODUP
;
65 static struct string_list option_required_reference
= STRING_LIST_INIT_NODUP
;
66 static struct string_list option_optional_reference
= STRING_LIST_INIT_NODUP
;
67 static int option_dissociate
;
68 static int max_jobs
= -1;
69 static struct string_list option_recurse_submodules
= STRING_LIST_INIT_NODUP
;
70 static struct list_objects_filter_options filter_options
;
71 static struct string_list server_options
= STRING_LIST_INIT_NODUP
;
72 static int option_remote_submodules
;
74 static int recurse_submodules_cb(const struct option
*opt
,
75 const char *arg
, int unset
)
78 string_list_clear((struct string_list
*)opt
->value
, 0);
80 string_list_append((struct string_list
*)opt
->value
, arg
);
82 string_list_append((struct string_list
*)opt
->value
,
83 (const char *)opt
->defval
);
88 static struct option builtin_clone_options
[] = {
89 OPT__VERBOSITY(&option_verbosity
),
90 OPT_BOOL(0, "progress", &option_progress
,
91 N_("force progress reporting")),
92 OPT_BOOL('n', "no-checkout", &option_no_checkout
,
93 N_("don't create a checkout")),
94 OPT_BOOL(0, "bare", &option_bare
, N_("create a bare repository")),
95 OPT_HIDDEN_BOOL(0, "naked", &option_bare
,
96 N_("create a bare repository")),
97 OPT_BOOL(0, "mirror", &option_mirror
,
98 N_("create a mirror repository (implies bare)")),
99 OPT_BOOL('l', "local", &option_local
,
100 N_("to clone from a local repository")),
101 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks
,
102 N_("don't use local hardlinks, always copy")),
103 OPT_BOOL('s', "shared", &option_shared
,
104 N_("setup as shared repository")),
105 OPT_ALIAS(0, "recursive", "recurse-submodules"),
106 { OPTION_CALLBACK
, 0, "recurse-submodules", &option_recurse_submodules
,
107 N_("pathspec"), N_("initialize submodules in the clone"),
108 PARSE_OPT_OPTARG
, recurse_submodules_cb
, (intptr_t)"." },
109 OPT_INTEGER('j', "jobs", &max_jobs
,
110 N_("number of submodules cloned in parallel")),
111 OPT_STRING(0, "template", &option_template
, N_("template-directory"),
112 N_("directory from which templates will be used")),
113 OPT_STRING_LIST(0, "reference", &option_required_reference
, N_("repo"),
114 N_("reference repository")),
115 OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference
,
116 N_("repo"), N_("reference repository")),
117 OPT_BOOL(0, "dissociate", &option_dissociate
,
118 N_("use --reference only while cloning")),
119 OPT_STRING('o', "origin", &option_origin
, N_("name"),
120 N_("use <name> instead of 'origin' to track upstream")),
121 OPT_STRING('b', "branch", &option_branch
, N_("branch"),
122 N_("checkout <branch> instead of the remote's HEAD")),
123 OPT_STRING('u', "upload-pack", &option_upload_pack
, N_("path"),
124 N_("path to git-upload-pack on the remote")),
125 OPT_STRING(0, "depth", &option_depth
, N_("depth"),
126 N_("create a shallow clone of that depth")),
127 OPT_STRING(0, "shallow-since", &option_since
, N_("time"),
128 N_("create a shallow clone since a specific time")),
129 OPT_STRING_LIST(0, "shallow-exclude", &option_not
, N_("revision"),
130 N_("deepen history of shallow clone, excluding rev")),
131 OPT_BOOL(0, "single-branch", &option_single_branch
,
132 N_("clone only one branch, HEAD or --branch")),
133 OPT_BOOL(0, "no-tags", &option_no_tags
,
134 N_("don't clone any tags, and make later fetches not to follow them")),
135 OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules
,
136 N_("any cloned submodules will be shallow")),
137 OPT_STRING(0, "separate-git-dir", &real_git_dir
, N_("gitdir"),
138 N_("separate git dir from working tree")),
139 OPT_STRING_LIST('c', "config", &option_config
, N_("key=value"),
140 N_("set config inside the new repository")),
141 OPT_STRING_LIST(0, "server-option", &server_options
,
142 N_("server-specific"), N_("option to transmit")),
143 OPT_SET_INT('4', "ipv4", &family
, N_("use IPv4 addresses only"),
144 TRANSPORT_FAMILY_IPV4
),
145 OPT_SET_INT('6', "ipv6", &family
, N_("use IPv6 addresses only"),
146 TRANSPORT_FAMILY_IPV6
),
147 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options
),
148 OPT_BOOL(0, "remote-submodules", &option_remote_submodules
,
149 N_("any cloned submodules will use their remote-tracking branch")),
150 OPT_BOOL(0, "sparse", &option_sparse_checkout
,
151 N_("initialize sparse-checkout file to include only files at root")),
155 static const char *get_repo_path_1(struct strbuf
*path
, int *is_bundle
)
157 static char *suffix
[] = { "/.git", "", ".git/.git", ".git" };
158 static char *bundle_suffix
[] = { ".bundle", "" };
159 size_t baselen
= path
->len
;
163 for (i
= 0; i
< ARRAY_SIZE(suffix
); i
++) {
164 strbuf_setlen(path
, baselen
);
165 strbuf_addstr(path
, suffix
[i
]);
166 if (stat(path
->buf
, &st
))
168 if (S_ISDIR(st
.st_mode
) && is_git_directory(path
->buf
)) {
171 } else if (S_ISREG(st
.st_mode
) && st
.st_size
> 8) {
172 /* Is it a "gitfile"? */
175 int len
, fd
= open(path
->buf
, O_RDONLY
);
178 len
= read_in_full(fd
, signature
, 8);
180 if (len
!= 8 || strncmp(signature
, "gitdir: ", 8))
182 dst
= read_gitfile(path
->buf
);
190 for (i
= 0; i
< ARRAY_SIZE(bundle_suffix
); i
++) {
191 strbuf_setlen(path
, baselen
);
192 strbuf_addstr(path
, bundle_suffix
[i
]);
193 if (!stat(path
->buf
, &st
) && S_ISREG(st
.st_mode
)) {
202 static char *get_repo_path(const char *repo
, int *is_bundle
)
204 struct strbuf path
= STRBUF_INIT
;
208 strbuf_addstr(&path
, repo
);
209 raw
= get_repo_path_1(&path
, is_bundle
);
210 canon
= raw
? absolute_pathdup(raw
) : NULL
;
211 strbuf_release(&path
);
215 static char *guess_dir_name(const char *repo
, int is_bundle
, int is_bare
)
217 const char *end
= repo
+ strlen(repo
), *start
, *ptr
;
224 start
= strstr(repo
, "://");
231 * Skip authentication data. The stripping does happen
232 * greedily, such that we strip up to the last '@' inside
235 for (ptr
= start
; ptr
< end
&& !is_dir_sep(*ptr
); ptr
++) {
241 * Strip trailing spaces, slashes and /.git
243 while (start
< end
&& (is_dir_sep(end
[-1]) || isspace(end
[-1])))
245 if (end
- start
> 5 && is_dir_sep(end
[-5]) &&
246 !strncmp(end
- 4, ".git", 4)) {
248 while (start
< end
&& is_dir_sep(end
[-1]))
253 * Strip trailing port number if we've got only a
254 * hostname (that is, there is no dir separator but a
255 * colon). This check is required such that we do not
256 * strip URI's like '/foo/bar:2222.git', which should
257 * result in a dir '2222' being guessed due to backwards
260 if (memchr(start
, '/', end
- start
) == NULL
261 && memchr(start
, ':', end
- start
) != NULL
) {
263 while (start
< ptr
&& isdigit(ptr
[-1]) && ptr
[-1] != ':')
265 if (start
< ptr
&& ptr
[-1] == ':')
270 * Find last component. To remain backwards compatible we
271 * also regard colons as path separators, such that
272 * cloning a repository 'foo:bar.git' would result in a
273 * directory 'bar' being guessed.
276 while (start
< ptr
&& !is_dir_sep(ptr
[-1]) && ptr
[-1] != ':')
281 * Strip .{bundle,git}.
284 strip_suffix_mem(start
, &len
, is_bundle
? ".bundle" : ".git");
286 if (!len
|| (len
== 1 && *start
== '/'))
287 die(_("No directory name could be guessed.\n"
288 "Please specify a directory on the command line"));
291 dir
= xstrfmt("%.*s.git", (int)len
, start
);
293 dir
= xstrndup(start
, len
);
295 * Replace sequences of 'control' characters and whitespace
296 * with one ascii space, remove leading and trailing spaces.
300 int prev_space
= 1 /* strip leading whitespace */;
301 for (end
= dir
; *end
; ++end
) {
303 if ((unsigned char)ch
< '\x20')
314 if (out
> dir
&& prev_space
)
320 static void strip_trailing_slashes(char *dir
)
322 char *end
= dir
+ strlen(dir
);
324 while (dir
< end
- 1 && is_dir_sep(end
[-1]))
329 static int add_one_reference(struct string_list_item
*item
, void *cb_data
)
331 struct strbuf err
= STRBUF_INIT
;
332 int *required
= cb_data
;
333 char *ref_git
= compute_alternate_path(item
->string
, &err
);
340 _("info: Could not add alternate for '%s': %s\n"),
341 item
->string
, err
.buf
);
343 struct strbuf sb
= STRBUF_INIT
;
344 strbuf_addf(&sb
, "%s/objects", ref_git
);
345 add_to_alternates_file(sb
.buf
);
349 strbuf_release(&err
);
354 static void setup_reference(void)
357 for_each_string_list(&option_required_reference
,
358 add_one_reference
, &required
);
360 for_each_string_list(&option_optional_reference
,
361 add_one_reference
, &required
);
364 static void copy_alternates(struct strbuf
*src
, const char *src_repo
)
367 * Read from the source objects/info/alternates file
368 * and copy the entries to corresponding file in the
369 * destination repository with add_to_alternates_file().
370 * Both src and dst have "$path/objects/info/alternates".
372 * Instead of copying bit-for-bit from the original,
373 * we need to append to existing one so that the already
374 * created entry via "clone -s" is not lost, and also
375 * to turn entries with paths relative to the original
376 * absolute, so that they can be used in the new repository.
378 FILE *in
= xfopen(src
->buf
, "r");
379 struct strbuf line
= STRBUF_INIT
;
381 while (strbuf_getline(&line
, in
) != EOF
) {
383 if (!line
.len
|| line
.buf
[0] == '#')
385 if (is_absolute_path(line
.buf
)) {
386 add_to_alternates_file(line
.buf
);
389 abs_path
= mkpathdup("%s/objects/%s", src_repo
, line
.buf
);
390 if (!normalize_path_copy(abs_path
, abs_path
))
391 add_to_alternates_file(abs_path
);
393 warning("skipping invalid relative alternate: %s/%s",
397 strbuf_release(&line
);
401 static void mkdir_if_missing(const char *pathname
, mode_t mode
)
405 if (!mkdir(pathname
, mode
))
409 die_errno(_("failed to create directory '%s'"), pathname
);
410 else if (stat(pathname
, &st
))
411 die_errno(_("failed to stat '%s'"), pathname
);
412 else if (!S_ISDIR(st
.st_mode
))
413 die(_("%s exists and is not a directory"), pathname
);
416 static void copy_or_link_directory(struct strbuf
*src
, struct strbuf
*dest
,
417 const char *src_repo
)
419 int src_len
, dest_len
;
420 struct dir_iterator
*iter
;
424 mkdir_if_missing(dest
->buf
, 0777);
426 flags
= DIR_ITERATOR_PEDANTIC
| DIR_ITERATOR_FOLLOW_SYMLINKS
;
427 iter
= dir_iterator_begin(src
->buf
, flags
);
430 die_errno(_("failed to start iterator over '%s'"), src
->buf
);
432 strbuf_addch(src
, '/');
434 strbuf_addch(dest
, '/');
435 dest_len
= dest
->len
;
437 while ((iter_status
= dir_iterator_advance(iter
)) == ITER_OK
) {
438 strbuf_setlen(src
, src_len
);
439 strbuf_addstr(src
, iter
->relative_path
);
440 strbuf_setlen(dest
, dest_len
);
441 strbuf_addstr(dest
, iter
->relative_path
);
443 if (S_ISDIR(iter
->st
.st_mode
)) {
444 mkdir_if_missing(dest
->buf
, 0777);
448 /* Files that cannot be copied bit-for-bit... */
449 if (!fspathcmp(iter
->relative_path
, "info/alternates")) {
450 copy_alternates(src
, src_repo
);
454 if (unlink(dest
->buf
) && errno
!= ENOENT
)
455 die_errno(_("failed to unlink '%s'"), dest
->buf
);
456 if (!option_no_hardlinks
) {
457 if (!link(real_path(src
->buf
), dest
->buf
))
459 if (option_local
> 0)
460 die_errno(_("failed to create link '%s'"), dest
->buf
);
461 option_no_hardlinks
= 1;
463 if (copy_file_with_time(dest
->buf
, src
->buf
, 0666))
464 die_errno(_("failed to copy file to '%s'"), dest
->buf
);
467 if (iter_status
!= ITER_DONE
) {
468 strbuf_setlen(src
, src_len
);
469 die(_("failed to iterate over '%s'"), src
->buf
);
473 static void clone_local(const char *src_repo
, const char *dest_repo
)
476 struct strbuf alt
= STRBUF_INIT
;
477 get_common_dir(&alt
, src_repo
);
478 strbuf_addstr(&alt
, "/objects");
479 add_to_alternates_file(alt
.buf
);
480 strbuf_release(&alt
);
482 struct strbuf src
= STRBUF_INIT
;
483 struct strbuf dest
= STRBUF_INIT
;
484 get_common_dir(&src
, src_repo
);
485 get_common_dir(&dest
, dest_repo
);
486 strbuf_addstr(&src
, "/objects");
487 strbuf_addstr(&dest
, "/objects");
488 copy_or_link_directory(&src
, &dest
, src_repo
);
489 strbuf_release(&src
);
490 strbuf_release(&dest
);
493 if (0 <= option_verbosity
)
494 fprintf(stderr
, _("done.\n"));
497 static const char *junk_work_tree
;
498 static int junk_work_tree_flags
;
499 static const char *junk_git_dir
;
500 static int junk_git_dir_flags
;
505 } junk_mode
= JUNK_LEAVE_NONE
;
507 static const char junk_leave_repo_msg
[] =
508 N_("Clone succeeded, but checkout failed.\n"
509 "You can inspect what was checked out with 'git status'\n"
510 "and retry with 'git restore --source=HEAD :/'\n");
512 static void remove_junk(void)
514 struct strbuf sb
= STRBUF_INIT
;
517 case JUNK_LEAVE_REPO
:
518 warning("%s", _(junk_leave_repo_msg
));
523 /* proceed to removal */
528 strbuf_addstr(&sb
, junk_git_dir
);
529 remove_dir_recursively(&sb
, junk_git_dir_flags
);
532 if (junk_work_tree
) {
533 strbuf_addstr(&sb
, junk_work_tree
);
534 remove_dir_recursively(&sb
, junk_work_tree_flags
);
539 static void remove_junk_on_signal(int signo
)
546 static struct ref
*find_remote_branch(const struct ref
*refs
, const char *branch
)
549 struct strbuf head
= STRBUF_INIT
;
550 strbuf_addstr(&head
, "refs/heads/");
551 strbuf_addstr(&head
, branch
);
552 ref
= find_ref_by_name(refs
, head
.buf
);
553 strbuf_release(&head
);
558 strbuf_addstr(&head
, "refs/tags/");
559 strbuf_addstr(&head
, branch
);
560 ref
= find_ref_by_name(refs
, head
.buf
);
561 strbuf_release(&head
);
566 static struct ref
*wanted_peer_refs(const struct ref
*refs
,
567 struct refspec
*refspec
)
569 struct ref
*head
= copy_ref(find_ref_by_name(refs
, "HEAD"));
570 struct ref
*local_refs
= head
;
571 struct ref
**tail
= head
? &head
->next
: &local_refs
;
573 if (option_single_branch
) {
574 struct ref
*remote_head
= NULL
;
577 remote_head
= guess_remote_head(head
, refs
, 0);
581 remote_head
= copy_ref(find_remote_branch(refs
, option_branch
));
584 if (!remote_head
&& option_branch
)
585 warning(_("Could not find remote branch %s to clone."),
589 for (i
= 0; i
< refspec
->nr
; i
++)
590 get_fetch_map(remote_head
, &refspec
->items
[i
],
593 /* if --branch=tag, pull the requested tag explicitly */
594 get_fetch_map(remote_head
, tag_refspec
, &tail
, 0);
598 for (i
= 0; i
< refspec
->nr
; i
++)
599 get_fetch_map(refs
, &refspec
->items
[i
], &tail
, 0);
602 if (!option_mirror
&& !option_single_branch
&& !option_no_tags
)
603 get_fetch_map(refs
, tag_refspec
, &tail
, 0);
608 static void write_remote_refs(const struct ref
*local_refs
)
612 struct ref_transaction
*t
;
613 struct strbuf err
= STRBUF_INIT
;
615 t
= ref_transaction_begin(&err
);
619 for (r
= local_refs
; r
; r
= r
->next
) {
622 if (ref_transaction_create(t
, r
->peer_ref
->name
, &r
->old_oid
,
627 if (initial_ref_transaction_commit(t
, &err
))
630 strbuf_release(&err
);
631 ref_transaction_free(t
);
634 static void write_followtags(const struct ref
*refs
, const char *msg
)
636 const struct ref
*ref
;
637 for (ref
= refs
; ref
; ref
= ref
->next
) {
638 if (!starts_with(ref
->name
, "refs/tags/"))
640 if (ends_with(ref
->name
, "^{}"))
642 if (!has_object_file(&ref
->old_oid
))
644 update_ref(msg
, ref
->name
, &ref
->old_oid
, NULL
, 0,
645 UPDATE_REFS_DIE_ON_ERR
);
649 static int iterate_ref_map(void *cb_data
, struct object_id
*oid
)
651 struct ref
**rm
= cb_data
;
652 struct ref
*ref
= *rm
;
655 * Skip anything missing a peer_ref, which we are not
656 * actually going to write a ref for.
658 while (ref
&& !ref
->peer_ref
)
660 /* Returning -1 notes "end of list" to the caller. */
664 oidcpy(oid
, &ref
->old_oid
);
669 static void update_remote_refs(const struct ref
*refs
,
670 const struct ref
*mapped_refs
,
671 const struct ref
*remote_head_points_at
,
672 const char *branch_top
,
674 struct transport
*transport
,
675 int check_connectivity
,
676 int check_refs_are_promisor_objects_only
)
678 const struct ref
*rm
= mapped_refs
;
680 if (check_connectivity
) {
681 struct check_connected_options opt
= CHECK_CONNECTED_INIT
;
683 opt
.transport
= transport
;
684 opt
.progress
= transport
->progress
;
685 opt
.check_refs_are_promisor_objects_only
=
686 !!check_refs_are_promisor_objects_only
;
688 if (check_connected(iterate_ref_map
, &rm
, &opt
))
689 die(_("remote did not send all necessary objects"));
693 write_remote_refs(mapped_refs
);
694 if (option_single_branch
&& !option_no_tags
)
695 write_followtags(refs
, msg
);
698 if (remote_head_points_at
&& !option_bare
) {
699 struct strbuf head_ref
= STRBUF_INIT
;
700 strbuf_addstr(&head_ref
, branch_top
);
701 strbuf_addstr(&head_ref
, "HEAD");
702 if (create_symref(head_ref
.buf
,
703 remote_head_points_at
->peer_ref
->name
,
705 die(_("unable to update %s"), head_ref
.buf
);
706 strbuf_release(&head_ref
);
710 static void update_head(const struct ref
*our
, const struct ref
*remote
,
714 if (our
&& skip_prefix(our
->name
, "refs/heads/", &head
)) {
715 /* Local default branch link */
716 if (create_symref("HEAD", our
->name
, NULL
) < 0)
717 die(_("unable to update HEAD"));
719 update_ref(msg
, "HEAD", &our
->old_oid
, NULL
, 0,
720 UPDATE_REFS_DIE_ON_ERR
);
721 install_branch_config(0, head
, option_origin
, our
->name
);
724 struct commit
*c
= lookup_commit_reference(the_repository
,
726 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
727 update_ref(msg
, "HEAD", &c
->object
.oid
, NULL
, REF_NO_DEREF
,
728 UPDATE_REFS_DIE_ON_ERR
);
731 * We know remote HEAD points to a non-branch, or
732 * HEAD points to a branch but we don't know which one.
733 * Detach HEAD in all these cases.
735 update_ref(msg
, "HEAD", &remote
->old_oid
, NULL
, REF_NO_DEREF
,
736 UPDATE_REFS_DIE_ON_ERR
);
740 static int git_sparse_checkout_init(const char *repo
)
742 struct argv_array argv
= ARGV_ARRAY_INIT
;
744 argv_array_pushl(&argv
, "-C", repo
, "sparse-checkout", "init", NULL
);
747 * We must apply the setting in the current process
748 * for the later checkout to use the sparse-checkout file.
750 core_apply_sparse_checkout
= 1;
752 if (run_command_v_opt(argv
.argv
, RUN_GIT_CMD
)) {
753 error(_("failed to initialize sparse-checkout"));
757 argv_array_clear(&argv
);
761 static int checkout(int submodule_progress
)
763 struct object_id oid
;
765 struct lock_file lock_file
= LOCK_INIT
;
766 struct unpack_trees_options opts
;
771 if (option_no_checkout
)
774 head
= resolve_refdup("HEAD", RESOLVE_REF_READING
, &oid
, NULL
);
776 warning(_("remote HEAD refers to nonexistent ref, "
777 "unable to checkout.\n"));
780 if (!strcmp(head
, "HEAD")) {
781 if (advice_detached_head
)
782 detach_advice(oid_to_hex(&oid
));
784 if (!starts_with(head
, "refs/heads/"))
785 die(_("HEAD not found below refs/heads!"));
789 /* We need to be in the new work tree for the checkout */
792 hold_locked_index(&lock_file
, LOCK_DIE_ON_ERROR
);
794 memset(&opts
, 0, sizeof opts
);
798 opts
.fn
= oneway_merge
;
799 opts
.verbose_update
= (option_verbosity
>= 0);
800 opts
.src_index
= &the_index
;
801 opts
.dst_index
= &the_index
;
803 tree
= parse_tree_indirect(&oid
);
805 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
806 if (unpack_trees(1, &t
, &opts
) < 0)
807 die(_("unable to checkout working tree"));
809 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
810 die(_("unable to write new index file"));
812 err
|= run_hook_le(NULL
, "post-checkout", oid_to_hex(&null_oid
),
813 oid_to_hex(&oid
), "1", NULL
);
815 if (!err
&& (option_recurse_submodules
.nr
> 0)) {
816 struct argv_array args
= ARGV_ARRAY_INIT
;
817 argv_array_pushl(&args
, "submodule", "update", "--require-init", "--recursive", NULL
);
819 if (option_shallow_submodules
== 1)
820 argv_array_push(&args
, "--depth=1");
823 argv_array_pushf(&args
, "--jobs=%d", max_jobs
);
825 if (submodule_progress
)
826 argv_array_push(&args
, "--progress");
828 if (option_verbosity
< 0)
829 argv_array_push(&args
, "--quiet");
831 if (option_remote_submodules
) {
832 argv_array_push(&args
, "--remote");
833 argv_array_push(&args
, "--no-fetch");
836 err
= run_command_v_opt(args
.argv
, RUN_GIT_CMD
);
837 argv_array_clear(&args
);
843 static int write_one_config(const char *key
, const char *value
, void *data
)
845 return git_config_set_multivar_gently(key
,
846 value
? value
: "true",
847 CONFIG_REGEX_NONE
, 0);
850 static void write_config(struct string_list
*config
)
854 for (i
= 0; i
< config
->nr
; i
++) {
855 if (git_config_parse_parameter(config
->items
[i
].string
,
856 write_one_config
, NULL
) < 0)
857 die(_("unable to write parameters to config file"));
861 static void write_refspec_config(const char *src_ref_prefix
,
862 const struct ref
*our_head_points_at
,
863 const struct ref
*remote_head_points_at
,
864 struct strbuf
*branch_top
)
866 struct strbuf key
= STRBUF_INIT
;
867 struct strbuf value
= STRBUF_INIT
;
869 if (option_mirror
|| !option_bare
) {
870 if (option_single_branch
&& !option_mirror
) {
872 if (starts_with(our_head_points_at
->name
, "refs/tags/"))
873 strbuf_addf(&value
, "+%s:%s", our_head_points_at
->name
,
874 our_head_points_at
->name
);
876 strbuf_addf(&value
, "+%s:%s%s", our_head_points_at
->name
,
877 branch_top
->buf
, option_branch
);
878 } else if (remote_head_points_at
) {
879 const char *head
= remote_head_points_at
->name
;
880 if (!skip_prefix(head
, "refs/heads/", &head
))
881 BUG("remote HEAD points at non-head?");
883 strbuf_addf(&value
, "+%s:%s%s", remote_head_points_at
->name
,
884 branch_top
->buf
, head
);
887 * otherwise, the next "git fetch" will
888 * simply fetch from HEAD without updating
889 * any remote-tracking branch, which is what
893 strbuf_addf(&value
, "+%s*:%s*", src_ref_prefix
, branch_top
->buf
);
895 /* Configure the remote */
897 strbuf_addf(&key
, "remote.%s.fetch", option_origin
);
898 git_config_set_multivar(key
.buf
, value
.buf
, "^$", 0);
902 strbuf_addf(&key
, "remote.%s.mirror", option_origin
);
903 git_config_set(key
.buf
, "true");
909 strbuf_release(&key
);
910 strbuf_release(&value
);
913 static void dissociate_from_references(void)
915 static const char* argv
[] = { "repack", "-a", "-d", NULL
};
916 char *alternates
= git_pathdup("objects/info/alternates");
918 if (!access(alternates
, F_OK
)) {
919 if (run_command_v_opt(argv
, RUN_GIT_CMD
|RUN_COMMAND_NO_STDIN
))
920 die(_("cannot repack to clean up"));
921 if (unlink(alternates
) && errno
!= ENOENT
)
922 die_errno(_("cannot unlink temporary alternates file"));
927 static int path_exists(const char *path
)
930 return !stat(path
, &sb
);
933 int cmd_clone(int argc
, const char **argv
, const char *prefix
)
935 int is_bundle
= 0, is_local
;
936 const char *repo_name
, *repo
, *work_tree
, *git_dir
;
939 const struct ref
*refs
, *remote_head
;
940 const struct ref
*remote_head_points_at
;
941 const struct ref
*our_head_points_at
;
942 struct ref
*mapped_refs
;
943 const struct ref
*ref
;
944 struct strbuf key
= STRBUF_INIT
;
945 struct strbuf default_refspec
= STRBUF_INIT
;
946 struct strbuf branch_top
= STRBUF_INIT
, reflog_msg
= STRBUF_INIT
;
947 struct transport
*transport
= NULL
;
948 const char *src_ref_prefix
= "refs/heads/";
949 struct remote
*remote
;
950 int err
= 0, complete_refs_before_fetch
= 1;
951 int submodule_progress
;
953 struct argv_array ref_prefixes
= ARGV_ARRAY_INIT
;
955 packet_trace_identity("clone");
956 argc
= parse_options(argc
, argv
, prefix
, builtin_clone_options
,
957 builtin_clone_usage
, 0);
960 usage_msg_opt(_("Too many arguments."),
961 builtin_clone_usage
, builtin_clone_options
);
964 usage_msg_opt(_("You must specify a repository to clone."),
965 builtin_clone_usage
, builtin_clone_options
);
967 if (option_depth
|| option_since
|| option_not
.nr
)
969 if (option_single_branch
== -1)
970 option_single_branch
= deepen
? 1 : 0;
977 die(_("--bare and --origin %s options are incompatible."),
980 die(_("--bare and --separate-git-dir are incompatible."));
981 option_no_checkout
= 1;
985 option_origin
= "origin";
989 path
= get_repo_path(repo_name
, &is_bundle
);
991 repo
= absolute_pathdup(repo_name
);
992 else if (!strchr(repo_name
, ':'))
993 die(_("repository '%s' does not exist"), repo_name
);
997 /* no need to be strict, transport_set_option() will validate it again */
998 if (option_depth
&& atoi(option_depth
) < 1)
999 die(_("depth %s is not a positive number"), option_depth
);
1002 dir
= xstrdup(argv
[1]);
1004 dir
= guess_dir_name(repo_name
, is_bundle
, option_bare
);
1005 strip_trailing_slashes(dir
);
1007 dest_exists
= path_exists(dir
);
1008 if (dest_exists
&& !is_empty_dir(dir
))
1009 die(_("destination path '%s' already exists and is not "
1010 "an empty directory."), dir
);
1012 strbuf_addf(&reflog_msg
, "clone: from %s", repo
);
1017 work_tree
= getenv("GIT_WORK_TREE");
1018 if (work_tree
&& path_exists(work_tree
))
1019 die(_("working tree '%s' already exists."), work_tree
);
1022 if (option_bare
|| work_tree
)
1023 git_dir
= xstrdup(dir
);
1026 git_dir
= mkpathdup("%s/.git", dir
);
1029 atexit(remove_junk
);
1030 sigchain_push_common(remove_junk_on_signal
);
1033 if (safe_create_leading_directories_const(work_tree
) < 0)
1034 die_errno(_("could not create leading directories of '%s'"),
1037 junk_work_tree_flags
|= REMOVE_DIR_KEEP_TOPLEVEL
;
1038 else if (mkdir(work_tree
, 0777))
1039 die_errno(_("could not create work tree dir '%s'"),
1041 junk_work_tree
= work_tree
;
1042 set_git_work_tree(work_tree
);
1046 if (path_exists(real_git_dir
))
1047 junk_git_dir_flags
|= REMOVE_DIR_KEEP_TOPLEVEL
;
1048 junk_git_dir
= real_git_dir
;
1051 junk_git_dir_flags
|= REMOVE_DIR_KEEP_TOPLEVEL
;
1052 junk_git_dir
= git_dir
;
1054 if (safe_create_leading_directories_const(git_dir
) < 0)
1055 die(_("could not create leading directories of '%s'"), git_dir
);
1057 if (0 <= option_verbosity
) {
1059 fprintf(stderr
, _("Cloning into bare repository '%s'...\n"), dir
);
1061 fprintf(stderr
, _("Cloning into '%s'...\n"), dir
);
1064 if (option_recurse_submodules
.nr
> 0) {
1065 struct string_list_item
*item
;
1066 struct strbuf sb
= STRBUF_INIT
;
1068 /* remove duplicates */
1069 string_list_sort(&option_recurse_submodules
);
1070 string_list_remove_duplicates(&option_recurse_submodules
, 0);
1073 * NEEDSWORK: In a multi-working-tree world, this needs to be
1074 * set in the per-worktree config.
1076 for_each_string_list_item(item
, &option_recurse_submodules
) {
1077 strbuf_addf(&sb
, "submodule.active=%s",
1079 string_list_append(&option_config
,
1080 strbuf_detach(&sb
, NULL
));
1083 if (option_required_reference
.nr
&&
1084 option_optional_reference
.nr
)
1085 die(_("clone --recursive is not compatible with "
1086 "both --reference and --reference-if-able"));
1087 else if (option_required_reference
.nr
) {
1088 string_list_append(&option_config
,
1089 "submodule.alternateLocation=superproject");
1090 string_list_append(&option_config
,
1091 "submodule.alternateErrorStrategy=die");
1092 } else if (option_optional_reference
.nr
) {
1093 string_list_append(&option_config
,
1094 "submodule.alternateLocation=superproject");
1095 string_list_append(&option_config
,
1096 "submodule.alternateErrorStrategy=info");
1100 init_db(git_dir
, real_git_dir
, option_template
, INIT_DB_QUIET
);
1103 git_dir
= real_git_dir
;
1105 write_config(&option_config
);
1107 git_config(git_default_config
, NULL
);
1111 src_ref_prefix
= "refs/";
1112 strbuf_addstr(&branch_top
, src_ref_prefix
);
1114 git_config_set("core.bare", "true");
1116 strbuf_addf(&branch_top
, "refs/remotes/%s/", option_origin
);
1119 strbuf_addf(&key
, "remote.%s.url", option_origin
);
1120 git_config_set(key
.buf
, repo
);
1123 if (option_no_tags
) {
1124 strbuf_addf(&key
, "remote.%s.tagOpt", option_origin
);
1125 git_config_set(key
.buf
, "--no-tags");
1129 if (option_required_reference
.nr
|| option_optional_reference
.nr
)
1132 if (option_sparse_checkout
&& git_sparse_checkout_init(dir
))
1135 remote
= remote_get(option_origin
);
1137 strbuf_addf(&default_refspec
, "+%s*:%s*", src_ref_prefix
,
1139 refspec_append(&remote
->fetch
, default_refspec
.buf
);
1141 transport
= transport_get(remote
, remote
->url
[0]);
1142 transport_set_verbosity(transport
, option_verbosity
, option_progress
);
1143 transport
->family
= family
;
1145 path
= get_repo_path(remote
->url
[0], &is_bundle
);
1146 is_local
= option_local
!= 0 && path
&& !is_bundle
;
1149 warning(_("--depth is ignored in local clones; use file:// instead."));
1151 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
1153 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
1154 if (filter_options
.choice
)
1155 warning(_("--filter is ignored in local clones; use file:// instead."));
1156 if (!access(mkpath("%s/shallow", path
), F_OK
)) {
1157 if (option_local
> 0)
1158 warning(_("source repository is shallow, ignoring --local"));
1162 if (option_local
> 0 && !is_local
)
1163 warning(_("--local is ignored"));
1164 transport
->cloning
= 1;
1166 transport_set_option(transport
, TRANS_OPT_KEEP
, "yes");
1169 transport_set_option(transport
, TRANS_OPT_DEPTH
,
1172 transport_set_option(transport
, TRANS_OPT_DEEPEN_SINCE
,
1175 transport_set_option(transport
, TRANS_OPT_DEEPEN_NOT
,
1176 (const char *)&option_not
);
1177 if (option_single_branch
)
1178 transport_set_option(transport
, TRANS_OPT_FOLLOWTAGS
, "1");
1180 if (option_upload_pack
)
1181 transport_set_option(transport
, TRANS_OPT_UPLOADPACK
,
1182 option_upload_pack
);
1184 if (server_options
.nr
)
1185 transport
->server_options
= &server_options
;
1187 if (filter_options
.choice
) {
1189 expand_list_objects_filter_spec(&filter_options
);
1190 transport_set_option(transport
, TRANS_OPT_LIST_OBJECTS_FILTER
,
1192 transport_set_option(transport
, TRANS_OPT_FROM_PROMISOR
, "1");
1195 if (transport
->smart_options
&& !deepen
&& !filter_options
.choice
)
1196 transport
->smart_options
->check_self_contained_and_connected
= 1;
1199 argv_array_push(&ref_prefixes
, "HEAD");
1200 refspec_ref_prefixes(&remote
->fetch
, &ref_prefixes
);
1202 expand_ref_prefix(&ref_prefixes
, option_branch
);
1203 if (!option_no_tags
)
1204 argv_array_push(&ref_prefixes
, "refs/tags/");
1206 refs
= transport_get_remote_refs(transport
, &ref_prefixes
);
1209 mapped_refs
= wanted_peer_refs(refs
, &remote
->fetch
);
1211 * transport_get_remote_refs() may return refs with null sha-1
1212 * in mapped_refs (see struct transport->get_refs_list
1213 * comment). In that case we need fetch it early because
1214 * remote_head code below relies on it.
1216 * for normal clones, transport_get_remote_refs() should
1217 * return reliable ref set, we can delay cloning until after
1218 * remote HEAD check.
1220 for (ref
= refs
; ref
; ref
= ref
->next
)
1221 if (is_null_oid(&ref
->old_oid
)) {
1222 complete_refs_before_fetch
= 0;
1226 if (!is_local
&& !complete_refs_before_fetch
)
1227 transport_fetch_refs(transport
, mapped_refs
);
1229 remote_head
= find_ref_by_name(refs
, "HEAD");
1230 remote_head_points_at
=
1231 guess_remote_head(remote_head
, mapped_refs
, 0);
1233 if (option_branch
) {
1234 our_head_points_at
=
1235 find_remote_branch(mapped_refs
, option_branch
);
1237 if (!our_head_points_at
)
1238 die(_("Remote branch %s not found in upstream %s"),
1239 option_branch
, option_origin
);
1242 our_head_points_at
= remote_head_points_at
;
1246 die(_("Remote branch %s not found in upstream %s"),
1247 option_branch
, option_origin
);
1249 warning(_("You appear to have cloned an empty repository."));
1251 our_head_points_at
= NULL
;
1252 remote_head_points_at
= NULL
;
1254 option_no_checkout
= 1;
1256 install_branch_config(0, "master", option_origin
,
1257 "refs/heads/master");
1260 write_refspec_config(src_ref_prefix
, our_head_points_at
,
1261 remote_head_points_at
, &branch_top
);
1263 if (filter_options
.choice
)
1264 partial_clone_register(option_origin
, &filter_options
);
1267 clone_local(path
, git_dir
);
1268 else if (refs
&& complete_refs_before_fetch
)
1269 transport_fetch_refs(transport
, mapped_refs
);
1271 update_remote_refs(refs
, mapped_refs
, remote_head_points_at
,
1272 branch_top
.buf
, reflog_msg
.buf
, transport
,
1273 !is_local
, filter_options
.choice
);
1275 update_head(our_head_points_at
, remote_head
, reflog_msg
.buf
);
1278 * We want to show progress for recursive submodule clones iff
1279 * we did so for the main clone. But only the transport knows
1280 * the final decision for this flag, so we need to rescue the value
1281 * before we free the transport.
1283 submodule_progress
= transport
->progress
;
1285 transport_unlock_pack(transport
);
1286 transport_disconnect(transport
);
1288 if (option_dissociate
) {
1289 close_object_store(the_repository
->objects
);
1290 dissociate_from_references();
1293 junk_mode
= JUNK_LEAVE_REPO
;
1294 err
= checkout(submodule_progress
);
1296 strbuf_release(&reflog_msg
);
1297 strbuf_release(&branch_top
);
1298 strbuf_release(&key
);
1299 strbuf_release(&default_refspec
);
1300 junk_mode
= JUNK_LEAVE_ALL
;
1302 argv_array_clear(&ref_prefixes
);