Adjust js/remote-improvements and db/refspec-wildcard-in-the-middle
[git/jnareb-git.git] / builtin-clone.c
blobb385b97828fa3973494666a16f939578209fdef7
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 "cache.h"
12 #include "parse-options.h"
13 #include "fetch-pack.h"
14 #include "refs.h"
15 #include "tree.h"
16 #include "tree-walk.h"
17 #include "unpack-trees.h"
18 #include "transport.h"
19 #include "strbuf.h"
20 #include "dir.h"
21 #include "pack-refs.h"
22 #include "sigchain.h"
23 #include "remote.h"
26 * Overall FIXMEs:
27 * - respect DB_ENVIRONMENT for .git/objects.
29 * Implementation notes:
30 * - dropping use-separate-remote and no-separate-remote compatibility
33 static const char * const builtin_clone_usage[] = {
34 "git clone [options] [--] <repo> [<dir>]",
35 NULL
38 static int option_quiet, option_no_checkout, option_bare, option_mirror;
39 static int option_local, option_no_hardlinks, option_shared;
40 static char *option_template, *option_reference, *option_depth;
41 static char *option_origin = NULL;
42 static char *option_upload_pack = "git-upload-pack";
43 static int option_verbose;
45 static struct option builtin_clone_options[] = {
46 OPT__QUIET(&option_quiet),
47 OPT__VERBOSE(&option_verbose),
48 OPT_BOOLEAN('n', "no-checkout", &option_no_checkout,
49 "don't create a checkout"),
50 OPT_BOOLEAN(0, "bare", &option_bare, "create a bare repository"),
51 OPT_BOOLEAN(0, "naked", &option_bare, "create a bare repository"),
52 OPT_BOOLEAN(0, "mirror", &option_mirror,
53 "create a mirror repository (implies bare)"),
54 OPT_BOOLEAN('l', "local", &option_local,
55 "to clone from a local repository"),
56 OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks,
57 "don't use local hardlinks, always copy"),
58 OPT_BOOLEAN('s', "shared", &option_shared,
59 "setup as shared repository"),
60 OPT_STRING(0, "template", &option_template, "path",
61 "path the template repository"),
62 OPT_STRING(0, "reference", &option_reference, "repo",
63 "reference repository"),
64 OPT_STRING('o', "origin", &option_origin, "branch",
65 "use <branch> instead of 'origin' to track upstream"),
66 OPT_STRING('u', "upload-pack", &option_upload_pack, "path",
67 "path to git-upload-pack on the remote"),
68 OPT_STRING(0, "depth", &option_depth, "depth",
69 "create a shallow clone of that depth"),
71 OPT_END()
74 static char *get_repo_path(const char *repo, int *is_bundle)
76 static char *suffix[] = { "/.git", ".git", "" };
77 static char *bundle_suffix[] = { ".bundle", "" };
78 struct stat st;
79 int i;
81 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
82 const char *path;
83 path = mkpath("%s%s", repo, suffix[i]);
84 if (is_directory(path)) {
85 *is_bundle = 0;
86 return xstrdup(make_nonrelative_path(path));
90 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
91 const char *path;
92 path = mkpath("%s%s", repo, bundle_suffix[i]);
93 if (!stat(path, &st) && S_ISREG(st.st_mode)) {
94 *is_bundle = 1;
95 return xstrdup(make_nonrelative_path(path));
99 return NULL;
102 static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
104 const char *end = repo + strlen(repo), *start;
107 * Strip trailing slashes and /.git
109 while (repo < end && is_dir_sep(end[-1]))
110 end--;
111 if (end - repo > 5 && is_dir_sep(end[-5]) &&
112 !strncmp(end - 4, ".git", 4)) {
113 end -= 5;
114 while (repo < end && is_dir_sep(end[-1]))
115 end--;
119 * Find last component, but be prepared that repo could have
120 * the form "remote.example.com:foo.git", i.e. no slash
121 * in the directory part.
123 start = end;
124 while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
125 start--;
128 * Strip .{bundle,git}.
130 if (is_bundle) {
131 if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
132 end -= 7;
133 } else {
134 if (end - start > 4 && !strncmp(end - 4, ".git", 4))
135 end -= 4;
138 if (is_bare) {
139 struct strbuf result = STRBUF_INIT;
140 strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
141 return strbuf_detach(&result, 0);
144 return xstrndup(start, end - start);
147 static void strip_trailing_slashes(char *dir)
149 char *end = dir + strlen(dir);
151 while (dir < end - 1 && is_dir_sep(end[-1]))
152 end--;
153 *end = '\0';
156 static void setup_reference(const char *repo)
158 const char *ref_git;
159 char *ref_git_copy;
161 struct remote *remote;
162 struct transport *transport;
163 const struct ref *extra;
165 ref_git = make_absolute_path(option_reference);
167 if (is_directory(mkpath("%s/.git/objects", ref_git)))
168 ref_git = mkpath("%s/.git", ref_git);
169 else if (!is_directory(mkpath("%s/objects", ref_git)))
170 die("reference repository '%s' is not a local directory.",
171 option_reference);
173 ref_git_copy = xstrdup(ref_git);
175 add_to_alternates_file(ref_git_copy);
177 remote = remote_get(ref_git_copy);
178 transport = transport_get(remote, ref_git_copy);
179 for (extra = transport_get_remote_refs(transport); extra;
180 extra = extra->next)
181 add_extra_ref(extra->name, extra->old_sha1, 0);
183 transport_disconnect(transport);
185 free(ref_git_copy);
188 static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest)
190 struct dirent *de;
191 struct stat buf;
192 int src_len, dest_len;
193 DIR *dir;
195 dir = opendir(src->buf);
196 if (!dir)
197 die("failed to open %s", src->buf);
199 if (mkdir(dest->buf, 0777)) {
200 if (errno != EEXIST)
201 die("failed to create directory %s", dest->buf);
202 else if (stat(dest->buf, &buf))
203 die("failed to stat %s", dest->buf);
204 else if (!S_ISDIR(buf.st_mode))
205 die("%s exists and is not a directory", dest->buf);
208 strbuf_addch(src, '/');
209 src_len = src->len;
210 strbuf_addch(dest, '/');
211 dest_len = dest->len;
213 while ((de = readdir(dir)) != NULL) {
214 strbuf_setlen(src, src_len);
215 strbuf_addstr(src, de->d_name);
216 strbuf_setlen(dest, dest_len);
217 strbuf_addstr(dest, de->d_name);
218 if (stat(src->buf, &buf)) {
219 warning ("failed to stat %s\n", src->buf);
220 continue;
222 if (S_ISDIR(buf.st_mode)) {
223 if (de->d_name[0] != '.')
224 copy_or_link_directory(src, dest);
225 continue;
228 if (unlink(dest->buf) && errno != ENOENT)
229 die("failed to unlink %s", dest->buf);
230 if (!option_no_hardlinks) {
231 if (!link(src->buf, dest->buf))
232 continue;
233 if (option_local)
234 die("failed to create link %s", dest->buf);
235 option_no_hardlinks = 1;
237 if (copy_file(dest->buf, src->buf, 0666))
238 die("failed to copy file to %s", dest->buf);
240 closedir(dir);
243 static const struct ref *clone_local(const char *src_repo,
244 const char *dest_repo)
246 const struct ref *ret;
247 struct strbuf src = STRBUF_INIT;
248 struct strbuf dest = STRBUF_INIT;
249 struct remote *remote;
250 struct transport *transport;
252 if (option_shared)
253 add_to_alternates_file(src_repo);
254 else {
255 strbuf_addf(&src, "%s/objects", src_repo);
256 strbuf_addf(&dest, "%s/objects", dest_repo);
257 copy_or_link_directory(&src, &dest);
258 strbuf_release(&src);
259 strbuf_release(&dest);
262 remote = remote_get(src_repo);
263 transport = transport_get(remote, src_repo);
264 ret = transport_get_remote_refs(transport);
265 transport_disconnect(transport);
266 return ret;
269 static const char *junk_work_tree;
270 static const char *junk_git_dir;
271 pid_t junk_pid;
273 static void remove_junk(void)
275 struct strbuf sb = STRBUF_INIT;
276 if (getpid() != junk_pid)
277 return;
278 if (junk_git_dir) {
279 strbuf_addstr(&sb, junk_git_dir);
280 remove_dir_recursively(&sb, 0);
281 strbuf_reset(&sb);
283 if (junk_work_tree) {
284 strbuf_addstr(&sb, junk_work_tree);
285 remove_dir_recursively(&sb, 0);
286 strbuf_reset(&sb);
290 static void remove_junk_on_signal(int signo)
292 remove_junk();
293 sigchain_pop(signo);
294 raise(signo);
297 static struct ref *write_remote_refs(const struct ref *refs,
298 struct refspec *refspec, const char *reflog)
300 struct ref *local_refs = NULL;
301 struct ref **tail = &local_refs;
302 struct ref *r;
304 get_fetch_map(refs, refspec, &tail, 0);
305 if (!option_mirror)
306 get_fetch_map(refs, tag_refspec, &tail, 0);
308 for (r = local_refs; r; r = r->next)
309 add_extra_ref(r->peer_ref->name, r->old_sha1, 0);
311 pack_refs(PACK_REFS_ALL);
312 clear_extra_refs();
314 return local_refs;
317 static void install_branch_config(const char *local,
318 const char *origin,
319 const char *remote)
321 struct strbuf key = STRBUF_INIT;
322 strbuf_addf(&key, "branch.%s.remote", local);
323 git_config_set(key.buf, origin);
324 strbuf_reset(&key);
325 strbuf_addf(&key, "branch.%s.merge", local);
326 git_config_set(key.buf, remote);
327 strbuf_release(&key);
330 int cmd_clone(int argc, const char **argv, const char *prefix)
332 int use_local_hardlinks = 1;
333 int use_separate_remote = 1;
334 int is_bundle = 0;
335 struct stat buf;
336 const char *repo_name, *repo, *work_tree, *git_dir;
337 char *path, *dir;
338 int dest_exists;
339 const struct ref *refs, *head_points_at, *remote_head, *mapped_refs;
340 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
341 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
342 struct transport *transport = NULL;
343 char *src_ref_prefix = "refs/heads/";
345 struct refspec *refspec;
346 const char *fetch_pattern;
348 junk_pid = getpid();
350 argc = parse_options(argc, argv, builtin_clone_options,
351 builtin_clone_usage, 0);
353 if (argc == 0)
354 die("You must specify a repository to clone.");
356 if (option_no_hardlinks)
357 use_local_hardlinks = 0;
359 if (option_mirror)
360 option_bare = 1;
362 if (option_bare) {
363 if (option_origin)
364 die("--bare and --origin %s options are incompatible.",
365 option_origin);
366 option_no_checkout = 1;
367 use_separate_remote = 0;
370 if (!option_origin)
371 option_origin = "origin";
373 repo_name = argv[0];
375 path = get_repo_path(repo_name, &is_bundle);
376 if (path)
377 repo = xstrdup(make_nonrelative_path(repo_name));
378 else if (!strchr(repo_name, ':'))
379 repo = xstrdup(make_absolute_path(repo_name));
380 else
381 repo = repo_name;
383 if (argc == 2)
384 dir = xstrdup(argv[1]);
385 else
386 dir = guess_dir_name(repo_name, is_bundle, option_bare);
387 strip_trailing_slashes(dir);
389 dest_exists = !stat(dir, &buf);
390 if (dest_exists && !is_empty_dir(dir))
391 die("destination path '%s' already exists and is not "
392 "an empty directory.", dir);
394 strbuf_addf(&reflog_msg, "clone: from %s", repo);
396 if (option_bare)
397 work_tree = NULL;
398 else {
399 work_tree = getenv("GIT_WORK_TREE");
400 if (work_tree && !stat(work_tree, &buf))
401 die("working tree '%s' already exists.", work_tree);
404 if (option_bare || work_tree)
405 git_dir = xstrdup(dir);
406 else {
407 work_tree = dir;
408 git_dir = xstrdup(mkpath("%s/.git", dir));
411 if (!option_bare) {
412 junk_work_tree = work_tree;
413 if (safe_create_leading_directories_const(work_tree) < 0)
414 die("could not create leading directories of '%s': %s",
415 work_tree, strerror(errno));
416 if (!dest_exists && mkdir(work_tree, 0755))
417 die("could not create work tree dir '%s': %s.",
418 work_tree, strerror(errno));
419 set_git_work_tree(work_tree);
421 junk_git_dir = git_dir;
422 atexit(remove_junk);
423 sigchain_push_common(remove_junk_on_signal);
425 setenv(CONFIG_ENVIRONMENT, xstrdup(mkpath("%s/config", git_dir)), 1);
427 if (safe_create_leading_directories_const(git_dir) < 0)
428 die("could not create leading directories of '%s'", git_dir);
429 set_git_dir(make_absolute_path(git_dir));
431 init_db(option_template, option_quiet ? INIT_DB_QUIET : 0);
434 * At this point, the config exists, so we do not need the
435 * environment variable. We actually need to unset it, too, to
436 * re-enable parsing of the global configs.
438 unsetenv(CONFIG_ENVIRONMENT);
440 if (option_reference)
441 setup_reference(git_dir);
443 git_config(git_default_config, NULL);
445 if (option_bare) {
446 if (option_mirror)
447 src_ref_prefix = "refs/";
448 strbuf_addstr(&branch_top, src_ref_prefix);
450 git_config_set("core.bare", "true");
451 } else {
452 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
455 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
457 if (option_mirror || !option_bare) {
458 /* Configure the remote */
459 strbuf_addf(&key, "remote.%s.fetch", option_origin);
460 git_config_set_multivar(key.buf, value.buf, "^$", 0);
461 strbuf_reset(&key);
463 if (option_mirror) {
464 strbuf_addf(&key, "remote.%s.mirror", option_origin);
465 git_config_set(key.buf, "true");
466 strbuf_reset(&key);
469 strbuf_addf(&key, "remote.%s.url", option_origin);
470 git_config_set(key.buf, repo);
471 strbuf_reset(&key);
474 fetch_pattern = value.buf;
475 refspec = parse_fetch_refspec(1, &fetch_pattern);
477 strbuf_reset(&value);
479 if (path && !is_bundle)
480 refs = clone_local(path, git_dir);
481 else {
482 struct remote *remote = remote_get(argv[0]);
483 transport = transport_get(remote, remote->url[0]);
485 if (!transport->get_refs_list || !transport->fetch)
486 die("Don't know how to clone %s", transport->url);
488 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
490 if (option_depth)
491 transport_set_option(transport, TRANS_OPT_DEPTH,
492 option_depth);
494 if (option_quiet)
495 transport->verbose = -1;
496 else if (option_verbose)
497 transport->progress = 1;
499 if (option_upload_pack)
500 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
501 option_upload_pack);
503 refs = transport_get_remote_refs(transport);
504 if(refs)
505 transport_fetch_refs(transport, refs);
508 if (refs) {
509 clear_extra_refs();
511 mapped_refs = write_remote_refs(refs, refspec, reflog_msg.buf);
513 remote_head = find_ref_by_name(refs, "HEAD");
514 head_points_at = guess_remote_head(remote_head, mapped_refs, 0);
516 else {
517 warning("You appear to have cloned an empty repository.");
518 head_points_at = NULL;
519 remote_head = NULL;
520 option_no_checkout = 1;
521 if (!option_bare)
522 install_branch_config("master", option_origin,
523 "refs/heads/master");
526 if (head_points_at) {
527 /* Local default branch link */
528 create_symref("HEAD", head_points_at->name, NULL);
530 if (!option_bare) {
531 struct strbuf head_ref = STRBUF_INIT;
532 const char *head = head_points_at->name;
534 if (!prefixcmp(head, "refs/heads/"))
535 head += 11;
537 /* Set up the initial local branch */
539 /* Local branch initial value */
540 update_ref(reflog_msg.buf, "HEAD",
541 head_points_at->old_sha1,
542 NULL, 0, DIE_ON_ERR);
544 strbuf_addstr(&head_ref, branch_top.buf);
545 strbuf_addstr(&head_ref, "HEAD");
547 /* Remote branch link */
548 create_symref(head_ref.buf,
549 head_points_at->peer_ref->name,
550 reflog_msg.buf);
552 install_branch_config(head, option_origin,
553 head_points_at->name);
555 } else if (remote_head) {
556 /* Source had detached HEAD pointing somewhere. */
557 if (!option_bare)
558 update_ref(reflog_msg.buf, "HEAD",
559 remote_head->old_sha1,
560 NULL, REF_NODEREF, DIE_ON_ERR);
561 } else {
562 /* Nothing to checkout out */
563 if (!option_no_checkout)
564 warning("remote HEAD refers to nonexistent ref, "
565 "unable to checkout.\n");
566 option_no_checkout = 1;
569 if (transport)
570 transport_unlock_pack(transport);
572 if (!option_no_checkout) {
573 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
574 struct unpack_trees_options opts;
575 struct tree *tree;
576 struct tree_desc t;
577 int fd;
579 /* We need to be in the new work tree for the checkout */
580 setup_work_tree();
582 fd = hold_locked_index(lock_file, 1);
584 memset(&opts, 0, sizeof opts);
585 opts.update = 1;
586 opts.merge = 1;
587 opts.fn = oneway_merge;
588 opts.verbose_update = !option_quiet;
589 opts.src_index = &the_index;
590 opts.dst_index = &the_index;
592 tree = parse_tree_indirect(remote_head->old_sha1);
593 parse_tree(tree);
594 init_tree_desc(&t, tree->buffer, tree->size);
595 unpack_trees(1, &t, &opts);
597 if (write_cache(fd, active_cache, active_nr) ||
598 commit_locked_index(lock_file))
599 die("unable to write new index file");
602 strbuf_release(&reflog_msg);
603 strbuf_release(&branch_top);
604 strbuf_release(&key);
605 strbuf_release(&value);
606 junk_pid = 0;
607 return 0;