]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-clone.c
Merge branch 'ak/maint-for-each-ref-no-lookup'
[thirdparty/git.git] / builtin-clone.c
CommitLineData
8434c2f1
DB
1/*
2 * Builtin "git clone"
3 *
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
7 *
8 * Clone a repository into a different directory that does not yet exist.
9 */
10
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"
3e8aded2 21#include "pack-refs.h"
4a16d072 22#include "sigchain.h"
a9f2c136 23#include "branch.h"
8ef51733 24#include "remote.h"
dfa7a6c5 25#include "run-command.h"
8434c2f1
DB
26
27/*
28 * Overall FIXMEs:
29 * - respect DB_ENVIRONMENT for .git/objects.
30 *
31 * Implementation notes:
32 * - dropping use-separate-remote and no-separate-remote compatibility
33 *
34 */
35static const char * const builtin_clone_usage[] = {
1b1dd23f 36 "git clone [options] [--] <repo> [<dir>]",
8434c2f1
DB
37 NULL
38};
39
bc699afc 40static int option_quiet, option_no_checkout, option_bare, option_mirror;
8434c2f1
DB
41static int option_local, option_no_hardlinks, option_shared;
42static char *option_template, *option_reference, *option_depth;
43static char *option_origin = NULL;
44static char *option_upload_pack = "git-upload-pack";
21188b1e 45static int option_verbose;
8434c2f1
DB
46
47static struct option builtin_clone_options[] = {
48 OPT__QUIET(&option_quiet),
21188b1e 49 OPT__VERBOSE(&option_verbose),
8434c2f1
DB
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"),
bc699afc
JS
54 OPT_BOOLEAN(0, "mirror", &option_mirror,
55 "create a mirror repository (implies bare)"),
8434c2f1
DB
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",
02ed2458 67 "use <branch> instead of 'origin' to track upstream"),
8434c2f1
DB
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"),
72
73 OPT_END()
74};
75
76static char *get_repo_path(const char *repo, int *is_bundle)
77{
78 static char *suffix[] = { "/.git", ".git", "" };
79 static char *bundle_suffix[] = { ".bundle", "" };
80 struct stat st;
81 int i;
82
83 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
84 const char *path;
85 path = mkpath("%s%s", repo, suffix[i]);
90b4a71c 86 if (is_directory(path)) {
8434c2f1 87 *is_bundle = 0;
1b9a9467 88 return xstrdup(make_nonrelative_path(path));
8434c2f1
DB
89 }
90 }
91
92 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
93 const char *path;
94 path = mkpath("%s%s", repo, bundle_suffix[i]);
95 if (!stat(path, &st) && S_ISREG(st.st_mode)) {
96 *is_bundle = 1;
1b9a9467 97 return xstrdup(make_nonrelative_path(path));
8434c2f1
DB
98 }
99 }
100
101 return NULL;
102}
103
6612f877 104static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
8434c2f1 105{
b8c5db35 106 const char *end = repo + strlen(repo), *start;
8a94bc7b 107 char *dir;
b8c5db35
JS
108
109 /*
8a94bc7b 110 * Strip trailing spaces, slashes and /.git
b8c5db35 111 */
8a94bc7b 112 while (repo < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
b8c5db35
JS
113 end--;
114 if (end - repo > 5 && is_dir_sep(end[-5]) &&
115 !strncmp(end - 4, ".git", 4)) {
116 end -= 5;
117 while (repo < end && is_dir_sep(end[-1]))
118 end--;
119 }
120
121 /*
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.
125 */
126 start = end;
127 while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
128 start--;
129
130 /*
131 * Strip .{bundle,git}.
132 */
133 if (is_bundle) {
134 if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
135 end -= 7;
136 } else {
137 if (end - start > 4 && !strncmp(end - 4, ".git", 4))
138 end -= 4;
8434c2f1
DB
139 }
140
6612f877 141 if (is_bare) {
32716a2c
MV
142 struct strbuf result = STRBUF_INIT;
143 strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
8a94bc7b
AR
144 dir = strbuf_detach(&result, 0);
145 } else
146 dir = xstrndup(start, end - start);
147 /*
148 * Replace sequences of 'control' characters and whitespace
149 * with one ascii space, remove leading and trailing spaces.
150 */
151 if (*dir) {
152 char *out = dir;
153 int prev_space = 1 /* strip leading whitespace */;
154 for (end = dir; *end; ++end) {
155 char ch = *end;
156 if ((unsigned char)ch < '\x20')
157 ch = '\x20';
158 if (isspace(ch)) {
159 if (prev_space)
160 continue;
161 prev_space = 1;
162 } else
163 prev_space = 0;
164 *out++ = ch;
165 }
166 *out = '\0';
167 if (out > dir && prev_space)
168 out[-1] = '\0';
6612f877 169 }
8a94bc7b 170 return dir;
8434c2f1
DB
171}
172
44a68fd5
CB
173static void strip_trailing_slashes(char *dir)
174{
175 char *end = dir + strlen(dir);
176
177 while (dir < end - 1 && is_dir_sep(end[-1]))
178 end--;
179 *end = '\0';
180}
181
8434c2f1
DB
182static void setup_reference(const char *repo)
183{
184 const char *ref_git;
185 char *ref_git_copy;
186
187 struct remote *remote;
188 struct transport *transport;
189 const struct ref *extra;
190
191 ref_git = make_absolute_path(option_reference);
192
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.",
197 option_reference);
198
199 ref_git_copy = xstrdup(ref_git);
200
201 add_to_alternates_file(ref_git_copy);
202
203 remote = remote_get(ref_git_copy);
204 transport = transport_get(remote, ref_git_copy);
205 for (extra = transport_get_remote_refs(transport); extra;
206 extra = extra->next)
207 add_extra_ref(extra->name, extra->old_sha1, 0);
208
209 transport_disconnect(transport);
210
211 free(ref_git_copy);
212}
213
b9e125e0 214static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest)
8434c2f1
DB
215{
216 struct dirent *de;
217 struct stat buf;
218 int src_len, dest_len;
219 DIR *dir;
220
b9e125e0 221 dir = opendir(src->buf);
8434c2f1 222 if (!dir)
d7530708 223 die("failed to open %s", src->buf);
8434c2f1 224
b9e125e0 225 if (mkdir(dest->buf, 0777)) {
8434c2f1 226 if (errno != EEXIST)
d7530708 227 die("failed to create directory %s", dest->buf);
b9e125e0 228 else if (stat(dest->buf, &buf))
d7530708 229 die("failed to stat %s", dest->buf);
8434c2f1 230 else if (!S_ISDIR(buf.st_mode))
d7530708 231 die("%s exists and is not a directory", dest->buf);
8434c2f1
DB
232 }
233
b9e125e0
MV
234 strbuf_addch(src, '/');
235 src_len = src->len;
236 strbuf_addch(dest, '/');
237 dest_len = dest->len;
8434c2f1
DB
238
239 while ((de = readdir(dir)) != NULL) {
b9e125e0
MV
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);
8434c2f1
DB
246 continue;
247 }
248 if (S_ISDIR(buf.st_mode)) {
249 if (de->d_name[0] != '.')
250 copy_or_link_directory(src, dest);
251 continue;
252 }
253
b9e125e0 254 if (unlink(dest->buf) && errno != ENOENT)
f6a5f1bb
AR
255 die("failed to unlink %s: %s",
256 dest->buf, strerror(errno));
fdabc242 257 if (!option_no_hardlinks) {
b9e125e0 258 if (!link(src->buf, dest->buf))
fdabc242
DB
259 continue;
260 if (option_local)
d7530708 261 die("failed to create link %s", dest->buf);
fdabc242 262 option_no_hardlinks = 1;
8434c2f1 263 }
b9e125e0 264 if (copy_file(dest->buf, src->buf, 0666))
d7530708 265 die("failed to copy file to %s", dest->buf);
8434c2f1 266 }
689ef4d4 267 closedir(dir);
8434c2f1
DB
268}
269
270static const struct ref *clone_local(const char *src_repo,
271 const char *dest_repo)
272{
273 const struct ref *ret;
b9e125e0
MV
274 struct strbuf src = STRBUF_INIT;
275 struct strbuf dest = STRBUF_INIT;
8434c2f1
DB
276 struct remote *remote;
277 struct transport *transport;
278
279 if (option_shared)
280 add_to_alternates_file(src_repo);
281 else {
b9e125e0
MV
282 strbuf_addf(&src, "%s/objects", src_repo);
283 strbuf_addf(&dest, "%s/objects", dest_repo);
284 copy_or_link_directory(&src, &dest);
285 strbuf_release(&src);
286 strbuf_release(&dest);
8434c2f1
DB
287 }
288
289 remote = remote_get(src_repo);
290 transport = transport_get(remote, src_repo);
291 ret = transport_get_remote_refs(transport);
292 transport_disconnect(transport);
293 return ret;
294}
295
296static const char *junk_work_tree;
297static const char *junk_git_dir;
e161acd1 298static pid_t junk_pid;
8434c2f1
DB
299
300static void remove_junk(void)
301{
f285a2d7 302 struct strbuf sb = STRBUF_INIT;
8434c2f1
DB
303 if (getpid() != junk_pid)
304 return;
8434c2f1
DB
305 if (junk_git_dir) {
306 strbuf_addstr(&sb, junk_git_dir);
307 remove_dir_recursively(&sb, 0);
308 strbuf_reset(&sb);
309 }
310 if (junk_work_tree) {
311 strbuf_addstr(&sb, junk_work_tree);
312 remove_dir_recursively(&sb, 0);
313 strbuf_reset(&sb);
314 }
315}
316
317static void remove_junk_on_signal(int signo)
318{
319 remove_junk();
4a16d072 320 sigchain_pop(signo);
8434c2f1
DB
321 raise(signo);
322}
323
8434c2f1
DB
324static struct ref *write_remote_refs(const struct ref *refs,
325 struct refspec *refspec, const char *reflog)
326{
327 struct ref *local_refs = NULL;
328 struct ref **tail = &local_refs;
329 struct ref *r;
330
331 get_fetch_map(refs, refspec, &tail, 0);
468386a9
JS
332 if (!option_mirror)
333 get_fetch_map(refs, tag_refspec, &tail, 0);
8434c2f1
DB
334
335 for (r = local_refs; r; r = r->next)
3e8aded2
JH
336 add_extra_ref(r->peer_ref->name, r->old_sha1, 0);
337
338 pack_refs(PACK_REFS_ALL);
339 clear_extra_refs();
340
8434c2f1
DB
341 return local_refs;
342}
343
344int cmd_clone(int argc, const char **argv, const char *prefix)
345{
8434c2f1
DB
346 int is_bundle = 0;
347 struct stat buf;
348 const char *repo_name, *repo, *work_tree, *git_dir;
349 char *path, *dir;
55892d23 350 int dest_exists;
8434c2f1 351 const struct ref *refs, *head_points_at, *remote_head, *mapped_refs;
b5ff37ac
MV
352 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
353 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
1db4a75c 354 struct transport *transport = NULL;
bc699afc 355 char *src_ref_prefix = "refs/heads/";
dfa7a6c5 356 int err = 0;
8434c2f1 357
689f0396
DB
358 struct refspec *refspec;
359 const char *fetch_pattern;
8434c2f1
DB
360
361 junk_pid = getpid();
362
37782920 363 argc = parse_options(argc, argv, prefix, builtin_clone_options,
8434c2f1
DB
364 builtin_clone_usage, 0);
365
366 if (argc == 0)
367 die("You must specify a repository to clone.");
368
bc699afc
JS
369 if (option_mirror)
370 option_bare = 1;
371
8434c2f1
DB
372 if (option_bare) {
373 if (option_origin)
374 die("--bare and --origin %s options are incompatible.",
375 option_origin);
376 option_no_checkout = 1;
8434c2f1
DB
377 }
378
379 if (!option_origin)
380 option_origin = "origin";
381
382 repo_name = argv[0];
383
384 path = get_repo_path(repo_name, &is_bundle);
385 if (path)
86521aca 386 repo = xstrdup(make_nonrelative_path(repo_name));
8434c2f1
DB
387 else if (!strchr(repo_name, ':'))
388 repo = xstrdup(make_absolute_path(repo_name));
389 else
390 repo = repo_name;
391
392 if (argc == 2)
393 dir = xstrdup(argv[1]);
394 else
6612f877 395 dir = guess_dir_name(repo_name, is_bundle, option_bare);
44a68fd5 396 strip_trailing_slashes(dir);
8434c2f1 397
55892d23
AP
398 dest_exists = !stat(dir, &buf);
399 if (dest_exists && !is_empty_dir(dir))
400 die("destination path '%s' already exists and is not "
401 "an empty directory.", dir);
8434c2f1 402
8434c2f1
DB
403 strbuf_addf(&reflog_msg, "clone: from %s", repo);
404
405 if (option_bare)
406 work_tree = NULL;
407 else {
408 work_tree = getenv("GIT_WORK_TREE");
409 if (work_tree && !stat(work_tree, &buf))
410 die("working tree '%s' already exists.", work_tree);
411 }
412
413 if (option_bare || work_tree)
414 git_dir = xstrdup(dir);
415 else {
416 work_tree = dir;
417 git_dir = xstrdup(mkpath("%s/.git", dir));
418 }
419
420 if (!option_bare) {
421 junk_work_tree = work_tree;
8e21d63b 422 if (safe_create_leading_directories_const(work_tree) < 0)
44a68fd5
CB
423 die("could not create leading directories of '%s': %s",
424 work_tree, strerror(errno));
55892d23 425 if (!dest_exists && mkdir(work_tree, 0755))
44a68fd5
CB
426 die("could not create work tree dir '%s': %s.",
427 work_tree, strerror(errno));
8434c2f1
DB
428 set_git_work_tree(work_tree);
429 }
430 junk_git_dir = git_dir;
431 atexit(remove_junk);
57b235a4 432 sigchain_push_common(remove_junk_on_signal);
8434c2f1 433
50b5f420 434 setenv(CONFIG_ENVIRONMENT, mkpath("%s/config", git_dir), 1);
8434c2f1 435
8e21d63b
JK
436 if (safe_create_leading_directories_const(git_dir) < 0)
437 die("could not create leading directories of '%s'", git_dir);
8434c2f1
DB
438 set_git_dir(make_absolute_path(git_dir));
439
8434c2f1
DB
440 init_db(option_template, option_quiet ? INIT_DB_QUIET : 0);
441
5b8063b5
JS
442 /*
443 * At this point, the config exists, so we do not need the
444 * environment variable. We actually need to unset it, too, to
445 * re-enable parsing of the global configs.
446 */
447 unsetenv(CONFIG_ENVIRONMENT);
448
8434c2f1
DB
449 if (option_reference)
450 setup_reference(git_dir);
451
9bd81e42 452 git_config(git_default_config, NULL);
8434c2f1
DB
453
454 if (option_bare) {
bc699afc
JS
455 if (option_mirror)
456 src_ref_prefix = "refs/";
b5ff37ac 457 strbuf_addstr(&branch_top, src_ref_prefix);
8434c2f1
DB
458
459 git_config_set("core.bare", "true");
460 } else {
b5ff37ac 461 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
bc699afc 462 }
8434c2f1 463
689f0396
DB
464 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
465
bc699afc 466 if (option_mirror || !option_bare) {
8434c2f1 467 /* Configure the remote */
689f0396
DB
468 strbuf_addf(&key, "remote.%s.fetch", option_origin);
469 git_config_set_multivar(key.buf, value.buf, "^$", 0);
470 strbuf_reset(&key);
471
bc699afc 472 if (option_mirror) {
b5ff37ac
MV
473 strbuf_addf(&key, "remote.%s.mirror", option_origin);
474 git_config_set(key.buf, "true");
475 strbuf_reset(&key);
bc699afc
JS
476 }
477
b5ff37ac
MV
478 strbuf_addf(&key, "remote.%s.url", option_origin);
479 git_config_set(key.buf, repo);
b5ff37ac 480 strbuf_reset(&key);
8434c2f1
DB
481 }
482
689f0396
DB
483 fetch_pattern = value.buf;
484 refspec = parse_fetch_refspec(1, &fetch_pattern);
485
486 strbuf_reset(&value);
8434c2f1
DB
487
488 if (path && !is_bundle)
489 refs = clone_local(path, git_dir);
490 else {
491 struct remote *remote = remote_get(argv[0]);
1db4a75c 492 transport = transport_get(remote, remote->url[0]);
8434c2f1 493
37b78c25
JK
494 if (!transport->get_refs_list || !transport->fetch)
495 die("Don't know how to clone %s", transport->url);
496
8434c2f1
DB
497 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
498
499 if (option_depth)
500 transport_set_option(transport, TRANS_OPT_DEPTH,
501 option_depth);
502
503 if (option_quiet)
504 transport->verbose = -1;
21188b1e
MV
505 else if (option_verbose)
506 transport->progress = 1;
8434c2f1 507
837c8767
SH
508 if (option_upload_pack)
509 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
510 option_upload_pack);
511
8434c2f1 512 refs = transport_get_remote_refs(transport);
86ac7518
SR
513 if(refs)
514 transport_fetch_refs(transport, refs);
8434c2f1
DB
515 }
516
86ac7518
SR
517 if (refs) {
518 clear_extra_refs();
8434c2f1 519
689f0396 520 mapped_refs = write_remote_refs(refs, refspec, reflog_msg.buf);
8434c2f1 521
6cb4e6cc 522 remote_head = find_ref_by_name(refs, "HEAD");
4229f1fa 523 head_points_at = guess_remote_head(remote_head, mapped_refs, 0);
86ac7518
SR
524 }
525 else {
526 warning("You appear to have cloned an empty repository.");
527 head_points_at = NULL;
528 remote_head = NULL;
529 option_no_checkout = 1;
5cd12b85 530 if (!option_bare)
a9f2c136 531 install_branch_config(0, "master", option_origin,
5cd12b85 532 "refs/heads/master");
86ac7518 533 }
8434c2f1
DB
534
535 if (head_points_at) {
536 /* Local default branch link */
537 create_symref("HEAD", head_points_at->name, NULL);
538
539 if (!option_bare) {
f285a2d7 540 struct strbuf head_ref = STRBUF_INIT;
8434c2f1
DB
541 const char *head = head_points_at->name;
542
543 if (!prefixcmp(head, "refs/heads/"))
544 head += 11;
545
546 /* Set up the initial local branch */
547
548 /* Local branch initial value */
549 update_ref(reflog_msg.buf, "HEAD",
550 head_points_at->old_sha1,
551 NULL, 0, DIE_ON_ERR);
552
b5ff37ac 553 strbuf_addstr(&head_ref, branch_top.buf);
8434c2f1
DB
554 strbuf_addstr(&head_ref, "HEAD");
555
556 /* Remote branch link */
557 create_symref(head_ref.buf,
558 head_points_at->peer_ref->name,
559 reflog_msg.buf);
560
a9f2c136 561 install_branch_config(0, head, option_origin,
5cd12b85 562 head_points_at->name);
8434c2f1
DB
563 }
564 } else if (remote_head) {
565 /* Source had detached HEAD pointing somewhere. */
566 if (!option_bare)
567 update_ref(reflog_msg.buf, "HEAD",
568 remote_head->old_sha1,
569 NULL, REF_NODEREF, DIE_ON_ERR);
570 } else {
571 /* Nothing to checkout out */
572 if (!option_no_checkout)
573 warning("remote HEAD refers to nonexistent ref, "
574 "unable to checkout.\n");
575 option_no_checkout = 1;
576 }
577
1db4a75c
SP
578 if (transport)
579 transport_unlock_pack(transport);
580
8434c2f1
DB
581 if (!option_no_checkout) {
582 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
583 struct unpack_trees_options opts;
584 struct tree *tree;
585 struct tree_desc t;
586 int fd;
587
588 /* We need to be in the new work tree for the checkout */
589 setup_work_tree();
590
591 fd = hold_locked_index(lock_file, 1);
592
593 memset(&opts, 0, sizeof opts);
594 opts.update = 1;
a73bc127
JS
595 opts.merge = 1;
596 opts.fn = oneway_merge;
8434c2f1 597 opts.verbose_update = !option_quiet;
a73bc127 598 opts.src_index = &the_index;
8434c2f1
DB
599 opts.dst_index = &the_index;
600
601 tree = parse_tree_indirect(remote_head->old_sha1);
602 parse_tree(tree);
603 init_tree_desc(&t, tree->buffer, tree->size);
604 unpack_trees(1, &t, &opts);
605
606 if (write_cache(fd, active_cache, active_nr) ||
607 commit_locked_index(lock_file))
608 die("unable to write new index file");
dfa7a6c5
JK
609
610 err |= run_hook(NULL, "post-checkout", sha1_to_hex(null_sha1),
611 sha1_to_hex(remote_head->old_sha1), "1", NULL);
8434c2f1
DB
612 }
613
614 strbuf_release(&reflog_msg);
b5ff37ac
MV
615 strbuf_release(&branch_top);
616 strbuf_release(&key);
617 strbuf_release(&value);
8434c2f1 618 junk_pid = 0;
dfa7a6c5 619 return err;
8434c2f1 620}