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