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