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.
14 #include "parse-options.h"
15 #include "fetch-pack.h"
18 #include "object-store.h"
20 #include "tree-walk.h"
21 #include "unpack-trees.h"
22 #include "transport.h"
28 #include "run-command.h"
29 #include "connected.h"
31 #include "list-objects-filter-options.h"
32 #include "object-store.h"
36 * - respect DB_ENVIRONMENT for .git/objects.
38 * Implementation notes:
39 * - dropping use-separate-remote and no-separate-remote compatibility
42 static const char * const builtin_clone_usage
[] = {
43 N_("git clone [<options>] [--] <repo> [<dir>]"),
47 static int option_no_checkout
, option_bare
, option_mirror
, option_single_branch
= -1;
48 static int option_local
= -1, option_no_hardlinks
, option_shared
;
49 static int option_no_tags
;
50 static int option_shallow_submodules
;
52 static char *option_template
, *option_depth
, *option_since
;
53 static char *option_origin
= NULL
;
54 static char *option_branch
= NULL
;
55 static struct string_list option_not
= STRING_LIST_INIT_NODUP
;
56 static const char *real_git_dir
;
57 static char *option_upload_pack
= "git-upload-pack";
58 static int option_verbosity
;
59 static int option_progress
= -1;
60 static enum transport_family family
;
61 static struct string_list option_config
= STRING_LIST_INIT_NODUP
;
62 static struct string_list option_required_reference
= STRING_LIST_INIT_NODUP
;
63 static struct string_list option_optional_reference
= STRING_LIST_INIT_NODUP
;
64 static int option_dissociate
;
65 static int max_jobs
= -1;
66 static struct string_list option_recurse_submodules
= STRING_LIST_INIT_NODUP
;
67 static struct list_objects_filter_options filter_options
;
69 static int recurse_submodules_cb(const struct option
*opt
,
70 const char *arg
, int unset
)
73 string_list_clear((struct string_list
*)opt
->value
, 0);
75 string_list_append((struct string_list
*)opt
->value
, arg
);
77 string_list_append((struct string_list
*)opt
->value
,
78 (const char *)opt
->defval
);
83 static struct option builtin_clone_options
[] = {
84 OPT__VERBOSITY(&option_verbosity
),
85 OPT_BOOL(0, "progress", &option_progress
,
86 N_("force progress reporting")),
87 OPT_BOOL('n', "no-checkout", &option_no_checkout
,
88 N_("don't create a checkout")),
89 OPT_BOOL(0, "bare", &option_bare
, N_("create a bare repository")),
90 OPT_HIDDEN_BOOL(0, "naked", &option_bare
,
91 N_("create a bare repository")),
92 OPT_BOOL(0, "mirror", &option_mirror
,
93 N_("create a mirror repository (implies bare)")),
94 OPT_BOOL('l', "local", &option_local
,
95 N_("to clone from a local repository")),
96 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks
,
97 N_("don't use local hardlinks, always copy")),
98 OPT_BOOL('s', "shared", &option_shared
,
99 N_("setup as shared repository")),
100 { OPTION_CALLBACK
, 0, "recursive", &option_recurse_submodules
,
101 N_("pathspec"), N_("initialize submodules in the clone"),
102 PARSE_OPT_OPTARG
| PARSE_OPT_HIDDEN
, recurse_submodules_cb
,
104 { OPTION_CALLBACK
, 0, "recurse-submodules", &option_recurse_submodules
,
105 N_("pathspec"), N_("initialize submodules in the clone"),
106 PARSE_OPT_OPTARG
, recurse_submodules_cb
, (intptr_t)"." },
107 OPT_INTEGER('j', "jobs", &max_jobs
,
108 N_("number of submodules cloned in parallel")),
109 OPT_STRING(0, "template", &option_template
, N_("template-directory"),
110 N_("directory from which templates will be used")),
111 OPT_STRING_LIST(0, "reference", &option_required_reference
, N_("repo"),
112 N_("reference repository")),
113 OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference
,
114 N_("repo"), N_("reference repository")),
115 OPT_BOOL(0, "dissociate", &option_dissociate
,
116 N_("use --reference only while cloning")),
117 OPT_STRING('o', "origin", &option_origin
, N_("name"),
118 N_("use <name> instead of 'origin' to track upstream")),
119 OPT_STRING('b', "branch", &option_branch
, N_("branch"),
120 N_("checkout <branch> instead of the remote's HEAD")),
121 OPT_STRING('u', "upload-pack", &option_upload_pack
, N_("path"),
122 N_("path to git-upload-pack on the remote")),
123 OPT_STRING(0, "depth", &option_depth
, N_("depth"),
124 N_("create a shallow clone of that depth")),
125 OPT_STRING(0, "shallow-since", &option_since
, N_("time"),
126 N_("create a shallow clone since a specific time")),
127 OPT_STRING_LIST(0, "shallow-exclude", &option_not
, N_("revision"),
128 N_("deepen history of shallow clone, excluding rev")),
129 OPT_BOOL(0, "single-branch", &option_single_branch
,
130 N_("clone only one branch, HEAD or --branch")),
131 OPT_BOOL(0, "no-tags", &option_no_tags
,
132 N_("don't clone any tags, and make later fetches not to follow them")),
133 OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules
,
134 N_("any cloned submodules will be shallow")),
135 OPT_STRING(0, "separate-git-dir", &real_git_dir
, N_("gitdir"),
136 N_("separate git dir from working tree")),
137 OPT_STRING_LIST('c', "config", &option_config
, N_("key=value"),
138 N_("set config inside the new repository")),
139 OPT_SET_INT('4', "ipv4", &family
, N_("use IPv4 addresses only"),
140 TRANSPORT_FAMILY_IPV4
),
141 OPT_SET_INT('6', "ipv6", &family
, N_("use IPv6 addresses only"),
142 TRANSPORT_FAMILY_IPV6
),
143 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options
),
147 static const char *get_repo_path_1(struct strbuf
*path
, int *is_bundle
)
149 static char *suffix
[] = { "/.git", "", ".git/.git", ".git" };
150 static char *bundle_suffix
[] = { ".bundle", "" };
151 size_t baselen
= path
->len
;
155 for (i
= 0; i
< ARRAY_SIZE(suffix
); i
++) {
156 strbuf_setlen(path
, baselen
);
157 strbuf_addstr(path
, suffix
[i
]);
158 if (stat(path
->buf
, &st
))
160 if (S_ISDIR(st
.st_mode
) && is_git_directory(path
->buf
)) {
163 } else if (S_ISREG(st
.st_mode
) && st
.st_size
> 8) {
164 /* Is it a "gitfile"? */
167 int len
, fd
= open(path
->buf
, O_RDONLY
);
170 len
= read_in_full(fd
, signature
, 8);
172 if (len
!= 8 || strncmp(signature
, "gitdir: ", 8))
174 dst
= read_gitfile(path
->buf
);
182 for (i
= 0; i
< ARRAY_SIZE(bundle_suffix
); i
++) {
183 strbuf_setlen(path
, baselen
);
184 strbuf_addstr(path
, bundle_suffix
[i
]);
185 if (!stat(path
->buf
, &st
) && S_ISREG(st
.st_mode
)) {
194 static char *get_repo_path(const char *repo
, int *is_bundle
)
196 struct strbuf path
= STRBUF_INIT
;
200 strbuf_addstr(&path
, repo
);
201 raw
= get_repo_path_1(&path
, is_bundle
);
202 canon
= raw
? absolute_pathdup(raw
) : NULL
;
203 strbuf_release(&path
);
207 static char *guess_dir_name(const char *repo
, int is_bundle
, int is_bare
)
209 const char *end
= repo
+ strlen(repo
), *start
, *ptr
;
216 start
= strstr(repo
, "://");
223 * Skip authentication data. The stripping does happen
224 * greedily, such that we strip up to the last '@' inside
227 for (ptr
= start
; ptr
< end
&& !is_dir_sep(*ptr
); ptr
++) {
233 * Strip trailing spaces, slashes and /.git
235 while (start
< end
&& (is_dir_sep(end
[-1]) || isspace(end
[-1])))
237 if (end
- start
> 5 && is_dir_sep(end
[-5]) &&
238 !strncmp(end
- 4, ".git", 4)) {
240 while (start
< end
&& is_dir_sep(end
[-1]))
245 * Strip trailing port number if we've got only a
246 * hostname (that is, there is no dir separator but a
247 * colon). This check is required such that we do not
248 * strip URI's like '/foo/bar:2222.git', which should
249 * result in a dir '2222' being guessed due to backwards
252 if (memchr(start
, '/', end
- start
) == NULL
253 && memchr(start
, ':', end
- start
) != NULL
) {
255 while (start
< ptr
&& isdigit(ptr
[-1]) && ptr
[-1] != ':')
257 if (start
< ptr
&& ptr
[-1] == ':')
262 * Find last component. To remain backwards compatible we
263 * also regard colons as path separators, such that
264 * cloning a repository 'foo:bar.git' would result in a
265 * directory 'bar' being guessed.
268 while (start
< ptr
&& !is_dir_sep(ptr
[-1]) && ptr
[-1] != ':')
273 * Strip .{bundle,git}.
276 strip_suffix_mem(start
, &len
, is_bundle
? ".bundle" : ".git");
278 if (!len
|| (len
== 1 && *start
== '/'))
279 die(_("No directory name could be guessed.\n"
280 "Please specify a directory on the command line"));
283 dir
= xstrfmt("%.*s.git", (int)len
, start
);
285 dir
= xstrndup(start
, len
);
287 * Replace sequences of 'control' characters and whitespace
288 * with one ascii space, remove leading and trailing spaces.
292 int prev_space
= 1 /* strip leading whitespace */;
293 for (end
= dir
; *end
; ++end
) {
295 if ((unsigned char)ch
< '\x20')
306 if (out
> dir
&& prev_space
)
312 static void strip_trailing_slashes(char *dir
)
314 char *end
= dir
+ strlen(dir
);
316 while (dir
< end
- 1 && is_dir_sep(end
[-1]))
321 static int add_one_reference(struct string_list_item
*item
, void *cb_data
)
323 struct strbuf err
= STRBUF_INIT
;
324 int *required
= cb_data
;
325 char *ref_git
= compute_alternate_path(item
->string
, &err
);
332 _("info: Could not add alternate for '%s': %s\n"),
333 item
->string
, err
.buf
);
335 struct strbuf sb
= STRBUF_INIT
;
336 strbuf_addf(&sb
, "%s/objects", ref_git
);
337 add_to_alternates_file(sb
.buf
);
341 strbuf_release(&err
);
346 static void setup_reference(void)
349 for_each_string_list(&option_required_reference
,
350 add_one_reference
, &required
);
352 for_each_string_list(&option_optional_reference
,
353 add_one_reference
, &required
);
356 static void copy_alternates(struct strbuf
*src
, struct strbuf
*dst
,
357 const char *src_repo
)
360 * Read from the source objects/info/alternates file
361 * and copy the entries to corresponding file in the
362 * destination repository with add_to_alternates_file().
363 * Both src and dst have "$path/objects/info/alternates".
365 * Instead of copying bit-for-bit from the original,
366 * we need to append to existing one so that the already
367 * created entry via "clone -s" is not lost, and also
368 * to turn entries with paths relative to the original
369 * absolute, so that they can be used in the new repository.
371 FILE *in
= xfopen(src
->buf
, "r");
372 struct strbuf line
= STRBUF_INIT
;
374 while (strbuf_getline(&line
, in
) != EOF
) {
376 if (!line
.len
|| line
.buf
[0] == '#')
378 if (is_absolute_path(line
.buf
)) {
379 add_to_alternates_file(line
.buf
);
382 abs_path
= mkpathdup("%s/objects/%s", src_repo
, line
.buf
);
383 if (!normalize_path_copy(abs_path
, abs_path
))
384 add_to_alternates_file(abs_path
);
386 warning("skipping invalid relative alternate: %s/%s",
390 strbuf_release(&line
);
394 static void copy_or_link_directory(struct strbuf
*src
, struct strbuf
*dest
,
395 const char *src_repo
, int src_baselen
)
399 int src_len
, dest_len
;
402 dir
= opendir(src
->buf
);
404 die_errno(_("failed to open '%s'"), src
->buf
);
406 if (mkdir(dest
->buf
, 0777)) {
408 die_errno(_("failed to create directory '%s'"), dest
->buf
);
409 else if (stat(dest
->buf
, &buf
))
410 die_errno(_("failed to stat '%s'"), dest
->buf
);
411 else if (!S_ISDIR(buf
.st_mode
))
412 die(_("%s exists and is not a directory"), dest
->buf
);
415 strbuf_addch(src
, '/');
417 strbuf_addch(dest
, '/');
418 dest_len
= dest
->len
;
420 while ((de
= readdir(dir
)) != NULL
) {
421 strbuf_setlen(src
, src_len
);
422 strbuf_addstr(src
, de
->d_name
);
423 strbuf_setlen(dest
, dest_len
);
424 strbuf_addstr(dest
, de
->d_name
);
425 if (stat(src
->buf
, &buf
)) {
426 warning (_("failed to stat %s\n"), src
->buf
);
429 if (S_ISDIR(buf
.st_mode
)) {
430 if (de
->d_name
[0] != '.')
431 copy_or_link_directory(src
, dest
,
432 src_repo
, src_baselen
);
436 /* Files that cannot be copied bit-for-bit... */
437 if (!strcmp(src
->buf
+ src_baselen
, "/info/alternates")) {
438 copy_alternates(src
, dest
, src_repo
);
442 if (unlink(dest
->buf
) && errno
!= ENOENT
)
443 die_errno(_("failed to unlink '%s'"), dest
->buf
);
444 if (!option_no_hardlinks
) {
445 if (!link(src
->buf
, dest
->buf
))
447 if (option_local
> 0)
448 die_errno(_("failed to create link '%s'"), dest
->buf
);
449 option_no_hardlinks
= 1;
451 if (copy_file_with_time(dest
->buf
, src
->buf
, 0666))
452 die_errno(_("failed to copy file to '%s'"), dest
->buf
);
457 static void clone_local(const char *src_repo
, const char *dest_repo
)
460 struct strbuf alt
= STRBUF_INIT
;
461 get_common_dir(&alt
, src_repo
);
462 strbuf_addstr(&alt
, "/objects");
463 add_to_alternates_file(alt
.buf
);
464 strbuf_release(&alt
);
466 struct strbuf src
= STRBUF_INIT
;
467 struct strbuf dest
= STRBUF_INIT
;
468 get_common_dir(&src
, src_repo
);
469 get_common_dir(&dest
, dest_repo
);
470 strbuf_addstr(&src
, "/objects");
471 strbuf_addstr(&dest
, "/objects");
472 copy_or_link_directory(&src
, &dest
, src_repo
, src
.len
);
473 strbuf_release(&src
);
474 strbuf_release(&dest
);
477 if (0 <= option_verbosity
)
478 fprintf(stderr
, _("done.\n"));
481 static const char *junk_work_tree
;
482 static int junk_work_tree_flags
;
483 static const char *junk_git_dir
;
484 static int junk_git_dir_flags
;
489 } junk_mode
= JUNK_LEAVE_NONE
;
491 static const char junk_leave_repo_msg
[] =
492 N_("Clone succeeded, but checkout failed.\n"
493 "You can inspect what was checked out with 'git status'\n"
494 "and retry the checkout with 'git checkout -f HEAD'\n");
496 static void remove_junk(void)
498 struct strbuf sb
= STRBUF_INIT
;
501 case JUNK_LEAVE_REPO
:
502 warning("%s", _(junk_leave_repo_msg
));
507 /* proceed to removal */
512 strbuf_addstr(&sb
, junk_git_dir
);
513 remove_dir_recursively(&sb
, junk_git_dir_flags
);
516 if (junk_work_tree
) {
517 strbuf_addstr(&sb
, junk_work_tree
);
518 remove_dir_recursively(&sb
, junk_work_tree_flags
);
523 static void remove_junk_on_signal(int signo
)
530 static struct ref
*find_remote_branch(const struct ref
*refs
, const char *branch
)
533 struct strbuf head
= STRBUF_INIT
;
534 strbuf_addstr(&head
, "refs/heads/");
535 strbuf_addstr(&head
, branch
);
536 ref
= find_ref_by_name(refs
, head
.buf
);
537 strbuf_release(&head
);
542 strbuf_addstr(&head
, "refs/tags/");
543 strbuf_addstr(&head
, branch
);
544 ref
= find_ref_by_name(refs
, head
.buf
);
545 strbuf_release(&head
);
550 static struct ref
*wanted_peer_refs(const struct ref
*refs
,
551 struct refspec
*refspec
)
553 struct ref
*head
= copy_ref(find_ref_by_name(refs
, "HEAD"));
554 struct ref
*local_refs
= head
;
555 struct ref
**tail
= head
? &head
->next
: &local_refs
;
557 if (option_single_branch
) {
558 struct ref
*remote_head
= NULL
;
561 remote_head
= guess_remote_head(head
, refs
, 0);
565 remote_head
= copy_ref(find_remote_branch(refs
, option_branch
));
568 if (!remote_head
&& option_branch
)
569 warning(_("Could not find remote branch %s to clone."),
573 for (i
= 0; i
< refspec
->nr
; i
++)
574 get_fetch_map(remote_head
, &refspec
->items
[i
],
577 /* if --branch=tag, pull the requested tag explicitly */
578 get_fetch_map(remote_head
, tag_refspec
, &tail
, 0);
582 for (i
= 0; i
< refspec
->nr
; i
++)
583 get_fetch_map(refs
, &refspec
->items
[i
], &tail
, 0);
586 if (!option_mirror
&& !option_single_branch
&& !option_no_tags
)
587 get_fetch_map(refs
, tag_refspec
, &tail
, 0);
592 static void write_remote_refs(const struct ref
*local_refs
)
596 struct ref_transaction
*t
;
597 struct strbuf err
= STRBUF_INIT
;
599 t
= ref_transaction_begin(&err
);
603 for (r
= local_refs
; r
; r
= r
->next
) {
606 if (ref_transaction_create(t
, r
->peer_ref
->name
, &r
->old_oid
,
611 if (initial_ref_transaction_commit(t
, &err
))
614 strbuf_release(&err
);
615 ref_transaction_free(t
);
618 static void write_followtags(const struct ref
*refs
, const char *msg
)
620 const struct ref
*ref
;
621 for (ref
= refs
; ref
; ref
= ref
->next
) {
622 if (!starts_with(ref
->name
, "refs/tags/"))
624 if (ends_with(ref
->name
, "^{}"))
626 if (!has_object_file(&ref
->old_oid
))
628 update_ref(msg
, ref
->name
, &ref
->old_oid
, NULL
, 0,
629 UPDATE_REFS_DIE_ON_ERR
);
633 static int iterate_ref_map(void *cb_data
, struct object_id
*oid
)
635 struct ref
**rm
= cb_data
;
636 struct ref
*ref
= *rm
;
639 * Skip anything missing a peer_ref, which we are not
640 * actually going to write a ref for.
642 while (ref
&& !ref
->peer_ref
)
644 /* Returning -1 notes "end of list" to the caller. */
648 oidcpy(oid
, &ref
->old_oid
);
653 static void update_remote_refs(const struct ref
*refs
,
654 const struct ref
*mapped_refs
,
655 const struct ref
*remote_head_points_at
,
656 const char *branch_top
,
658 struct transport
*transport
,
659 int check_connectivity
)
661 const struct ref
*rm
= mapped_refs
;
663 if (check_connectivity
) {
664 struct check_connected_options opt
= CHECK_CONNECTED_INIT
;
666 opt
.transport
= transport
;
667 opt
.progress
= transport
->progress
;
669 if (check_connected(iterate_ref_map
, &rm
, &opt
))
670 die(_("remote did not send all necessary objects"));
674 write_remote_refs(mapped_refs
);
675 if (option_single_branch
&& !option_no_tags
)
676 write_followtags(refs
, msg
);
679 if (remote_head_points_at
&& !option_bare
) {
680 struct strbuf head_ref
= STRBUF_INIT
;
681 strbuf_addstr(&head_ref
, branch_top
);
682 strbuf_addstr(&head_ref
, "HEAD");
683 if (create_symref(head_ref
.buf
,
684 remote_head_points_at
->peer_ref
->name
,
686 die(_("unable to update %s"), head_ref
.buf
);
687 strbuf_release(&head_ref
);
691 static void update_head(const struct ref
*our
, const struct ref
*remote
,
695 if (our
&& skip_prefix(our
->name
, "refs/heads/", &head
)) {
696 /* Local default branch link */
697 if (create_symref("HEAD", our
->name
, NULL
) < 0)
698 die(_("unable to update HEAD"));
700 update_ref(msg
, "HEAD", &our
->old_oid
, NULL
, 0,
701 UPDATE_REFS_DIE_ON_ERR
);
702 install_branch_config(0, head
, option_origin
, our
->name
);
705 struct commit
*c
= lookup_commit_reference(the_repository
,
707 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
708 update_ref(msg
, "HEAD", &c
->object
.oid
, NULL
, REF_NO_DEREF
,
709 UPDATE_REFS_DIE_ON_ERR
);
712 * We know remote HEAD points to a non-branch, or
713 * HEAD points to a branch but we don't know which one.
714 * Detach HEAD in all these cases.
716 update_ref(msg
, "HEAD", &remote
->old_oid
, NULL
, REF_NO_DEREF
,
717 UPDATE_REFS_DIE_ON_ERR
);
721 static int checkout(int submodule_progress
)
723 struct object_id oid
;
725 struct lock_file lock_file
= LOCK_INIT
;
726 struct unpack_trees_options opts
;
731 if (option_no_checkout
)
734 head
= resolve_refdup("HEAD", RESOLVE_REF_READING
, &oid
, NULL
);
736 warning(_("remote HEAD refers to nonexistent ref, "
737 "unable to checkout.\n"));
740 if (!strcmp(head
, "HEAD")) {
741 if (advice_detached_head
)
742 detach_advice(oid_to_hex(&oid
));
744 if (!starts_with(head
, "refs/heads/"))
745 die(_("HEAD not found below refs/heads!"));
749 /* We need to be in the new work tree for the checkout */
752 hold_locked_index(&lock_file
, LOCK_DIE_ON_ERROR
);
754 memset(&opts
, 0, sizeof opts
);
758 opts
.fn
= oneway_merge
;
759 opts
.verbose_update
= (option_verbosity
>= 0);
760 opts
.src_index
= &the_index
;
761 opts
.dst_index
= &the_index
;
763 tree
= parse_tree_indirect(&oid
);
765 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
766 if (unpack_trees(1, &t
, &opts
) < 0)
767 die(_("unable to checkout working tree"));
769 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
770 die(_("unable to write new index file"));
772 err
|= run_hook_le(NULL
, "post-checkout", sha1_to_hex(null_sha1
),
773 oid_to_hex(&oid
), "1", NULL
);
775 if (!err
&& (option_recurse_submodules
.nr
> 0)) {
776 struct argv_array args
= ARGV_ARRAY_INIT
;
777 argv_array_pushl(&args
, "submodule", "update", "--init", "--recursive", NULL
);
779 if (option_shallow_submodules
== 1)
780 argv_array_push(&args
, "--depth=1");
783 argv_array_pushf(&args
, "--jobs=%d", max_jobs
);
785 if (submodule_progress
)
786 argv_array_push(&args
, "--progress");
788 if (option_verbosity
< 0)
789 argv_array_push(&args
, "--quiet");
791 err
= run_command_v_opt(args
.argv
, RUN_GIT_CMD
);
792 argv_array_clear(&args
);
798 static int write_one_config(const char *key
, const char *value
, void *data
)
800 return git_config_set_multivar_gently(key
,
801 value
? value
: "true",
802 CONFIG_REGEX_NONE
, 0);
805 static void write_config(struct string_list
*config
)
809 for (i
= 0; i
< config
->nr
; i
++) {
810 if (git_config_parse_parameter(config
->items
[i
].string
,
811 write_one_config
, NULL
) < 0)
812 die(_("unable to write parameters to config file"));
816 static void write_refspec_config(const char *src_ref_prefix
,
817 const struct ref
*our_head_points_at
,
818 const struct ref
*remote_head_points_at
,
819 struct strbuf
*branch_top
)
821 struct strbuf key
= STRBUF_INIT
;
822 struct strbuf value
= STRBUF_INIT
;
824 if (option_mirror
|| !option_bare
) {
825 if (option_single_branch
&& !option_mirror
) {
827 if (starts_with(our_head_points_at
->name
, "refs/tags/"))
828 strbuf_addf(&value
, "+%s:%s", our_head_points_at
->name
,
829 our_head_points_at
->name
);
831 strbuf_addf(&value
, "+%s:%s%s", our_head_points_at
->name
,
832 branch_top
->buf
, option_branch
);
833 } else if (remote_head_points_at
) {
834 const char *head
= remote_head_points_at
->name
;
835 if (!skip_prefix(head
, "refs/heads/", &head
))
836 BUG("remote HEAD points at non-head?");
838 strbuf_addf(&value
, "+%s:%s%s", remote_head_points_at
->name
,
839 branch_top
->buf
, head
);
842 * otherwise, the next "git fetch" will
843 * simply fetch from HEAD without updating
844 * any remote-tracking branch, which is what
848 strbuf_addf(&value
, "+%s*:%s*", src_ref_prefix
, branch_top
->buf
);
850 /* Configure the remote */
852 strbuf_addf(&key
, "remote.%s.fetch", option_origin
);
853 git_config_set_multivar(key
.buf
, value
.buf
, "^$", 0);
857 strbuf_addf(&key
, "remote.%s.mirror", option_origin
);
858 git_config_set(key
.buf
, "true");
864 strbuf_release(&key
);
865 strbuf_release(&value
);
868 static void dissociate_from_references(void)
870 static const char* argv
[] = { "repack", "-a", "-d", NULL
};
871 char *alternates
= git_pathdup("objects/info/alternates");
873 if (!access(alternates
, F_OK
)) {
874 if (run_command_v_opt(argv
, RUN_GIT_CMD
|RUN_COMMAND_NO_STDIN
))
875 die(_("cannot repack to clean up"));
876 if (unlink(alternates
) && errno
!= ENOENT
)
877 die_errno(_("cannot unlink temporary alternates file"));
882 static int dir_exists(const char *path
)
885 return !stat(path
, &sb
);
888 int cmd_clone(int argc
, const char **argv
, const char *prefix
)
890 int is_bundle
= 0, is_local
;
891 const char *repo_name
, *repo
, *work_tree
, *git_dir
;
894 const struct ref
*refs
, *remote_head
;
895 const struct ref
*remote_head_points_at
;
896 const struct ref
*our_head_points_at
;
897 struct ref
*mapped_refs
;
898 const struct ref
*ref
;
899 struct strbuf key
= STRBUF_INIT
;
900 struct strbuf default_refspec
= STRBUF_INIT
;
901 struct strbuf branch_top
= STRBUF_INIT
, reflog_msg
= STRBUF_INIT
;
902 struct transport
*transport
= NULL
;
903 const char *src_ref_prefix
= "refs/heads/";
904 struct remote
*remote
;
905 int err
= 0, complete_refs_before_fetch
= 1;
906 int submodule_progress
;
908 struct argv_array ref_prefixes
= ARGV_ARRAY_INIT
;
910 fetch_if_missing
= 0;
912 packet_trace_identity("clone");
913 argc
= parse_options(argc
, argv
, prefix
, builtin_clone_options
,
914 builtin_clone_usage
, 0);
917 usage_msg_opt(_("Too many arguments."),
918 builtin_clone_usage
, builtin_clone_options
);
921 usage_msg_opt(_("You must specify a repository to clone."),
922 builtin_clone_usage
, builtin_clone_options
);
924 if (option_depth
|| option_since
|| option_not
.nr
)
926 if (option_single_branch
== -1)
927 option_single_branch
= deepen
? 1 : 0;
934 die(_("--bare and --origin %s options are incompatible."),
937 die(_("--bare and --separate-git-dir are incompatible."));
938 option_no_checkout
= 1;
942 option_origin
= "origin";
946 path
= get_repo_path(repo_name
, &is_bundle
);
948 repo
= absolute_pathdup(repo_name
);
949 else if (!strchr(repo_name
, ':'))
950 die(_("repository '%s' does not exist"), repo_name
);
954 /* no need to be strict, transport_set_option() will validate it again */
955 if (option_depth
&& atoi(option_depth
) < 1)
956 die(_("depth %s is not a positive number"), option_depth
);
959 dir
= xstrdup(argv
[1]);
961 dir
= guess_dir_name(repo_name
, is_bundle
, option_bare
);
962 strip_trailing_slashes(dir
);
964 dest_exists
= dir_exists(dir
);
965 if (dest_exists
&& !is_empty_dir(dir
))
966 die(_("destination path '%s' already exists and is not "
967 "an empty directory."), dir
);
969 strbuf_addf(&reflog_msg
, "clone: from %s", repo
);
974 work_tree
= getenv("GIT_WORK_TREE");
975 if (work_tree
&& dir_exists(work_tree
))
976 die(_("working tree '%s' already exists."), work_tree
);
979 if (option_bare
|| work_tree
)
980 git_dir
= xstrdup(dir
);
983 git_dir
= mkpathdup("%s/.git", dir
);
987 sigchain_push_common(remove_junk_on_signal
);
990 if (safe_create_leading_directories_const(work_tree
) < 0)
991 die_errno(_("could not create leading directories of '%s'"),
994 junk_work_tree_flags
|= REMOVE_DIR_KEEP_TOPLEVEL
;
995 else if (mkdir(work_tree
, 0777))
996 die_errno(_("could not create work tree dir '%s'"),
998 junk_work_tree
= work_tree
;
999 set_git_work_tree(work_tree
);
1003 if (dir_exists(real_git_dir
))
1004 junk_git_dir_flags
|= REMOVE_DIR_KEEP_TOPLEVEL
;
1005 junk_git_dir
= real_git_dir
;
1008 junk_git_dir_flags
|= REMOVE_DIR_KEEP_TOPLEVEL
;
1009 junk_git_dir
= git_dir
;
1011 if (safe_create_leading_directories_const(git_dir
) < 0)
1012 die(_("could not create leading directories of '%s'"), git_dir
);
1014 if (0 <= option_verbosity
) {
1016 fprintf(stderr
, _("Cloning into bare repository '%s'...\n"), dir
);
1018 fprintf(stderr
, _("Cloning into '%s'...\n"), dir
);
1021 if (option_recurse_submodules
.nr
> 0) {
1022 struct string_list_item
*item
;
1023 struct strbuf sb
= STRBUF_INIT
;
1025 /* remove duplicates */
1026 string_list_sort(&option_recurse_submodules
);
1027 string_list_remove_duplicates(&option_recurse_submodules
, 0);
1030 * NEEDSWORK: In a multi-working-tree world, this needs to be
1031 * set in the per-worktree config.
1033 for_each_string_list_item(item
, &option_recurse_submodules
) {
1034 strbuf_addf(&sb
, "submodule.active=%s",
1036 string_list_append(&option_config
,
1037 strbuf_detach(&sb
, NULL
));
1040 if (option_required_reference
.nr
&&
1041 option_optional_reference
.nr
)
1042 die(_("clone --recursive is not compatible with "
1043 "both --reference and --reference-if-able"));
1044 else if (option_required_reference
.nr
) {
1045 string_list_append(&option_config
,
1046 "submodule.alternateLocation=superproject");
1047 string_list_append(&option_config
,
1048 "submodule.alternateErrorStrategy=die");
1049 } else if (option_optional_reference
.nr
) {
1050 string_list_append(&option_config
,
1051 "submodule.alternateLocation=superproject");
1052 string_list_append(&option_config
,
1053 "submodule.alternateErrorStrategy=info");
1057 init_db(git_dir
, real_git_dir
, option_template
, INIT_DB_QUIET
);
1060 git_dir
= real_git_dir
;
1062 write_config(&option_config
);
1064 git_config(git_default_config
, NULL
);
1068 src_ref_prefix
= "refs/";
1069 strbuf_addstr(&branch_top
, src_ref_prefix
);
1071 git_config_set("core.bare", "true");
1073 strbuf_addf(&branch_top
, "refs/remotes/%s/", option_origin
);
1076 strbuf_addf(&key
, "remote.%s.url", option_origin
);
1077 git_config_set(key
.buf
, repo
);
1080 if (option_no_tags
) {
1081 strbuf_addf(&key
, "remote.%s.tagOpt", option_origin
);
1082 git_config_set(key
.buf
, "--no-tags");
1086 if (option_required_reference
.nr
|| option_optional_reference
.nr
)
1089 remote
= remote_get(option_origin
);
1091 strbuf_addf(&default_refspec
, "+%s*:%s*", src_ref_prefix
,
1093 refspec_append(&remote
->fetch
, default_refspec
.buf
);
1095 transport
= transport_get(remote
, remote
->url
[0]);
1096 transport_set_verbosity(transport
, option_verbosity
, option_progress
);
1097 transport
->family
= family
;
1099 path
= get_repo_path(remote
->url
[0], &is_bundle
);
1100 is_local
= option_local
!= 0 && path
&& !is_bundle
;
1103 warning(_("--depth is ignored in local clones; use file:// instead."));
1105 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
1107 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
1108 if (filter_options
.choice
)
1109 warning(_("--filter is ignored in local clones; use file:// instead."));
1110 if (!access(mkpath("%s/shallow", path
), F_OK
)) {
1111 if (option_local
> 0)
1112 warning(_("source repository is shallow, ignoring --local"));
1116 if (option_local
> 0 && !is_local
)
1117 warning(_("--local is ignored"));
1118 transport
->cloning
= 1;
1120 transport_set_option(transport
, TRANS_OPT_KEEP
, "yes");
1123 transport_set_option(transport
, TRANS_OPT_DEPTH
,
1126 transport_set_option(transport
, TRANS_OPT_DEEPEN_SINCE
,
1129 transport_set_option(transport
, TRANS_OPT_DEEPEN_NOT
,
1130 (const char *)&option_not
);
1131 if (option_single_branch
)
1132 transport_set_option(transport
, TRANS_OPT_FOLLOWTAGS
, "1");
1134 if (option_upload_pack
)
1135 transport_set_option(transport
, TRANS_OPT_UPLOADPACK
,
1136 option_upload_pack
);
1138 if (filter_options
.choice
) {
1139 transport_set_option(transport
, TRANS_OPT_LIST_OBJECTS_FILTER
,
1140 filter_options
.filter_spec
);
1141 transport_set_option(transport
, TRANS_OPT_FROM_PROMISOR
, "1");
1144 if (transport
->smart_options
&& !deepen
&& !filter_options
.choice
)
1145 transport
->smart_options
->check_self_contained_and_connected
= 1;
1148 argv_array_push(&ref_prefixes
, "HEAD");
1149 refspec_ref_prefixes(&remote
->fetch
, &ref_prefixes
);
1151 expand_ref_prefix(&ref_prefixes
, option_branch
);
1152 if (!option_no_tags
)
1153 argv_array_push(&ref_prefixes
, "refs/tags/");
1155 refs
= transport_get_remote_refs(transport
, &ref_prefixes
);
1158 mapped_refs
= wanted_peer_refs(refs
, &remote
->fetch
);
1160 * transport_get_remote_refs() may return refs with null sha-1
1161 * in mapped_refs (see struct transport->get_refs_list
1162 * comment). In that case we need fetch it early because
1163 * remote_head code below relies on it.
1165 * for normal clones, transport_get_remote_refs() should
1166 * return reliable ref set, we can delay cloning until after
1167 * remote HEAD check.
1169 for (ref
= refs
; ref
; ref
= ref
->next
)
1170 if (is_null_oid(&ref
->old_oid
)) {
1171 complete_refs_before_fetch
= 0;
1175 if (!is_local
&& !complete_refs_before_fetch
)
1176 transport_fetch_refs(transport
, mapped_refs
);
1178 remote_head
= find_ref_by_name(refs
, "HEAD");
1179 remote_head_points_at
=
1180 guess_remote_head(remote_head
, mapped_refs
, 0);
1182 if (option_branch
) {
1183 our_head_points_at
=
1184 find_remote_branch(mapped_refs
, option_branch
);
1186 if (!our_head_points_at
)
1187 die(_("Remote branch %s not found in upstream %s"),
1188 option_branch
, option_origin
);
1191 our_head_points_at
= remote_head_points_at
;
1195 die(_("Remote branch %s not found in upstream %s"),
1196 option_branch
, option_origin
);
1198 warning(_("You appear to have cloned an empty repository."));
1200 our_head_points_at
= NULL
;
1201 remote_head_points_at
= NULL
;
1203 option_no_checkout
= 1;
1205 install_branch_config(0, "master", option_origin
,
1206 "refs/heads/master");
1209 write_refspec_config(src_ref_prefix
, our_head_points_at
,
1210 remote_head_points_at
, &branch_top
);
1212 if (filter_options
.choice
)
1213 partial_clone_register("origin", &filter_options
);
1216 clone_local(path
, git_dir
);
1217 else if (refs
&& complete_refs_before_fetch
)
1218 transport_fetch_refs(transport
, mapped_refs
);
1220 update_remote_refs(refs
, mapped_refs
, remote_head_points_at
,
1221 branch_top
.buf
, reflog_msg
.buf
, transport
,
1224 update_head(our_head_points_at
, remote_head
, reflog_msg
.buf
);
1227 * We want to show progress for recursive submodule clones iff
1228 * we did so for the main clone. But only the transport knows
1229 * the final decision for this flag, so we need to rescue the value
1230 * before we free the transport.
1232 submodule_progress
= transport
->progress
;
1234 transport_unlock_pack(transport
);
1235 transport_disconnect(transport
);
1237 if (option_dissociate
) {
1238 close_all_packs(the_repository
->objects
);
1239 dissociate_from_references();
1242 junk_mode
= JUNK_LEAVE_REPO
;
1243 fetch_if_missing
= 1;
1244 err
= checkout(submodule_progress
);
1246 strbuf_release(&reflog_msg
);
1247 strbuf_release(&branch_top
);
1248 strbuf_release(&key
);
1249 strbuf_release(&default_refspec
);
1250 junk_mode
= JUNK_LEAVE_ALL
;
1252 argv_array_clear(&ref_prefixes
);