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.
12 #include "parse-options.h"
13 #include "fetch-pack.h"
16 #include "tree-walk.h"
17 #include "unpack-trees.h"
18 #include "transport.h"
21 #include "pack-refs.h"
25 #include "run-command.h"
29 * - respect DB_ENVIRONMENT for .git/objects.
31 * Implementation notes:
32 * - dropping use-separate-remote and no-separate-remote compatibility
35 static const char * const builtin_clone_usage[] = {
36 "git clone [options] [--] <repo> [<dir>]",
40 static int option_quiet, option_no_checkout, option_bare, option_mirror;
41 static int option_local, option_no_hardlinks, option_shared;
42 static char *option_template, *option_reference, *option_depth;
43 static char *option_origin = NULL;
44 static char *option_upload_pack = "git-upload-pack";
45 static int option_verbose;
47 static struct option builtin_clone_options[] = {
48 OPT__QUIET(&option_quiet),
49 OPT__VERBOSE(&option_verbose),
50 OPT_BOOLEAN('n', "no-checkout", &option_no_checkout,
51 "don't create a checkout"),
52 OPT_BOOLEAN(0, "bare", &option_bare, "create a bare repository"),
53 OPT_BOOLEAN(0, "naked", &option_bare, "create a bare repository"),
54 OPT_BOOLEAN(0, "mirror", &option_mirror,
55 "create a mirror repository (implies bare)"),
56 OPT_BOOLEAN('l', "local", &option_local,
57 "to clone from a local repository"),
58 OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks,
59 "don't use local hardlinks, always copy"),
60 OPT_BOOLEAN('s', "shared", &option_shared,
61 "setup as shared repository"),
62 OPT_STRING(0, "template", &option_template, "path",
63 "path the template repository"),
64 OPT_STRING(0, "reference", &option_reference, "repo",
65 "reference repository"),
66 OPT_STRING('o', "origin", &option_origin, "branch",
67 "use <branch> instead of 'origin' to track upstream"),
68 OPT_STRING('u', "upload-pack", &option_upload_pack, "path",
69 "path to git-upload-pack on the remote"),
70 OPT_STRING(0, "depth", &option_depth, "depth",
71 "create a shallow clone of that depth"),
76 static char *get_repo_path(const char *repo, int *is_bundle)
78 static char *suffix[] = { "/.git", ".git", "" };
79 static char *bundle_suffix[] = { ".bundle", "" };
83 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
85 path = mkpath("%s%s", repo, suffix[i]);
86 if (is_directory(path)) {
88 return xstrdup(make_nonrelative_path(path));
92 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
94 path = mkpath("%s%s", repo, bundle_suffix[i]);
95 if (!stat(path, &st) && S_ISREG(st.st_mode)) {
97 return xstrdup(make_nonrelative_path(path));
104 static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
106 const char *end = repo + strlen(repo), *start;
110 * Strip trailing spaces, slashes and /.git
112 while (repo < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
114 if (end - repo > 5 && is_dir_sep(end[-5]) &&
115 !strncmp(end - 4, ".git", 4)) {
117 while (repo < end && is_dir_sep(end[-1]))
122 * Find last component, but be prepared that repo could have
123 * the form "remote.example.com:foo.git", i.e. no slash
124 * in the directory part.
127 while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
131 * Strip .{bundle,git}.
134 if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
137 if (end - start > 4 && !strncmp(end - 4, ".git", 4))
142 struct strbuf result = STRBUF_INIT;
143 strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
144 dir = strbuf_detach(&result, NULL);
146 dir = xstrndup(start, end - start);
148 * Replace sequences of 'control' characters and whitespace
149 * with one ascii space, remove leading and trailing spaces.
153 int prev_space = 1 /* strip leading whitespace */;
154 for (end = dir; *end; ++end) {
156 if ((unsigned char)ch < '\x20')
167 if (out > dir && prev_space)
173 static void strip_trailing_slashes(char *dir)
175 char *end = dir + strlen(dir);
177 while (dir < end - 1 && is_dir_sep(end[-1]))
182 static void setup_reference(const char *repo)
187 struct remote *remote;
188 struct transport *transport;
189 const struct ref *extra;
191 ref_git = make_absolute_path(option_reference);
193 if (is_directory(mkpath("%s/.git/objects", ref_git)))
194 ref_git = mkpath("%s/.git", ref_git);
195 else if (!is_directory(mkpath("%s/objects", ref_git)))
196 die("reference repository '%s' is not a local directory.",
199 ref_git_copy = xstrdup(ref_git);
201 add_to_alternates_file(ref_git_copy);
203 remote = remote_get(ref_git_copy);
204 transport = transport_get(remote, ref_git_copy);
205 for (extra = transport_get_remote_refs(transport); extra;
207 add_extra_ref(extra->name, extra->old_sha1, 0);
209 transport_disconnect(transport);
214 static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest)
218 int src_len, dest_len;
221 dir = opendir(src->buf);
223 die_errno("failed to open '%s'", src->buf);
225 if (mkdir(dest->buf, 0777)) {
227 die_errno("failed to create directory '%s'", dest->buf);
228 else if (stat(dest->buf, &buf))
229 die_errno("failed to stat '%s'", dest->buf);
230 else if (!S_ISDIR(buf.st_mode))
231 die("%s exists and is not a directory", dest->buf);
234 strbuf_addch(src, '/');
236 strbuf_addch(dest, '/');
237 dest_len = dest->len;
239 while ((de = readdir(dir)) != NULL) {
240 strbuf_setlen(src, src_len);
241 strbuf_addstr(src, de->d_name);
242 strbuf_setlen(dest, dest_len);
243 strbuf_addstr(dest, de->d_name);
244 if (stat(src->buf, &buf)) {
245 warning ("failed to stat %s\n", src->buf);
248 if (S_ISDIR(buf.st_mode)) {
249 if (de->d_name[0] != '.')
250 copy_or_link_directory(src, dest);
254 if (unlink(dest->buf) && errno != ENOENT)
255 die_errno("failed to unlink '%s'", dest->buf);
256 if (!option_no_hardlinks) {
257 if (!link(src->buf, dest->buf))
260 die_errno("failed to create link '%s'", dest->buf);
261 option_no_hardlinks = 1;
263 if (copy_file(dest->buf, src->buf, 0666))
264 die_errno("failed to copy file to '%s'", dest->buf);
269 static const struct ref *clone_local(const char *src_repo,
270 const char *dest_repo)
272 const struct ref *ret;
273 struct strbuf src = STRBUF_INIT;
274 struct strbuf dest = STRBUF_INIT;
275 struct remote *remote;
276 struct transport *transport;
279 add_to_alternates_file(src_repo);
281 strbuf_addf(&src, "%s/objects", src_repo);
282 strbuf_addf(&dest, "%s/objects", dest_repo);
283 copy_or_link_directory(&src, &dest);
284 strbuf_release(&src);
285 strbuf_release(&dest);
288 remote = remote_get(src_repo);
289 transport = transport_get(remote, src_repo);
290 ret = transport_get_remote_refs(transport);
291 transport_disconnect(transport);
295 static const char *junk_work_tree;
296 static const char *junk_git_dir;
297 static pid_t junk_pid;
299 static void remove_junk(void)
301 struct strbuf sb = STRBUF_INIT;
302 if (getpid() != junk_pid)
305 strbuf_addstr(&sb, junk_git_dir);
306 remove_dir_recursively(&sb, 0);
309 if (junk_work_tree) {
310 strbuf_addstr(&sb, junk_work_tree);
311 remove_dir_recursively(&sb, 0);
316 static void remove_junk_on_signal(int signo)
323 static struct ref *write_remote_refs(const struct ref *refs,
324 struct refspec *refspec, const char *reflog)
326 struct ref *local_refs = NULL;
327 struct ref **tail = &local_refs;
330 get_fetch_map(refs, refspec, &tail, 0);
332 get_fetch_map(refs, tag_refspec, &tail, 0);
334 for (r = local_refs; r; r = r->next)
335 add_extra_ref(r->peer_ref->name, r->old_sha1, 0);
337 pack_refs(PACK_REFS_ALL);
343 int cmd_clone(int argc, const char **argv, const char *prefix)
347 const char *repo_name, *repo, *work_tree, *git_dir;
350 const struct ref *refs, *head_points_at, *remote_head, *mapped_refs;
351 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
352 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
353 struct transport *transport = NULL;
354 char *src_ref_prefix = "refs/heads/";
357 struct refspec *refspec;
358 const char *fetch_pattern;
362 argc = parse_options(argc, argv, prefix, builtin_clone_options,
363 builtin_clone_usage, 0);
366 die("You must specify a repository to clone.");
373 die("--bare and --origin %s options are incompatible.",
375 option_no_checkout = 1;
379 option_origin = "origin";
383 path = get_repo_path(repo_name, &is_bundle);
385 repo = xstrdup(make_nonrelative_path(repo_name));
386 else if (!strchr(repo_name, ':'))
387 repo = xstrdup(make_absolute_path(repo_name));
392 dir = xstrdup(argv[1]);
394 dir = guess_dir_name(repo_name, is_bundle, option_bare);
395 strip_trailing_slashes(dir);
397 dest_exists = !stat(dir, &buf);
398 if (dest_exists && !is_empty_dir(dir))
399 die("destination path '%s' already exists and is not "
400 "an empty directory.", dir);
402 strbuf_addf(&reflog_msg, "clone: from %s", repo);
407 work_tree = getenv("GIT_WORK_TREE");
408 if (work_tree && !stat(work_tree, &buf))
409 die("working tree '%s' already exists.", work_tree);
412 if (option_bare || work_tree)
413 git_dir = xstrdup(dir);
416 git_dir = xstrdup(mkpath("%s/.git", dir));
420 junk_work_tree = work_tree;
421 if (safe_create_leading_directories_const(work_tree) < 0)
422 die_errno("could not create leading directories of '%s'",
424 if (!dest_exists && mkdir(work_tree, 0755))
425 die_errno("could not create work tree dir '%s'.",
427 set_git_work_tree(work_tree);
429 junk_git_dir = git_dir;
431 sigchain_push_common(remove_junk_on_signal);
433 setenv(CONFIG_ENVIRONMENT, mkpath("%s/config", git_dir), 1);
435 if (safe_create_leading_directories_const(git_dir) < 0)
436 die("could not create leading directories of '%s'", git_dir);
437 set_git_dir(make_absolute_path(git_dir));
439 init_db(option_template, option_quiet ? INIT_DB_QUIET : 0);
442 * At this point, the config exists, so we do not need the
443 * environment variable. We actually need to unset it, too, to
444 * re-enable parsing of the global configs.
446 unsetenv(CONFIG_ENVIRONMENT);
448 if (option_reference)
449 setup_reference(git_dir);
451 git_config(git_default_config, NULL);
455 src_ref_prefix = "refs/";
456 strbuf_addstr(&branch_top, src_ref_prefix);
458 git_config_set("core.bare", "true");
460 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
463 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
465 if (option_mirror || !option_bare) {
466 /* Configure the remote */
467 strbuf_addf(&key, "remote.%s.fetch", option_origin);
468 git_config_set_multivar(key.buf, value.buf, "^$", 0);
472 strbuf_addf(&key, "remote.%s.mirror", option_origin);
473 git_config_set(key.buf, "true");
477 strbuf_addf(&key, "remote.%s.url", option_origin);
478 git_config_set(key.buf, repo);
482 fetch_pattern = value.buf;
483 refspec = parse_fetch_refspec(1, &fetch_pattern);
485 strbuf_reset(&value);
487 if (path && !is_bundle)
488 refs = clone_local(path, git_dir);
490 struct remote *remote = remote_get(argv[0]);
491 transport = transport_get(remote, remote->url[0]);
493 if (!transport->get_refs_list || !transport->fetch)
494 die("Don't know how to clone %s", transport->url);
496 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
499 transport_set_option(transport, TRANS_OPT_DEPTH,
503 transport->verbose = -1;
504 else if (option_verbose)
505 transport->progress = 1;
507 if (option_upload_pack)
508 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
511 refs = transport_get_remote_refs(transport);
513 transport_fetch_refs(transport, refs);
519 mapped_refs = write_remote_refs(refs, refspec, reflog_msg.buf);
521 remote_head = find_ref_by_name(refs, "HEAD");
522 head_points_at = guess_remote_head(remote_head, mapped_refs, 0);
525 warning("You appear to have cloned an empty repository.");
526 head_points_at = NULL;
528 option_no_checkout = 1;
530 install_branch_config(0, "master", option_origin,
531 "refs/heads/master");
534 if (head_points_at) {
535 /* Local default branch link */
536 create_symref("HEAD", head_points_at->name, NULL);
539 struct strbuf head_ref = STRBUF_INIT;
540 const char *head = head_points_at->name;
542 if (!prefixcmp(head, "refs/heads/"))
545 /* Set up the initial local branch */
547 /* Local branch initial value */
548 update_ref(reflog_msg.buf, "HEAD",
549 head_points_at->old_sha1,
550 NULL, 0, DIE_ON_ERR);
552 strbuf_addstr(&head_ref, branch_top.buf);
553 strbuf_addstr(&head_ref, "HEAD");
555 /* Remote branch link */
556 create_symref(head_ref.buf,
557 head_points_at->peer_ref->name,
560 install_branch_config(0, head, option_origin,
561 head_points_at->name);
563 } else if (remote_head) {
564 /* Source had detached HEAD pointing somewhere. */
566 update_ref(reflog_msg.buf, "HEAD",
567 remote_head->old_sha1,
568 NULL, REF_NODEREF, DIE_ON_ERR);
570 /* Nothing to checkout out */
571 if (!option_no_checkout)
572 warning("remote HEAD refers to nonexistent ref, "
573 "unable to checkout.\n");
574 option_no_checkout = 1;
578 transport_unlock_pack(transport);
580 if (!option_no_checkout) {
581 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
582 struct unpack_trees_options opts;
587 /* We need to be in the new work tree for the checkout */
590 fd = hold_locked_index(lock_file, 1);
592 memset(&opts, 0, sizeof opts);
595 opts.fn = oneway_merge;
596 opts.verbose_update = !option_quiet;
597 opts.src_index = &the_index;
598 opts.dst_index = &the_index;
600 tree = parse_tree_indirect(remote_head->old_sha1);
602 init_tree_desc(&t, tree->buffer, tree->size);
603 unpack_trees(1, &t, &opts);
605 if (write_cache(fd, active_cache, active_nr) ||
606 commit_locked_index(lock_file))
607 die("unable to write new index file");
609 err |= run_hook(NULL, "post-checkout", sha1_to_hex(null_sha1),
610 sha1_to_hex(remote_head->old_sha1), "1", NULL);
613 strbuf_release(&reflog_msg);
614 strbuf_release(&branch_top);
615 strbuf_release(&key);
616 strbuf_release(&value);