]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/clone.c
Git 1.8.4.1
[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
c2e86add 11#include "builtin.h"
8434c2f1
DB
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"
4a16d072 21#include "sigchain.h"
a9f2c136 22#include "branch.h"
8ef51733 23#include "remote.h"
dfa7a6c5 24#include "run-command.h"
0433ad12 25#include "connected.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[] = {
32b77add 36 N_("git clone [options] [--] <repo> [<dir>]"),
8434c2f1
DB
37 NULL
38};
39
3e6e0edd 40static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
189260b1 41static int option_local = -1, option_no_hardlinks, option_shared, option_recursive;
dbc92b07 42static char *option_template, *option_depth;
8434c2f1 43static char *option_origin = NULL;
7a4ee28f 44static char *option_branch = NULL;
b57fb80a 45static const char *real_git_dir;
8434c2f1 46static char *option_upload_pack = "git-upload-pack";
5bd631b3 47static int option_verbosity;
01fdc21f 48static int option_progress = -1;
84054f79 49static struct string_list option_config;
dbc92b07
JH
50static struct string_list option_reference;
51
52static int opt_parse_reference(const struct option *opt, const char *arg, int unset)
53{
54 struct string_list *option_reference = opt->value;
55 if (!arg)
56 return -1;
57 string_list_append(option_reference, arg);
58 return 0;
59}
8434c2f1
DB
60
61static struct option builtin_clone_options[] = {
5bd631b3 62 OPT__VERBOSITY(&option_verbosity),
01fdc21f 63 OPT_BOOL(0, "progress", &option_progress,
32b77add 64 N_("force progress reporting")),
8434c2f1 65 OPT_BOOLEAN('n', "no-checkout", &option_no_checkout,
32b77add
NTND
66 N_("don't create a checkout")),
67 OPT_BOOLEAN(0, "bare", &option_bare, N_("create a bare repository")),
ebc9d420 68 { OPTION_BOOLEAN, 0, "naked", &option_bare, NULL,
32b77add 69 N_("create a bare repository"),
ebc9d420 70 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
bc699afc 71 OPT_BOOLEAN(0, "mirror", &option_mirror,
32b77add 72 N_("create a mirror repository (implies bare)")),
189260b1 73 OPT_BOOL('l', "local", &option_local,
32b77add 74 N_("to clone from a local repository")),
8434c2f1 75 OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks,
32b77add 76 N_("don't use local hardlinks, always copy")),
8434c2f1 77 OPT_BOOLEAN('s', "shared", &option_shared,
32b77add 78 N_("setup as shared repository")),
e7fed18a 79 OPT_BOOLEAN(0, "recursive", &option_recursive,
32b77add 80 N_("initialize submodules in the clone")),
3446a54c 81 OPT_BOOLEAN(0, "recurse-submodules", &option_recursive,
32b77add
NTND
82 N_("initialize submodules in the clone")),
83 OPT_STRING(0, "template", &option_template, N_("template-directory"),
84 N_("directory from which templates will be used")),
85 OPT_CALLBACK(0 , "reference", &option_reference, N_("repo"),
86 N_("reference repository"), &opt_parse_reference),
87 OPT_STRING('o', "origin", &option_origin, N_("name"),
88 N_("use <name> instead of 'origin' to track upstream")),
89 OPT_STRING('b', "branch", &option_branch, N_("branch"),
90 N_("checkout <branch> instead of the remote's HEAD")),
91 OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
92 N_("path to git-upload-pack on the remote")),
93 OPT_STRING(0, "depth", &option_depth, N_("depth"),
94 N_("create a shallow clone of that depth")),
3e6e0edd 95 OPT_BOOL(0, "single-branch", &option_single_branch,
32b77add
NTND
96 N_("clone only one branch, HEAD or --branch")),
97 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
98 N_("separate git dir from working tree")),
99 OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
100 N_("set config inside the new repository")),
8434c2f1
DB
101 OPT_END()
102};
103
e7fed18a
JH
104static const char *argv_submodule[] = {
105 "submodule", "update", "--init", "--recursive", NULL
106};
107
8434c2f1
DB
108static char *get_repo_path(const char *repo, int *is_bundle)
109{
b3256eb8 110 static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
8434c2f1
DB
111 static char *bundle_suffix[] = { ".bundle", "" };
112 struct stat st;
113 int i;
114
115 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
116 const char *path;
117 path = mkpath("%s%s", repo, suffix[i]);
9b0ebc72
NTND
118 if (stat(path, &st))
119 continue;
b3256eb8 120 if (S_ISDIR(st.st_mode) && is_git_directory(path)) {
8434c2f1 121 *is_bundle = 0;
e2a57aac 122 return xstrdup(absolute_path(path));
9b0ebc72
NTND
123 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
124 /* Is it a "gitfile"? */
125 char signature[8];
126 int len, fd = open(path, O_RDONLY);
127 if (fd < 0)
128 continue;
129 len = read_in_full(fd, signature, 8);
130 close(fd);
131 if (len != 8 || strncmp(signature, "gitdir: ", 8))
132 continue;
133 path = read_gitfile(path);
134 if (path) {
135 *is_bundle = 0;
136 return xstrdup(absolute_path(path));
137 }
8434c2f1
DB
138 }
139 }
140
141 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
142 const char *path;
143 path = mkpath("%s%s", repo, bundle_suffix[i]);
144 if (!stat(path, &st) && S_ISREG(st.st_mode)) {
145 *is_bundle = 1;
e2a57aac 146 return xstrdup(absolute_path(path));
8434c2f1
DB
147 }
148 }
149
150 return NULL;
151}
152
6612f877 153static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
8434c2f1 154{
b8c5db35 155 const char *end = repo + strlen(repo), *start;
8a94bc7b 156 char *dir;
b8c5db35
JS
157
158 /*
8a94bc7b 159 * Strip trailing spaces, slashes and /.git
b8c5db35 160 */
8a94bc7b 161 while (repo < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
b8c5db35
JS
162 end--;
163 if (end - repo > 5 && is_dir_sep(end[-5]) &&
164 !strncmp(end - 4, ".git", 4)) {
165 end -= 5;
166 while (repo < end && is_dir_sep(end[-1]))
167 end--;
168 }
169
170 /*
171 * Find last component, but be prepared that repo could have
172 * the form "remote.example.com:foo.git", i.e. no slash
173 * in the directory part.
174 */
175 start = end;
176 while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
177 start--;
178
179 /*
180 * Strip .{bundle,git}.
181 */
182 if (is_bundle) {
183 if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
184 end -= 7;
185 } else {
186 if (end - start > 4 && !strncmp(end - 4, ".git", 4))
187 end -= 4;
8434c2f1
DB
188 }
189
6612f877 190 if (is_bare) {
32716a2c
MV
191 struct strbuf result = STRBUF_INIT;
192 strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
2af202be 193 dir = strbuf_detach(&result, NULL);
8a94bc7b
AR
194 } else
195 dir = xstrndup(start, end - start);
196 /*
197 * Replace sequences of 'control' characters and whitespace
198 * with one ascii space, remove leading and trailing spaces.
199 */
200 if (*dir) {
201 char *out = dir;
202 int prev_space = 1 /* strip leading whitespace */;
203 for (end = dir; *end; ++end) {
204 char ch = *end;
205 if ((unsigned char)ch < '\x20')
206 ch = '\x20';
207 if (isspace(ch)) {
208 if (prev_space)
209 continue;
210 prev_space = 1;
211 } else
212 prev_space = 0;
213 *out++ = ch;
214 }
215 *out = '\0';
216 if (out > dir && prev_space)
217 out[-1] = '\0';
6612f877 218 }
8a94bc7b 219 return dir;
8434c2f1
DB
220}
221
44a68fd5
CB
222static void strip_trailing_slashes(char *dir)
223{
224 char *end = dir + strlen(dir);
225
226 while (dir < end - 1 && is_dir_sep(end[-1]))
227 end--;
228 *end = '\0';
229}
230
dbc92b07 231static int add_one_reference(struct string_list_item *item, void *cb_data)
8434c2f1 232{
e6baf4a1 233 char *ref_git;
b552b56d 234 const char *repo;
e6baf4a1 235 struct strbuf alternate = STRBUF_INIT;
8434c2f1 236
b552b56d 237 /* Beware: read_gitfile(), real_path() and mkpath() return static buffer */
e6baf4a1 238 ref_git = xstrdup(real_path(item->string));
b552b56d
AS
239
240 repo = read_gitfile(ref_git);
241 if (!repo)
242 repo = read_gitfile(mkpath("%s/.git", ref_git));
243 if (repo) {
244 free(ref_git);
245 ref_git = xstrdup(repo);
246 }
247
248 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
4e2d094d 249 char *ref_git_git = mkpathdup("%s/.git", ref_git);
e6baf4a1
JH
250 free(ref_git);
251 ref_git = ref_git_git;
252 } else if (!is_directory(mkpath("%s/objects", ref_git)))
0658569e 253 die(_("reference repository '%s' is not a local repository."),
dbc92b07 254 item->string);
8434c2f1 255
e6baf4a1
JH
256 strbuf_addf(&alternate, "%s/objects", ref_git);
257 add_to_alternates_file(alternate.buf);
258 strbuf_release(&alternate);
e6baf4a1 259 free(ref_git);
dbc92b07
JH
260 return 0;
261}
8434c2f1 262
dbc92b07
JH
263static void setup_reference(void)
264{
265 for_each_string_list(&option_reference, add_one_reference, NULL);
8434c2f1
DB
266}
267
e6baf4a1
JH
268static void copy_alternates(struct strbuf *src, struct strbuf *dst,
269 const char *src_repo)
270{
271 /*
272 * Read from the source objects/info/alternates file
273 * and copy the entries to corresponding file in the
274 * destination repository with add_to_alternates_file().
275 * Both src and dst have "$path/objects/info/alternates".
276 *
277 * Instead of copying bit-for-bit from the original,
278 * we need to append to existing one so that the already
279 * created entry via "clone -s" is not lost, and also
280 * to turn entries with paths relative to the original
281 * absolute, so that they can be used in the new repository.
282 */
283 FILE *in = fopen(src->buf, "r");
284 struct strbuf line = STRBUF_INIT;
285
286 while (strbuf_getline(&line, in, '\n') != EOF) {
287 char *abs_path, abs_buf[PATH_MAX];
288 if (!line.len || line.buf[0] == '#')
289 continue;
290 if (is_absolute_path(line.buf)) {
291 add_to_alternates_file(line.buf);
292 continue;
293 }
294 abs_path = mkpath("%s/objects/%s", src_repo, line.buf);
295 normalize_path_copy(abs_buf, abs_path);
296 add_to_alternates_file(abs_buf);
297 }
298 strbuf_release(&line);
299 fclose(in);
300}
301
302static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
303 const char *src_repo, int src_baselen)
8434c2f1
DB
304{
305 struct dirent *de;
306 struct stat buf;
307 int src_len, dest_len;
308 DIR *dir;
309
b9e125e0 310 dir = opendir(src->buf);
8434c2f1 311 if (!dir)
e84d7b74 312 die_errno(_("failed to open '%s'"), src->buf);
8434c2f1 313
b9e125e0 314 if (mkdir(dest->buf, 0777)) {
8434c2f1 315 if (errno != EEXIST)
e84d7b74 316 die_errno(_("failed to create directory '%s'"), dest->buf);
b9e125e0 317 else if (stat(dest->buf, &buf))
e84d7b74 318 die_errno(_("failed to stat '%s'"), dest->buf);
8434c2f1 319 else if (!S_ISDIR(buf.st_mode))
e84d7b74 320 die(_("%s exists and is not a directory"), dest->buf);
8434c2f1
DB
321 }
322
b9e125e0
MV
323 strbuf_addch(src, '/');
324 src_len = src->len;
325 strbuf_addch(dest, '/');
326 dest_len = dest->len;
8434c2f1
DB
327
328 while ((de = readdir(dir)) != NULL) {
b9e125e0
MV
329 strbuf_setlen(src, src_len);
330 strbuf_addstr(src, de->d_name);
331 strbuf_setlen(dest, dest_len);
332 strbuf_addstr(dest, de->d_name);
333 if (stat(src->buf, &buf)) {
e84d7b74 334 warning (_("failed to stat %s\n"), src->buf);
8434c2f1
DB
335 continue;
336 }
337 if (S_ISDIR(buf.st_mode)) {
338 if (de->d_name[0] != '.')
e6baf4a1
JH
339 copy_or_link_directory(src, dest,
340 src_repo, src_baselen);
341 continue;
342 }
343
344 /* Files that cannot be copied bit-for-bit... */
345 if (!strcmp(src->buf + src_baselen, "/info/alternates")) {
346 copy_alternates(src, dest, src_repo);
8434c2f1
DB
347 continue;
348 }
349
b9e125e0 350 if (unlink(dest->buf) && errno != ENOENT)
e84d7b74 351 die_errno(_("failed to unlink '%s'"), dest->buf);
fdabc242 352 if (!option_no_hardlinks) {
b9e125e0 353 if (!link(src->buf, dest->buf))
fdabc242 354 continue;
189260b1 355 if (option_local > 0)
e84d7b74 356 die_errno(_("failed to create link '%s'"), dest->buf);
fdabc242 357 option_no_hardlinks = 1;
8434c2f1 358 }
f7835a25 359 if (copy_file_with_time(dest->buf, src->buf, 0666))
e84d7b74 360 die_errno(_("failed to copy file to '%s'"), dest->buf);
8434c2f1 361 }
689ef4d4 362 closedir(dir);
8434c2f1
DB
363}
364
6f48d39f 365static void clone_local(const char *src_repo, const char *dest_repo)
8434c2f1 366{
e6baf4a1
JH
367 if (option_shared) {
368 struct strbuf alt = STRBUF_INIT;
369 strbuf_addf(&alt, "%s/objects", src_repo);
370 add_to_alternates_file(alt.buf);
371 strbuf_release(&alt);
372 } else {
373 struct strbuf src = STRBUF_INIT;
374 struct strbuf dest = STRBUF_INIT;
b9e125e0
MV
375 strbuf_addf(&src, "%s/objects", src_repo);
376 strbuf_addf(&dest, "%s/objects", dest_repo);
e6baf4a1 377 copy_or_link_directory(&src, &dest, src_repo, src.len);
b9e125e0
MV
378 strbuf_release(&src);
379 strbuf_release(&dest);
8434c2f1
DB
380 }
381
28ba96ab 382 if (0 <= option_verbosity)
e84d7b74 383 printf(_("done.\n"));
8434c2f1
DB
384}
385
386static const char *junk_work_tree;
387static const char *junk_git_dir;
e161acd1 388static pid_t junk_pid;
85064630 389static enum {
d3b34622
JK
390 JUNK_LEAVE_NONE,
391 JUNK_LEAVE_REPO,
392 JUNK_LEAVE_ALL
393} junk_mode = JUNK_LEAVE_NONE;
394
395static const char junk_leave_repo_msg[] =
396N_("Clone succeeded, but checkout failed.\n"
397 "You can inspect what was checked out with 'git status'\n"
398 "and retry the checkout with 'git checkout -f HEAD'\n");
8434c2f1
DB
399
400static void remove_junk(void)
401{
f285a2d7 402 struct strbuf sb = STRBUF_INIT;
d3b34622
JK
403
404 switch (junk_mode) {
405 case JUNK_LEAVE_REPO:
406 warning("%s", _(junk_leave_repo_msg));
407 /* fall-through */
408 case JUNK_LEAVE_ALL:
409 return;
410 default:
411 /* proceed to removal */
412 break;
413 }
414
8434c2f1
DB
415 if (getpid() != junk_pid)
416 return;
8434c2f1
DB
417 if (junk_git_dir) {
418 strbuf_addstr(&sb, junk_git_dir);
419 remove_dir_recursively(&sb, 0);
420 strbuf_reset(&sb);
421 }
422 if (junk_work_tree) {
423 strbuf_addstr(&sb, junk_work_tree);
424 remove_dir_recursively(&sb, 0);
425 strbuf_reset(&sb);
426 }
427}
428
429static void remove_junk_on_signal(int signo)
430{
431 remove_junk();
4a16d072 432 sigchain_pop(signo);
8434c2f1
DB
433 raise(signo);
434}
435
9e585046
NTND
436static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
437{
438 struct ref *ref;
439 struct strbuf head = STRBUF_INIT;
440 strbuf_addstr(&head, "refs/heads/");
441 strbuf_addstr(&head, branch);
442 ref = find_ref_by_name(refs, head.buf);
443 strbuf_release(&head);
5a7d5b68
NTND
444
445 if (ref)
446 return ref;
447
448 strbuf_addstr(&head, "refs/tags/");
449 strbuf_addstr(&head, branch);
450 ref = find_ref_by_name(refs, head.buf);
451 strbuf_release(&head);
452
9e585046
NTND
453 return ref;
454}
455
5bdc32d3
NP
456static struct ref *wanted_peer_refs(const struct ref *refs,
457 struct refspec *refspec)
8434c2f1 458{
c1921c18
JK
459 struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
460 struct ref *local_refs = head;
461 struct ref **tail = head ? &head->next : &local_refs;
8434c2f1 462
3e6e0edd
NTND
463 if (option_single_branch) {
464 struct ref *remote_head = NULL;
465
466 if (!option_branch)
467 remote_head = guess_remote_head(head, refs, 0);
0ec4b165
NTND
468 else {
469 local_refs = NULL;
470 tail = &local_refs;
471 remote_head = copy_ref(find_remote_branch(refs, option_branch));
472 }
3e6e0edd
NTND
473
474 if (!remote_head && option_branch)
475 warning(_("Could not find remote branch %s to clone."),
476 option_branch);
5a7d5b68 477 else {
3e6e0edd 478 get_fetch_map(remote_head, refspec, &tail, 0);
5a7d5b68
NTND
479
480 /* if --branch=tag, pull the requested tag explicitly */
481 get_fetch_map(remote_head, tag_refspec, &tail, 0);
482 }
3e6e0edd
NTND
483 } else
484 get_fetch_map(refs, refspec, &tail, 0);
485
486 if (!option_mirror && !option_single_branch)
468386a9 487 get_fetch_map(refs, tag_refspec, &tail, 0);
8434c2f1 488
5bdc32d3
NP
489 return local_refs;
490}
491
492static void write_remote_refs(const struct ref *local_refs)
493{
494 const struct ref *r;
495
9f69d297
MH
496 lock_packed_refs(LOCK_DIE_ON_ERROR);
497
c1921c18
JK
498 for (r = local_refs; r; r = r->next) {
499 if (!r->peer_ref)
500 continue;
39ef7fae 501 add_packed_ref(r->peer_ref->name, r->old_sha1);
c1921c18 502 }
3e8aded2 503
9f69d297
MH
504 if (commit_packed_refs())
505 die_errno("unable to overwrite old ref-pack file");
8434c2f1
DB
506}
507
3e6e0edd
NTND
508static void write_followtags(const struct ref *refs, const char *msg)
509{
510 const struct ref *ref;
511 for (ref = refs; ref; ref = ref->next) {
512 if (prefixcmp(ref->name, "refs/tags/"))
513 continue;
514 if (!suffixcmp(ref->name, "^{}"))
515 continue;
516 if (!has_sha1_file(ref->old_sha1))
517 continue;
518 update_ref(msg, ref->name, ref->old_sha1,
519 NULL, 0, DIE_ON_ERR);
520 }
521}
522
0433ad12
JK
523static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
524{
525 struct ref **rm = cb_data;
526 struct ref *ref = *rm;
527
528 /*
529 * Skip anything missing a peer_ref, which we are not
530 * actually going to write a ref for.
531 */
532 while (ref && !ref->peer_ref)
533 ref = ref->next;
534 /* Returning -1 notes "end of list" to the caller. */
535 if (!ref)
536 return -1;
537
538 hashcpy(sha1, ref->old_sha1);
539 *rm = ref->next;
540 return 0;
541}
542
960b7d1c
NTND
543static void update_remote_refs(const struct ref *refs,
544 const struct ref *mapped_refs,
545 const struct ref *remote_head_points_at,
546 const char *branch_top,
c6807a40 547 const char *msg,
45ed4afa 548 struct transport *transport,
125a05fd 549 int check_connectivity)
960b7d1c 550{
0433ad12
JK
551 const struct ref *rm = mapped_refs;
552
125a05fd 553 if (check_connectivity) {
45ed4afa
JH
554 if (0 <= option_verbosity)
555 printf(_("Checking connectivity... "));
556 if (check_everything_connected_with_transport(iterate_ref_map,
557 0, &rm, transport))
125a05fd 558 die(_("remote did not send all necessary objects"));
45ed4afa
JH
559 if (0 <= option_verbosity)
560 printf(_("done\n"));
125a05fd 561 }
0433ad12 562
960b7d1c 563 if (refs) {
960b7d1c
NTND
564 write_remote_refs(mapped_refs);
565 if (option_single_branch)
566 write_followtags(refs, msg);
567 }
568
569 if (remote_head_points_at && !option_bare) {
570 struct strbuf head_ref = STRBUF_INIT;
571 strbuf_addstr(&head_ref, branch_top);
572 strbuf_addstr(&head_ref, "HEAD");
573 create_symref(head_ref.buf,
574 remote_head_points_at->peer_ref->name,
575 msg);
576 }
577}
578
f034d354
NTND
579static void update_head(const struct ref *our, const struct ref *remote,
580 const char *msg)
581{
9e585046 582 if (our && !prefixcmp(our->name, "refs/heads/")) {
f034d354
NTND
583 /* Local default branch link */
584 create_symref("HEAD", our->name, NULL);
585 if (!option_bare) {
586 const char *head = skip_prefix(our->name, "refs/heads/");
587 update_ref(msg, "HEAD", our->old_sha1, NULL, 0, DIE_ON_ERR);
588 install_branch_config(0, head, option_origin, our->name);
589 }
5a7d5b68
NTND
590 } else if (our) {
591 struct commit *c = lookup_commit_reference(our->old_sha1);
592 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
593 update_ref(msg, "HEAD", c->object.sha1,
594 NULL, REF_NODEREF, DIE_ON_ERR);
f034d354
NTND
595 } else if (remote) {
596 /*
597 * We know remote HEAD points to a non-branch, or
920b691f 598 * HEAD points to a branch but we don't know which one.
f034d354
NTND
599 * Detach HEAD in all these cases.
600 */
601 update_ref(msg, "HEAD", remote->old_sha1,
602 NULL, REF_NODEREF, DIE_ON_ERR);
603 }
604}
605
c39852c1
NTND
606static int checkout(void)
607{
608 unsigned char sha1[20];
609 char *head;
610 struct lock_file *lock_file;
611 struct unpack_trees_options opts;
612 struct tree *tree;
613 struct tree_desc t;
614 int err = 0, fd;
615
616 if (option_no_checkout)
617 return 0;
618
619 head = resolve_refdup("HEAD", sha1, 1, NULL);
620 if (!head) {
621 warning(_("remote HEAD refers to nonexistent ref, "
622 "unable to checkout.\n"));
623 return 0;
624 }
2857093b
NTND
625 if (!strcmp(head, "HEAD")) {
626 if (advice_detached_head)
627 detach_advice(sha1_to_hex(sha1));
628 } else {
c39852c1
NTND
629 if (prefixcmp(head, "refs/heads/"))
630 die(_("HEAD not found below refs/heads!"));
631 }
632 free(head);
633
634 /* We need to be in the new work tree for the checkout */
635 setup_work_tree();
636
637 lock_file = xcalloc(1, sizeof(struct lock_file));
638 fd = hold_locked_index(lock_file, 1);
639
640 memset(&opts, 0, sizeof opts);
641 opts.update = 1;
642 opts.merge = 1;
643 opts.fn = oneway_merge;
8f63da13 644 opts.verbose_update = (option_verbosity >= 0);
c39852c1
NTND
645 opts.src_index = &the_index;
646 opts.dst_index = &the_index;
647
648 tree = parse_tree_indirect(sha1);
649 parse_tree(tree);
650 init_tree_desc(&t, tree->buffer, tree->size);
0aac7bb2
JK
651 if (unpack_trees(1, &t, &opts) < 0)
652 die(_("unable to checkout working tree"));
c39852c1
NTND
653
654 if (write_cache(fd, active_cache, active_nr) ||
655 commit_locked_index(lock_file))
656 die(_("unable to write new index file"));
657
658 err |= run_hook(NULL, "post-checkout", sha1_to_hex(null_sha1),
659 sha1_to_hex(sha1), "1", NULL);
660
661 if (!err && option_recursive)
662 err = run_command_v_opt(argv_submodule, RUN_GIT_CMD);
663
664 return err;
665}
666
84054f79
JK
667static int write_one_config(const char *key, const char *value, void *data)
668{
669 return git_config_set_multivar(key, value ? value : "true", "^$", 0);
670}
671
672static void write_config(struct string_list *config)
673{
674 int i;
675
676 for (i = 0; i < config->nr; i++) {
677 if (git_config_parse_parameter(config->items[i].string,
678 write_one_config, NULL) < 0)
679 die("unable to write parameters to config file");
680 }
681}
682
31b808a0
RT
683static void write_refspec_config(const char* src_ref_prefix,
684 const struct ref* our_head_points_at,
685 const struct ref* remote_head_points_at, struct strbuf* branch_top)
686{
687 struct strbuf key = STRBUF_INIT;
688 struct strbuf value = STRBUF_INIT;
689
690 if (option_mirror || !option_bare) {
691 if (option_single_branch && !option_mirror) {
692 if (option_branch) {
693 if (strstr(our_head_points_at->name, "refs/tags/"))
694 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
695 our_head_points_at->name);
696 else
697 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
698 branch_top->buf, option_branch);
699 } else if (remote_head_points_at) {
700 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
701 branch_top->buf,
702 skip_prefix(remote_head_points_at->name, "refs/heads/"));
703 }
704 /*
705 * otherwise, the next "git fetch" will
706 * simply fetch from HEAD without updating
d6ac1d21 707 * any remote-tracking branch, which is what
31b808a0
RT
708 * we want.
709 */
710 } else {
711 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
712 }
713 /* Configure the remote */
714 if (value.len) {
715 strbuf_addf(&key, "remote.%s.fetch", option_origin);
716 git_config_set_multivar(key.buf, value.buf, "^$", 0);
717 strbuf_reset(&key);
718
719 if (option_mirror) {
720 strbuf_addf(&key, "remote.%s.mirror", option_origin);
721 git_config_set(key.buf, "true");
722 strbuf_reset(&key);
723 }
724 }
725 }
726
727 strbuf_release(&key);
728 strbuf_release(&value);
729}
730
8434c2f1
DB
731int cmd_clone(int argc, const char **argv, const char *prefix)
732{
24c61c44 733 int is_bundle = 0, is_local;
8434c2f1
DB
734 struct stat buf;
735 const char *repo_name, *repo, *work_tree, *git_dir;
736 char *path, *dir;
55892d23 737 int dest_exists;
37148311 738 const struct ref *refs, *remote_head;
7a4ee28f
JK
739 const struct ref *remote_head_points_at;
740 const struct ref *our_head_points_at;
37148311 741 struct ref *mapped_refs;
90498161 742 const struct ref *ref;
b5ff37ac
MV
743 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
744 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
1db4a75c 745 struct transport *transport = NULL;
9e585046 746 const char *src_ref_prefix = "refs/heads/";
6f48d39f 747 struct remote *remote;
90498161 748 int err = 0, complete_refs_before_fetch = 1;
8434c2f1 749
689f0396
DB
750 struct refspec *refspec;
751 const char *fetch_pattern;
8434c2f1
DB
752
753 junk_pid = getpid();
754
bbc30f99 755 packet_trace_identity("clone");
37782920 756 argc = parse_options(argc, argv, prefix, builtin_clone_options,
8434c2f1
DB
757 builtin_clone_usage, 0);
758
d52dc4b1 759 if (argc > 2)
e84d7b74 760 usage_msg_opt(_("Too many arguments."),
d52dc4b1
JN
761 builtin_clone_usage, builtin_clone_options);
762
8434c2f1 763 if (argc == 0)
e84d7b74 764 usage_msg_opt(_("You must specify a repository to clone."),
d52dc4b1 765 builtin_clone_usage, builtin_clone_options);
8434c2f1 766
3e6e0edd
NTND
767 if (option_single_branch == -1)
768 option_single_branch = option_depth ? 1 : 0;
769
bc699afc
JS
770 if (option_mirror)
771 option_bare = 1;
772
8434c2f1
DB
773 if (option_bare) {
774 if (option_origin)
e84d7b74 775 die(_("--bare and --origin %s options are incompatible."),
8434c2f1 776 option_origin);
95b63f1e
NTND
777 if (real_git_dir)
778 die(_("--bare and --separate-git-dir are incompatible."));
8434c2f1 779 option_no_checkout = 1;
8434c2f1
DB
780 }
781
782 if (!option_origin)
783 option_origin = "origin";
784
785 repo_name = argv[0];
786
787 path = get_repo_path(repo_name, &is_bundle);
788 if (path)
e2a57aac 789 repo = xstrdup(absolute_path(repo_name));
8434c2f1 790 else if (!strchr(repo_name, ':'))
d3e1ddfd 791 die(_("repository '%s' does not exist"), repo_name);
8434c2f1
DB
792 else
793 repo = repo_name;
189260b1 794 is_local = option_local != 0 && path && !is_bundle;
24c61c44 795 if (is_local && option_depth)
e84d7b74 796 warning(_("--depth is ignored in local clones; use file:// instead."));
60003340
NTND
797 if (option_local > 0 && !is_local)
798 warning(_("--local is ignored"));
8434c2f1
DB
799
800 if (argc == 2)
801 dir = xstrdup(argv[1]);
802 else
6612f877 803 dir = guess_dir_name(repo_name, is_bundle, option_bare);
44a68fd5 804 strip_trailing_slashes(dir);
8434c2f1 805
55892d23
AP
806 dest_exists = !stat(dir, &buf);
807 if (dest_exists && !is_empty_dir(dir))
e84d7b74
ÆAB
808 die(_("destination path '%s' already exists and is not "
809 "an empty directory."), dir);
8434c2f1 810
8434c2f1
DB
811 strbuf_addf(&reflog_msg, "clone: from %s", repo);
812
813 if (option_bare)
814 work_tree = NULL;
815 else {
816 work_tree = getenv("GIT_WORK_TREE");
817 if (work_tree && !stat(work_tree, &buf))
e84d7b74 818 die(_("working tree '%s' already exists."), work_tree);
8434c2f1
DB
819 }
820
821 if (option_bare || work_tree)
822 git_dir = xstrdup(dir);
823 else {
824 work_tree = dir;
4e2d094d 825 git_dir = mkpathdup("%s/.git", dir);
8434c2f1
DB
826 }
827
828 if (!option_bare) {
829 junk_work_tree = work_tree;
8e21d63b 830 if (safe_create_leading_directories_const(work_tree) < 0)
e84d7b74 831 die_errno(_("could not create leading directories of '%s'"),
d824cbba 832 work_tree);
45d4fdc2 833 if (!dest_exists && mkdir(work_tree, 0777))
e84d7b74 834 die_errno(_("could not create work tree dir '%s'."),
d824cbba 835 work_tree);
8434c2f1
DB
836 set_git_work_tree(work_tree);
837 }
838 junk_git_dir = git_dir;
839 atexit(remove_junk);
57b235a4 840 sigchain_push_common(remove_junk_on_signal);
8434c2f1 841
8e21d63b 842 if (safe_create_leading_directories_const(git_dir) < 0)
e84d7b74 843 die(_("could not create leading directories of '%s'"), git_dir);
b57fb80a
NTND
844
845 set_git_dir_init(git_dir, real_git_dir, 0);
9be1980b 846 if (real_git_dir) {
b57fb80a 847 git_dir = real_git_dir;
9be1980b
JL
848 junk_git_dir = real_git_dir;
849 }
8434c2f1 850
3781fcce
ÆAB
851 if (0 <= option_verbosity) {
852 if (option_bare)
8debf696 853 printf(_("Cloning into bare repository '%s'...\n"), dir);
3781fcce 854 else
8debf696 855 printf(_("Cloning into '%s'...\n"), dir);
3781fcce 856 }
28ba96ab 857 init_db(option_template, INIT_DB_QUIET);
84054f79 858 write_config(&option_config);
8434c2f1 859
9bd81e42 860 git_config(git_default_config, NULL);
8434c2f1
DB
861
862 if (option_bare) {
bc699afc
JS
863 if (option_mirror)
864 src_ref_prefix = "refs/";
b5ff37ac 865 strbuf_addstr(&branch_top, src_ref_prefix);
8434c2f1
DB
866
867 git_config_set("core.bare", "true");
868 } else {
b5ff37ac 869 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
bc699afc 870 }
8434c2f1 871
689f0396 872 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
df61c889
SR
873 strbuf_addf(&key, "remote.%s.url", option_origin);
874 git_config_set(key.buf, repo);
875 strbuf_reset(&key);
876
dbc92b07
JH
877 if (option_reference.nr)
878 setup_reference();
766ac6a6 879
689f0396
DB
880 fetch_pattern = value.buf;
881 refspec = parse_fetch_refspec(1, &fetch_pattern);
882
883 strbuf_reset(&value);
8434c2f1 884
6f48d39f
NTND
885 remote = remote_get(option_origin);
886 transport = transport_get(remote, remote->url[0]);
8434c2f1 887
6f48d39f 888 if (!is_local) {
37b78c25 889 if (!transport->get_refs_list || !transport->fetch)
e84d7b74 890 die(_("Don't know how to clone %s"), transport->url);
37b78c25 891
8434c2f1
DB
892 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
893
894 if (option_depth)
895 transport_set_option(transport, TRANS_OPT_DEPTH,
896 option_depth);
3e6e0edd
NTND
897 if (option_single_branch)
898 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
8434c2f1 899
d01b3c02 900 transport_set_verbosity(transport, option_verbosity, option_progress);
8434c2f1 901
837c8767
SH
902 if (option_upload_pack)
903 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
904 option_upload_pack);
c6807a40
NTND
905
906 if (transport->smart_options && !option_depth)
907 transport->smart_options->check_self_contained_and_connected = 1;
8434c2f1
DB
908 }
909
6f48d39f 910 refs = transport_get_remote_refs(transport);
8434c2f1 911
5b05795c
MH
912 if (refs) {
913 mapped_refs = wanted_peer_refs(refs, refspec);
914 /*
915 * transport_get_remote_refs() may return refs with null sha-1
916 * in mapped_refs (see struct transport->get_refs_list
917 * comment). In that case we need fetch it early because
918 * remote_head code below relies on it.
919 *
920 * for normal clones, transport_get_remote_refs() should
921 * return reliable ref set, we can delay cloning until after
922 * remote HEAD check.
923 */
924 for (ref = refs; ref; ref = ref->next)
925 if (is_null_sha1(ref->old_sha1)) {
926 complete_refs_before_fetch = 0;
927 break;
928 }
90498161 929
5b05795c
MH
930 if (!is_local && !complete_refs_before_fetch)
931 transport_fetch_refs(transport, mapped_refs);
8434c2f1 932
6cb4e6cc 933 remote_head = find_ref_by_name(refs, "HEAD");
7a4ee28f
JK
934 remote_head_points_at =
935 guess_remote_head(remote_head, mapped_refs, 0);
936
937 if (option_branch) {
7a4ee28f 938 our_head_points_at =
9e585046 939 find_remote_branch(mapped_refs, option_branch);
7a4ee28f 940
920b691f
NTND
941 if (!our_head_points_at)
942 die(_("Remote branch %s not found in upstream %s"),
943 option_branch, option_origin);
7a4ee28f
JK
944 }
945 else
946 our_head_points_at = remote_head_points_at;
86ac7518
SR
947 }
948 else {
e84d7b74 949 warning(_("You appear to have cloned an empty repository."));
5b05795c 950 mapped_refs = NULL;
7a4ee28f
JK
951 our_head_points_at = NULL;
952 remote_head_points_at = NULL;
86ac7518
SR
953 remote_head = NULL;
954 option_no_checkout = 1;
5cd12b85 955 if (!option_bare)
a9f2c136 956 install_branch_config(0, "master", option_origin,
5cd12b85 957 "refs/heads/master");
86ac7518 958 }
8434c2f1 959
31b808a0
RT
960 write_refspec_config(src_ref_prefix, our_head_points_at,
961 remote_head_points_at, &branch_top);
962
6f48d39f
NTND
963 if (is_local)
964 clone_local(path, git_dir);
90498161 965 else if (refs && complete_refs_before_fetch)
6f48d39f 966 transport_fetch_refs(transport, mapped_refs);
8434c2f1 967
960b7d1c 968 update_remote_refs(refs, mapped_refs, remote_head_points_at,
45ed4afa 969 branch_top.buf, reflog_msg.buf, transport, !is_local);
8434c2f1 970
f034d354 971 update_head(our_head_points_at, remote_head, reflog_msg.buf);
1db4a75c 972
6f48d39f
NTND
973 transport_unlock_pack(transport);
974 transport_disconnect(transport);
1db4a75c 975
d3b34622 976 junk_mode = JUNK_LEAVE_REPO;
c39852c1 977 err = checkout();
8434c2f1
DB
978
979 strbuf_release(&reflog_msg);
b5ff37ac
MV
980 strbuf_release(&branch_top);
981 strbuf_release(&key);
982 strbuf_release(&value);
d3b34622 983 junk_mode = JUNK_LEAVE_ALL;
dfa7a6c5 984 return err;
8434c2f1 985}