clone: abort if no dir name could be guessed
[git/mingw.git] / builtin / clone.c
blobf60d3271ed32638ca8d1306d236c650b995471a4
1 /*
2 * Builtin "git clone"
4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>,
5 * 2008 Daniel Barkalow <barkalow@iabervon.org>
6 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
8 * Clone a repository into a different directory that does not yet exist.
9 */
11 #include "builtin.h"
12 #include "lockfile.h"
13 #include "parse-options.h"
14 #include "fetch-pack.h"
15 #include "refs.h"
16 #include "tree.h"
17 #include "tree-walk.h"
18 #include "unpack-trees.h"
19 #include "transport.h"
20 #include "strbuf.h"
21 #include "dir.h"
22 #include "sigchain.h"
23 #include "branch.h"
24 #include "remote.h"
25 #include "run-command.h"
26 #include "connected.h"
29 * Overall FIXMEs:
30 * - respect DB_ENVIRONMENT for .git/objects.
32 * Implementation notes:
33 * - dropping use-separate-remote and no-separate-remote compatibility
36 static const char * const builtin_clone_usage[] = {
37 N_("git clone [<options>] [--] <repo> [<dir>]"),
38 NULL
41 static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
42 static int option_local = -1, option_no_hardlinks, option_shared, option_recursive;
43 static char *option_template, *option_depth;
44 static char *option_origin = NULL;
45 static char *option_branch = NULL;
46 static const char *real_git_dir;
47 static char *option_upload_pack = "git-upload-pack";
48 static int option_verbosity;
49 static int option_progress = -1;
50 static struct string_list option_config;
51 static struct string_list option_reference;
52 static int option_dissociate;
54 static struct option builtin_clone_options[] = {
55 OPT__VERBOSITY(&option_verbosity),
56 OPT_BOOL(0, "progress", &option_progress,
57 N_("force progress reporting")),
58 OPT_BOOL('n', "no-checkout", &option_no_checkout,
59 N_("don't create a checkout")),
60 OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")),
61 OPT_HIDDEN_BOOL(0, "naked", &option_bare,
62 N_("create a bare repository")),
63 OPT_BOOL(0, "mirror", &option_mirror,
64 N_("create a mirror repository (implies bare)")),
65 OPT_BOOL('l', "local", &option_local,
66 N_("to clone from a local repository")),
67 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks,
68 N_("don't use local hardlinks, always copy")),
69 OPT_BOOL('s', "shared", &option_shared,
70 N_("setup as shared repository")),
71 OPT_BOOL(0, "recursive", &option_recursive,
72 N_("initialize submodules in the clone")),
73 OPT_BOOL(0, "recurse-submodules", &option_recursive,
74 N_("initialize submodules in the clone")),
75 OPT_STRING(0, "template", &option_template, N_("template-directory"),
76 N_("directory from which templates will be used")),
77 OPT_STRING_LIST(0, "reference", &option_reference, N_("repo"),
78 N_("reference repository")),
79 OPT_BOOL(0, "dissociate", &option_dissociate,
80 N_("use --reference only while cloning")),
81 OPT_STRING('o', "origin", &option_origin, N_("name"),
82 N_("use <name> instead of 'origin' to track upstream")),
83 OPT_STRING('b', "branch", &option_branch, N_("branch"),
84 N_("checkout <branch> instead of the remote's HEAD")),
85 OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
86 N_("path to git-upload-pack on the remote")),
87 OPT_STRING(0, "depth", &option_depth, N_("depth"),
88 N_("create a shallow clone of that depth")),
89 OPT_BOOL(0, "single-branch", &option_single_branch,
90 N_("clone only one branch, HEAD or --branch")),
91 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
92 N_("separate git dir from working tree")),
93 OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
94 N_("set config inside the new repository")),
95 OPT_END()
98 static const char *argv_submodule[] = {
99 "submodule", "update", "--init", "--recursive", NULL
102 static char *get_repo_path(const char *repo, int *is_bundle)
104 static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
105 static char *bundle_suffix[] = { ".bundle", "" };
106 struct stat st;
107 int i;
109 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
110 const char *path;
111 path = mkpath("%s%s", repo, suffix[i]);
112 if (stat(path, &st))
113 continue;
114 if (S_ISDIR(st.st_mode) && is_git_directory(path)) {
115 *is_bundle = 0;
116 return xstrdup(absolute_path(path));
117 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
118 /* Is it a "gitfile"? */
119 char signature[8];
120 int len, fd = open(path, O_RDONLY);
121 if (fd < 0)
122 continue;
123 len = read_in_full(fd, signature, 8);
124 close(fd);
125 if (len != 8 || strncmp(signature, "gitdir: ", 8))
126 continue;
127 path = read_gitfile(path);
128 if (path) {
129 *is_bundle = 0;
130 return xstrdup(absolute_path(path));
135 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
136 const char *path;
137 path = mkpath("%s%s", repo, bundle_suffix[i]);
138 if (!stat(path, &st) && S_ISREG(st.st_mode)) {
139 *is_bundle = 1;
140 return xstrdup(absolute_path(path));
144 return NULL;
147 static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
149 const char *end = repo + strlen(repo), *start, *ptr;
150 size_t len;
151 char *dir;
154 * Skip scheme.
156 start = strstr(repo, "://");
157 if (start == NULL)
158 start = repo;
159 else
160 start += 3;
163 * Skip authentication data. The stripping does happen
164 * greedily, such that we strip up to the last '@' inside
165 * the host part.
167 for (ptr = start; ptr < end && !is_dir_sep(*ptr); ptr++) {
168 if (*ptr == '@')
169 start = ptr + 1;
173 * Strip trailing spaces, slashes and /.git
175 while (start < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
176 end--;
177 if (end - start > 5 && is_dir_sep(end[-5]) &&
178 !strncmp(end - 4, ".git", 4)) {
179 end -= 5;
180 while (start < end && is_dir_sep(end[-1]))
181 end--;
185 * Strip trailing port number if we've got only a
186 * hostname (that is, there is no dir separator but a
187 * colon). This check is required such that we do not
188 * strip URI's like '/foo/bar:2222.git', which should
189 * result in a dir '2222' being guessed due to backwards
190 * compatibility.
192 if (memchr(start, '/', end - start) == NULL
193 && memchr(start, ':', end - start) != NULL) {
194 ptr = end;
195 while (start < ptr && isdigit(ptr[-1]) && ptr[-1] != ':')
196 ptr--;
197 if (start < ptr && ptr[-1] == ':')
198 end = ptr - 1;
202 * Find last component. To remain backwards compatible we
203 * also regard colons as path separators, such that
204 * cloning a repository 'foo:bar.git' would result in a
205 * directory 'bar' being guessed.
207 ptr = end;
208 while (start < ptr && !is_dir_sep(ptr[-1]) && ptr[-1] != ':')
209 ptr--;
210 start = ptr;
213 * Strip .{bundle,git}.
215 len = end - start;
216 strip_suffix_mem(start, &len, is_bundle ? ".bundle" : ".git");
218 if (!len || (len == 1 && *start == '/'))
219 die("No directory name could be guessed.\n"
220 "Please specify a directory on the command line");
222 if (is_bare)
223 dir = xstrfmt("%.*s.git", (int)len, start);
224 else
225 dir = xstrndup(start, len);
227 * Replace sequences of 'control' characters and whitespace
228 * with one ascii space, remove leading and trailing spaces.
230 if (*dir) {
231 char *out = dir;
232 int prev_space = 1 /* strip leading whitespace */;
233 for (end = dir; *end; ++end) {
234 char ch = *end;
235 if ((unsigned char)ch < '\x20')
236 ch = '\x20';
237 if (isspace(ch)) {
238 if (prev_space)
239 continue;
240 prev_space = 1;
241 } else
242 prev_space = 0;
243 *out++ = ch;
245 *out = '\0';
246 if (out > dir && prev_space)
247 out[-1] = '\0';
249 return dir;
252 static void strip_trailing_slashes(char *dir)
254 char *end = dir + strlen(dir);
256 while (dir < end - 1 && is_dir_sep(end[-1]))
257 end--;
258 *end = '\0';
261 static int add_one_reference(struct string_list_item *item, void *cb_data)
263 char *ref_git;
264 const char *repo;
265 struct strbuf alternate = STRBUF_INIT;
267 /* Beware: read_gitfile(), real_path() and mkpath() return static buffer */
268 ref_git = xstrdup(real_path(item->string));
270 repo = read_gitfile(ref_git);
271 if (!repo)
272 repo = read_gitfile(mkpath("%s/.git", ref_git));
273 if (repo) {
274 free(ref_git);
275 ref_git = xstrdup(repo);
278 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
279 char *ref_git_git = mkpathdup("%s/.git", ref_git);
280 free(ref_git);
281 ref_git = ref_git_git;
282 } else if (!is_directory(mkpath("%s/objects", ref_git)))
283 die(_("reference repository '%s' is not a local repository."),
284 item->string);
286 if (!access(mkpath("%s/shallow", ref_git), F_OK))
287 die(_("reference repository '%s' is shallow"), item->string);
289 if (!access(mkpath("%s/info/grafts", ref_git), F_OK))
290 die(_("reference repository '%s' is grafted"), item->string);
292 strbuf_addf(&alternate, "%s/objects", ref_git);
293 add_to_alternates_file(alternate.buf);
294 strbuf_release(&alternate);
295 free(ref_git);
296 return 0;
299 static void setup_reference(void)
301 for_each_string_list(&option_reference, add_one_reference, NULL);
304 static void copy_alternates(struct strbuf *src, struct strbuf *dst,
305 const char *src_repo)
308 * Read from the source objects/info/alternates file
309 * and copy the entries to corresponding file in the
310 * destination repository with add_to_alternates_file().
311 * Both src and dst have "$path/objects/info/alternates".
313 * Instead of copying bit-for-bit from the original,
314 * we need to append to existing one so that the already
315 * created entry via "clone -s" is not lost, and also
316 * to turn entries with paths relative to the original
317 * absolute, so that they can be used in the new repository.
319 FILE *in = fopen(src->buf, "r");
320 struct strbuf line = STRBUF_INIT;
322 while (strbuf_getline(&line, in, '\n') != EOF) {
323 char *abs_path, abs_buf[PATH_MAX];
324 if (!line.len || line.buf[0] == '#')
325 continue;
326 if (is_absolute_path(line.buf)) {
327 add_to_alternates_file(line.buf);
328 continue;
330 abs_path = mkpath("%s/objects/%s", src_repo, line.buf);
331 normalize_path_copy(abs_buf, abs_path);
332 add_to_alternates_file(abs_buf);
334 strbuf_release(&line);
335 fclose(in);
338 static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
339 const char *src_repo, int src_baselen)
341 struct dirent *de;
342 struct stat buf;
343 int src_len, dest_len;
344 DIR *dir;
346 dir = opendir(src->buf);
347 if (!dir)
348 die_errno(_("failed to open '%s'"), src->buf);
350 if (mkdir(dest->buf, 0777)) {
351 if (errno != EEXIST)
352 die_errno(_("failed to create directory '%s'"), dest->buf);
353 else if (stat(dest->buf, &buf))
354 die_errno(_("failed to stat '%s'"), dest->buf);
355 else if (!S_ISDIR(buf.st_mode))
356 die(_("%s exists and is not a directory"), dest->buf);
359 strbuf_addch(src, '/');
360 src_len = src->len;
361 strbuf_addch(dest, '/');
362 dest_len = dest->len;
364 while ((de = readdir(dir)) != NULL) {
365 strbuf_setlen(src, src_len);
366 strbuf_addstr(src, de->d_name);
367 strbuf_setlen(dest, dest_len);
368 strbuf_addstr(dest, de->d_name);
369 if (stat(src->buf, &buf)) {
370 warning (_("failed to stat %s\n"), src->buf);
371 continue;
373 if (S_ISDIR(buf.st_mode)) {
374 if (de->d_name[0] != '.')
375 copy_or_link_directory(src, dest,
376 src_repo, src_baselen);
377 continue;
380 /* Files that cannot be copied bit-for-bit... */
381 if (!strcmp(src->buf + src_baselen, "/info/alternates")) {
382 copy_alternates(src, dest, src_repo);
383 continue;
386 if (unlink(dest->buf) && errno != ENOENT)
387 die_errno(_("failed to unlink '%s'"), dest->buf);
388 if (!option_no_hardlinks) {
389 if (!link(src->buf, dest->buf))
390 continue;
391 if (option_local > 0)
392 die_errno(_("failed to create link '%s'"), dest->buf);
393 option_no_hardlinks = 1;
395 if (copy_file_with_time(dest->buf, src->buf, 0666))
396 die_errno(_("failed to copy file to '%s'"), dest->buf);
398 closedir(dir);
401 static void clone_local(const char *src_repo, const char *dest_repo)
403 if (option_shared) {
404 struct strbuf alt = STRBUF_INIT;
405 strbuf_addf(&alt, "%s/objects", src_repo);
406 add_to_alternates_file(alt.buf);
407 strbuf_release(&alt);
408 } else {
409 struct strbuf src = STRBUF_INIT;
410 struct strbuf dest = STRBUF_INIT;
411 strbuf_addf(&src, "%s/objects", src_repo);
412 strbuf_addf(&dest, "%s/objects", dest_repo);
413 copy_or_link_directory(&src, &dest, src_repo, src.len);
414 strbuf_release(&src);
415 strbuf_release(&dest);
418 if (0 <= option_verbosity)
419 fprintf(stderr, _("done.\n"));
422 static const char *junk_work_tree;
423 static const char *junk_git_dir;
424 static enum {
425 JUNK_LEAVE_NONE,
426 JUNK_LEAVE_REPO,
427 JUNK_LEAVE_ALL
428 } junk_mode = JUNK_LEAVE_NONE;
430 static const char junk_leave_repo_msg[] =
431 N_("Clone succeeded, but checkout failed.\n"
432 "You can inspect what was checked out with 'git status'\n"
433 "and retry the checkout with 'git checkout -f HEAD'\n");
435 static void remove_junk(void)
437 struct strbuf sb = STRBUF_INIT;
439 switch (junk_mode) {
440 case JUNK_LEAVE_REPO:
441 warning("%s", _(junk_leave_repo_msg));
442 /* fall-through */
443 case JUNK_LEAVE_ALL:
444 return;
445 default:
446 /* proceed to removal */
447 break;
450 if (junk_git_dir) {
451 strbuf_addstr(&sb, junk_git_dir);
452 remove_dir_recursively(&sb, 0);
453 strbuf_reset(&sb);
455 if (junk_work_tree) {
456 strbuf_addstr(&sb, junk_work_tree);
457 remove_dir_recursively(&sb, 0);
458 strbuf_reset(&sb);
462 static void remove_junk_on_signal(int signo)
464 remove_junk();
465 sigchain_pop(signo);
466 raise(signo);
469 static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
471 struct ref *ref;
472 struct strbuf head = STRBUF_INIT;
473 strbuf_addstr(&head, "refs/heads/");
474 strbuf_addstr(&head, branch);
475 ref = find_ref_by_name(refs, head.buf);
476 strbuf_release(&head);
478 if (ref)
479 return ref;
481 strbuf_addstr(&head, "refs/tags/");
482 strbuf_addstr(&head, branch);
483 ref = find_ref_by_name(refs, head.buf);
484 strbuf_release(&head);
486 return ref;
489 static struct ref *wanted_peer_refs(const struct ref *refs,
490 struct refspec *refspec)
492 struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
493 struct ref *local_refs = head;
494 struct ref **tail = head ? &head->next : &local_refs;
496 if (option_single_branch) {
497 struct ref *remote_head = NULL;
499 if (!option_branch)
500 remote_head = guess_remote_head(head, refs, 0);
501 else {
502 local_refs = NULL;
503 tail = &local_refs;
504 remote_head = copy_ref(find_remote_branch(refs, option_branch));
507 if (!remote_head && option_branch)
508 warning(_("Could not find remote branch %s to clone."),
509 option_branch);
510 else {
511 get_fetch_map(remote_head, refspec, &tail, 0);
513 /* if --branch=tag, pull the requested tag explicitly */
514 get_fetch_map(remote_head, tag_refspec, &tail, 0);
516 } else
517 get_fetch_map(refs, refspec, &tail, 0);
519 if (!option_mirror && !option_single_branch)
520 get_fetch_map(refs, tag_refspec, &tail, 0);
522 return local_refs;
525 static void write_remote_refs(const struct ref *local_refs)
527 const struct ref *r;
529 lock_packed_refs(LOCK_DIE_ON_ERROR);
531 for (r = local_refs; r; r = r->next) {
532 if (!r->peer_ref)
533 continue;
534 add_packed_ref(r->peer_ref->name, r->old_sha1);
537 if (commit_packed_refs())
538 die_errno("unable to overwrite old ref-pack file");
541 static void write_followtags(const struct ref *refs, const char *msg)
543 const struct ref *ref;
544 for (ref = refs; ref; ref = ref->next) {
545 if (!starts_with(ref->name, "refs/tags/"))
546 continue;
547 if (ends_with(ref->name, "^{}"))
548 continue;
549 if (!has_sha1_file(ref->old_sha1))
550 continue;
551 update_ref(msg, ref->name, ref->old_sha1,
552 NULL, 0, UPDATE_REFS_DIE_ON_ERR);
556 static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
558 struct ref **rm = cb_data;
559 struct ref *ref = *rm;
562 * Skip anything missing a peer_ref, which we are not
563 * actually going to write a ref for.
565 while (ref && !ref->peer_ref)
566 ref = ref->next;
567 /* Returning -1 notes "end of list" to the caller. */
568 if (!ref)
569 return -1;
571 hashcpy(sha1, ref->old_sha1);
572 *rm = ref->next;
573 return 0;
576 static void update_remote_refs(const struct ref *refs,
577 const struct ref *mapped_refs,
578 const struct ref *remote_head_points_at,
579 const char *branch_top,
580 const char *msg,
581 struct transport *transport,
582 int check_connectivity)
584 const struct ref *rm = mapped_refs;
586 if (check_connectivity) {
587 if (transport->progress)
588 fprintf(stderr, _("Checking connectivity... "));
589 if (check_everything_connected_with_transport(iterate_ref_map,
590 0, &rm, transport))
591 die(_("remote did not send all necessary objects"));
592 if (transport->progress)
593 fprintf(stderr, _("done.\n"));
596 if (refs) {
597 write_remote_refs(mapped_refs);
598 if (option_single_branch)
599 write_followtags(refs, msg);
602 if (remote_head_points_at && !option_bare) {
603 struct strbuf head_ref = STRBUF_INIT;
604 strbuf_addstr(&head_ref, branch_top);
605 strbuf_addstr(&head_ref, "HEAD");
606 create_symref(head_ref.buf,
607 remote_head_points_at->peer_ref->name,
608 msg);
612 static void update_head(const struct ref *our, const struct ref *remote,
613 const char *msg)
615 const char *head;
616 if (our && skip_prefix(our->name, "refs/heads/", &head)) {
617 /* Local default branch link */
618 create_symref("HEAD", our->name, NULL);
619 if (!option_bare) {
620 update_ref(msg, "HEAD", our->old_sha1, NULL, 0,
621 UPDATE_REFS_DIE_ON_ERR);
622 install_branch_config(0, head, option_origin, our->name);
624 } else if (our) {
625 struct commit *c = lookup_commit_reference(our->old_sha1);
626 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
627 update_ref(msg, "HEAD", c->object.sha1,
628 NULL, REF_NODEREF, UPDATE_REFS_DIE_ON_ERR);
629 } else if (remote) {
631 * We know remote HEAD points to a non-branch, or
632 * HEAD points to a branch but we don't know which one.
633 * Detach HEAD in all these cases.
635 update_ref(msg, "HEAD", remote->old_sha1,
636 NULL, REF_NODEREF, UPDATE_REFS_DIE_ON_ERR);
640 static int checkout(void)
642 unsigned char sha1[20];
643 char *head;
644 struct lock_file *lock_file;
645 struct unpack_trees_options opts;
646 struct tree *tree;
647 struct tree_desc t;
648 int err = 0;
650 if (option_no_checkout)
651 return 0;
653 head = resolve_refdup("HEAD", RESOLVE_REF_READING, sha1, NULL);
654 if (!head) {
655 warning(_("remote HEAD refers to nonexistent ref, "
656 "unable to checkout.\n"));
657 return 0;
659 if (!strcmp(head, "HEAD")) {
660 if (advice_detached_head)
661 detach_advice(sha1_to_hex(sha1));
662 } else {
663 if (!starts_with(head, "refs/heads/"))
664 die(_("HEAD not found below refs/heads!"));
666 free(head);
668 /* We need to be in the new work tree for the checkout */
669 setup_work_tree();
671 lock_file = xcalloc(1, sizeof(struct lock_file));
672 hold_locked_index(lock_file, 1);
674 memset(&opts, 0, sizeof opts);
675 opts.update = 1;
676 opts.merge = 1;
677 opts.fn = oneway_merge;
678 opts.verbose_update = (option_verbosity >= 0);
679 opts.src_index = &the_index;
680 opts.dst_index = &the_index;
682 tree = parse_tree_indirect(sha1);
683 parse_tree(tree);
684 init_tree_desc(&t, tree->buffer, tree->size);
685 if (unpack_trees(1, &t, &opts) < 0)
686 die(_("unable to checkout working tree"));
688 if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
689 die(_("unable to write new index file"));
691 err |= run_hook_le(NULL, "post-checkout", sha1_to_hex(null_sha1),
692 sha1_to_hex(sha1), "1", NULL);
694 if (!err && option_recursive)
695 err = run_command_v_opt(argv_submodule, RUN_GIT_CMD);
697 return err;
700 static int write_one_config(const char *key, const char *value, void *data)
702 return git_config_set_multivar(key, value ? value : "true", "^$", 0);
705 static void write_config(struct string_list *config)
707 int i;
709 for (i = 0; i < config->nr; i++) {
710 if (git_config_parse_parameter(config->items[i].string,
711 write_one_config, NULL) < 0)
712 die("unable to write parameters to config file");
716 static void write_refspec_config(const char *src_ref_prefix,
717 const struct ref *our_head_points_at,
718 const struct ref *remote_head_points_at,
719 struct strbuf *branch_top)
721 struct strbuf key = STRBUF_INIT;
722 struct strbuf value = STRBUF_INIT;
724 if (option_mirror || !option_bare) {
725 if (option_single_branch && !option_mirror) {
726 if (option_branch) {
727 if (starts_with(our_head_points_at->name, "refs/tags/"))
728 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
729 our_head_points_at->name);
730 else
731 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
732 branch_top->buf, option_branch);
733 } else if (remote_head_points_at) {
734 const char *head = remote_head_points_at->name;
735 if (!skip_prefix(head, "refs/heads/", &head))
736 die("BUG: remote HEAD points at non-head?");
738 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
739 branch_top->buf, head);
742 * otherwise, the next "git fetch" will
743 * simply fetch from HEAD without updating
744 * any remote-tracking branch, which is what
745 * we want.
747 } else {
748 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
750 /* Configure the remote */
751 if (value.len) {
752 strbuf_addf(&key, "remote.%s.fetch", option_origin);
753 git_config_set_multivar(key.buf, value.buf, "^$", 0);
754 strbuf_reset(&key);
756 if (option_mirror) {
757 strbuf_addf(&key, "remote.%s.mirror", option_origin);
758 git_config_set(key.buf, "true");
759 strbuf_reset(&key);
764 strbuf_release(&key);
765 strbuf_release(&value);
768 static void dissociate_from_references(void)
770 static const char* argv[] = { "repack", "-a", "-d", NULL };
772 if (run_command_v_opt(argv, RUN_GIT_CMD|RUN_COMMAND_NO_STDIN))
773 die(_("cannot repack to clean up"));
774 if (unlink(git_path("objects/info/alternates")) && errno != ENOENT)
775 die_errno(_("cannot unlink temporary alternates file"));
778 int cmd_clone(int argc, const char **argv, const char *prefix)
780 int is_bundle = 0, is_local;
781 struct stat buf;
782 const char *repo_name, *repo, *work_tree, *git_dir;
783 char *path, *dir;
784 int dest_exists;
785 const struct ref *refs, *remote_head;
786 const struct ref *remote_head_points_at;
787 const struct ref *our_head_points_at;
788 struct ref *mapped_refs;
789 const struct ref *ref;
790 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
791 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
792 struct transport *transport = NULL;
793 const char *src_ref_prefix = "refs/heads/";
794 struct remote *remote;
795 int err = 0, complete_refs_before_fetch = 1;
797 struct refspec *refspec;
798 const char *fetch_pattern;
800 packet_trace_identity("clone");
801 argc = parse_options(argc, argv, prefix, builtin_clone_options,
802 builtin_clone_usage, 0);
804 if (argc > 2)
805 usage_msg_opt(_("Too many arguments."),
806 builtin_clone_usage, builtin_clone_options);
808 if (argc == 0)
809 usage_msg_opt(_("You must specify a repository to clone."),
810 builtin_clone_usage, builtin_clone_options);
812 if (option_single_branch == -1)
813 option_single_branch = option_depth ? 1 : 0;
815 if (option_mirror)
816 option_bare = 1;
818 if (option_bare) {
819 if (option_origin)
820 die(_("--bare and --origin %s options are incompatible."),
821 option_origin);
822 if (real_git_dir)
823 die(_("--bare and --separate-git-dir are incompatible."));
824 option_no_checkout = 1;
827 if (!option_origin)
828 option_origin = "origin";
830 repo_name = argv[0];
832 path = get_repo_path(repo_name, &is_bundle);
833 if (path)
834 repo = xstrdup(absolute_path(repo_name));
835 else if (!strchr(repo_name, ':'))
836 die(_("repository '%s' does not exist"), repo_name);
837 else
838 repo = repo_name;
840 /* no need to be strict, transport_set_option() will validate it again */
841 if (option_depth && atoi(option_depth) < 1)
842 die(_("depth %s is not a positive number"), option_depth);
844 if (argc == 2)
845 dir = xstrdup(argv[1]);
846 else
847 dir = guess_dir_name(repo_name, is_bundle, option_bare);
848 strip_trailing_slashes(dir);
850 dest_exists = !stat(dir, &buf);
851 if (dest_exists && !is_empty_dir(dir))
852 die(_("destination path '%s' already exists and is not "
853 "an empty directory."), dir);
855 strbuf_addf(&reflog_msg, "clone: from %s", repo);
857 if (option_bare)
858 work_tree = NULL;
859 else {
860 work_tree = getenv("GIT_WORK_TREE");
861 if (work_tree && !stat(work_tree, &buf))
862 die(_("working tree '%s' already exists."), work_tree);
865 if (option_bare || work_tree)
866 git_dir = xstrdup(dir);
867 else {
868 work_tree = dir;
869 git_dir = mkpathdup("%s/.git", dir);
872 atexit(remove_junk);
873 sigchain_push_common(remove_junk_on_signal);
875 if (!option_bare) {
876 if (safe_create_leading_directories_const(work_tree) < 0)
877 die_errno(_("could not create leading directories of '%s'"),
878 work_tree);
879 if (!dest_exists && mkdir(work_tree, 0777))
880 die_errno(_("could not create work tree dir '%s'"),
881 work_tree);
882 junk_work_tree = work_tree;
883 set_git_work_tree(work_tree);
886 junk_git_dir = git_dir;
887 if (safe_create_leading_directories_const(git_dir) < 0)
888 die(_("could not create leading directories of '%s'"), git_dir);
890 set_git_dir_init(git_dir, real_git_dir, 0);
891 if (real_git_dir) {
892 git_dir = real_git_dir;
893 junk_git_dir = real_git_dir;
896 if (0 <= option_verbosity) {
897 if (option_bare)
898 fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
899 else
900 fprintf(stderr, _("Cloning into '%s'...\n"), dir);
902 init_db(option_template, INIT_DB_QUIET);
903 write_config(&option_config);
905 git_config(git_default_config, NULL);
907 if (option_bare) {
908 if (option_mirror)
909 src_ref_prefix = "refs/";
910 strbuf_addstr(&branch_top, src_ref_prefix);
912 git_config_set("core.bare", "true");
913 } else {
914 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
917 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
918 strbuf_addf(&key, "remote.%s.url", option_origin);
919 git_config_set(key.buf, repo);
920 strbuf_reset(&key);
922 if (option_reference.nr)
923 setup_reference();
924 else if (option_dissociate) {
925 warning(_("--dissociate given, but there is no --reference"));
926 option_dissociate = 0;
929 fetch_pattern = value.buf;
930 refspec = parse_fetch_refspec(1, &fetch_pattern);
932 strbuf_reset(&value);
934 remote = remote_get(option_origin);
935 transport = transport_get(remote, remote->url[0]);
936 transport_set_verbosity(transport, option_verbosity, option_progress);
938 path = get_repo_path(remote->url[0], &is_bundle);
939 is_local = option_local != 0 && path && !is_bundle;
940 if (is_local) {
941 if (option_depth)
942 warning(_("--depth is ignored in local clones; use file:// instead."));
943 if (!access(mkpath("%s/shallow", path), F_OK)) {
944 if (option_local > 0)
945 warning(_("source repository is shallow, ignoring --local"));
946 is_local = 0;
949 if (option_local > 0 && !is_local)
950 warning(_("--local is ignored"));
951 transport->cloning = 1;
953 if (!transport->get_refs_list || (!is_local && !transport->fetch))
954 die(_("Don't know how to clone %s"), transport->url);
956 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
958 if (option_depth)
959 transport_set_option(transport, TRANS_OPT_DEPTH,
960 option_depth);
961 if (option_single_branch)
962 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
964 if (option_upload_pack)
965 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
966 option_upload_pack);
968 if (transport->smart_options && !option_depth)
969 transport->smart_options->check_self_contained_and_connected = 1;
971 refs = transport_get_remote_refs(transport);
973 if (refs) {
974 mapped_refs = wanted_peer_refs(refs, refspec);
976 * transport_get_remote_refs() may return refs with null sha-1
977 * in mapped_refs (see struct transport->get_refs_list
978 * comment). In that case we need fetch it early because
979 * remote_head code below relies on it.
981 * for normal clones, transport_get_remote_refs() should
982 * return reliable ref set, we can delay cloning until after
983 * remote HEAD check.
985 for (ref = refs; ref; ref = ref->next)
986 if (is_null_sha1(ref->old_sha1)) {
987 complete_refs_before_fetch = 0;
988 break;
991 if (!is_local && !complete_refs_before_fetch)
992 transport_fetch_refs(transport, mapped_refs);
994 remote_head = find_ref_by_name(refs, "HEAD");
995 remote_head_points_at =
996 guess_remote_head(remote_head, mapped_refs, 0);
998 if (option_branch) {
999 our_head_points_at =
1000 find_remote_branch(mapped_refs, option_branch);
1002 if (!our_head_points_at)
1003 die(_("Remote branch %s not found in upstream %s"),
1004 option_branch, option_origin);
1006 else
1007 our_head_points_at = remote_head_points_at;
1009 else {
1010 if (option_branch)
1011 die(_("Remote branch %s not found in upstream %s"),
1012 option_branch, option_origin);
1014 warning(_("You appear to have cloned an empty repository."));
1015 mapped_refs = NULL;
1016 our_head_points_at = NULL;
1017 remote_head_points_at = NULL;
1018 remote_head = NULL;
1019 option_no_checkout = 1;
1020 if (!option_bare)
1021 install_branch_config(0, "master", option_origin,
1022 "refs/heads/master");
1025 write_refspec_config(src_ref_prefix, our_head_points_at,
1026 remote_head_points_at, &branch_top);
1028 if (is_local)
1029 clone_local(path, git_dir);
1030 else if (refs && complete_refs_before_fetch)
1031 transport_fetch_refs(transport, mapped_refs);
1033 update_remote_refs(refs, mapped_refs, remote_head_points_at,
1034 branch_top.buf, reflog_msg.buf, transport, !is_local);
1036 update_head(our_head_points_at, remote_head, reflog_msg.buf);
1038 transport_unlock_pack(transport);
1039 transport_disconnect(transport);
1041 if (option_dissociate)
1042 dissociate_from_references();
1044 junk_mode = JUNK_LEAVE_REPO;
1045 err = checkout();
1047 strbuf_release(&reflog_msg);
1048 strbuf_release(&branch_top);
1049 strbuf_release(&key);
1050 strbuf_release(&value);
1051 junk_mode = JUNK_LEAVE_ALL;
1053 free(refspec);
1054 return err;