]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/clone.c
object-store: move object access functions to object-store.h
[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"
b2141fc1 12#include "config.h"
697cc8ef 13#include "lockfile.h"
8434c2f1
DB
14#include "parse-options.h"
15#include "fetch-pack.h"
16#include "refs.h"
cbd53a21 17#include "object-store.h"
8434c2f1
DB
18#include "tree.h"
19#include "tree-walk.h"
20#include "unpack-trees.h"
21#include "transport.h"
22#include "strbuf.h"
23#include "dir.h"
4a16d072 24#include "sigchain.h"
a9f2c136 25#include "branch.h"
8ef51733 26#include "remote.h"
dfa7a6c5 27#include "run-command.h"
0433ad12 28#include "connected.h"
3836d88a 29#include "packfile.h"
548719fb 30#include "list-objects-filter-options.h"
0d4a1321 31#include "object-store.h"
8434c2f1
DB
32
33/*
34 * Overall FIXMEs:
35 * - respect DB_ENVIRONMENT for .git/objects.
36 *
37 * Implementation notes:
38 * - dropping use-separate-remote and no-separate-remote compatibility
39 *
40 */
41static const char * const builtin_clone_usage[] = {
9c9b4f2f 42 N_("git clone [<options>] [--] <repo> [<dir>]"),
8434c2f1
DB
43 NULL
44};
45
3e6e0edd 46static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
bb62e0a9 47static int option_local = -1, option_no_hardlinks, option_shared;
0dab2468 48static int option_no_tags;
18a74a09 49static int option_shallow_submodules;
994c2aaf
NTND
50static int deepen;
51static char *option_template, *option_depth, *option_since;
8434c2f1 52static char *option_origin = NULL;
7a4ee28f 53static char *option_branch = NULL;
859e5df9 54static struct string_list option_not = STRING_LIST_INIT_NODUP;
b57fb80a 55static const char *real_git_dir;
8434c2f1 56static char *option_upload_pack = "git-upload-pack";
5bd631b3 57static int option_verbosity;
01fdc21f 58static int option_progress = -1;
c915f11e 59static enum transport_family family;
2721ce21 60static struct string_list option_config = STRING_LIST_INIT_NODUP;
5e40800d 61static struct string_list option_required_reference = STRING_LIST_INIT_NODUP;
f7415b4d 62static struct string_list option_optional_reference = STRING_LIST_INIT_NODUP;
fb1d6dab 63static int option_dissociate;
72290d6a 64static int max_jobs = -1;
bb62e0a9 65static struct string_list option_recurse_submodules = STRING_LIST_INIT_NODUP;
548719fb 66static struct list_objects_filter_options filter_options;
bb62e0a9
BW
67
68static int recurse_submodules_cb(const struct option *opt,
69 const char *arg, int unset)
70{
71 if (unset)
72 string_list_clear((struct string_list *)opt->value, 0);
73 else if (arg)
74 string_list_append((struct string_list *)opt->value, arg);
75 else
76 string_list_append((struct string_list *)opt->value,
77 (const char *)opt->defval);
78
79 return 0;
80}
dbc92b07 81
8434c2f1 82static struct option builtin_clone_options[] = {
5bd631b3 83 OPT__VERBOSITY(&option_verbosity),
01fdc21f 84 OPT_BOOL(0, "progress", &option_progress,
32b77add 85 N_("force progress reporting")),
d5d09d47
SB
86 OPT_BOOL('n', "no-checkout", &option_no_checkout,
87 N_("don't create a checkout")),
4741edd5
SB
88 OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")),
89 OPT_HIDDEN_BOOL(0, "naked", &option_bare,
90 N_("create a bare repository")),
d5d09d47
SB
91 OPT_BOOL(0, "mirror", &option_mirror,
92 N_("create a mirror repository (implies bare)")),
189260b1 93 OPT_BOOL('l', "local", &option_local,
32b77add 94 N_("to clone from a local repository")),
d5d09d47 95 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks,
32b77add 96 N_("don't use local hardlinks, always copy")),
d5d09d47 97 OPT_BOOL('s', "shared", &option_shared,
32b77add 98 N_("setup as shared repository")),
bb62e0a9
BW
99 { OPTION_CALLBACK, 0, "recursive", &option_recurse_submodules,
100 N_("pathspec"), N_("initialize submodules in the clone"),
101 PARSE_OPT_OPTARG | PARSE_OPT_HIDDEN, recurse_submodules_cb,
102 (intptr_t)"." },
103 { OPTION_CALLBACK, 0, "recurse-submodules", &option_recurse_submodules,
104 N_("pathspec"), N_("initialize submodules in the clone"),
105 PARSE_OPT_OPTARG, recurse_submodules_cb, (intptr_t)"." },
72290d6a
SB
106 OPT_INTEGER('j', "jobs", &max_jobs,
107 N_("number of submodules cloned in parallel")),
32b77add
NTND
108 OPT_STRING(0, "template", &option_template, N_("template-directory"),
109 N_("directory from which templates will be used")),
5e40800d 110 OPT_STRING_LIST(0, "reference", &option_required_reference, N_("repo"),
8ade009c 111 N_("reference repository")),
f7415b4d
SB
112 OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference,
113 N_("repo"), N_("reference repository")),
14f8b9b4
JK
114 OPT_BOOL(0, "dissociate", &option_dissociate,
115 N_("use --reference only while cloning")),
32b77add
NTND
116 OPT_STRING('o', "origin", &option_origin, N_("name"),
117 N_("use <name> instead of 'origin' to track upstream")),
118 OPT_STRING('b', "branch", &option_branch, N_("branch"),
119 N_("checkout <branch> instead of the remote's HEAD")),
120 OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
121 N_("path to git-upload-pack on the remote")),
122 OPT_STRING(0, "depth", &option_depth, N_("depth"),
123 N_("create a shallow clone of that depth")),
994c2aaf
NTND
124 OPT_STRING(0, "shallow-since", &option_since, N_("time"),
125 N_("create a shallow clone since a specific time")),
859e5df9 126 OPT_STRING_LIST(0, "shallow-exclude", &option_not, N_("revision"),
6d873865 127 N_("deepen history of shallow clone, excluding rev")),
3e6e0edd 128 OPT_BOOL(0, "single-branch", &option_single_branch,
32b77add 129 N_("clone only one branch, HEAD or --branch")),
0dab2468
ÆAB
130 OPT_BOOL(0, "no-tags", &option_no_tags,
131 N_("don't clone any tags, and make later fetches not to follow them")),
d22eb044
SB
132 OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules,
133 N_("any cloned submodules will be shallow")),
32b77add
NTND
134 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
135 N_("separate git dir from working tree")),
136 OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
137 N_("set config inside the new repository")),
c915f11e
EW
138 OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
139 TRANSPORT_FAMILY_IPV4),
140 OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
141 TRANSPORT_FAMILY_IPV6),
548719fb 142 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
8434c2f1
DB
143 OPT_END()
144};
145
0ea68e42 146static const char *get_repo_path_1(struct strbuf *path, int *is_bundle)
8434c2f1 147{
b3256eb8 148 static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
8434c2f1 149 static char *bundle_suffix[] = { ".bundle", "" };
0ea68e42 150 size_t baselen = path->len;
8434c2f1
DB
151 struct stat st;
152 int i;
153
154 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
0ea68e42
JK
155 strbuf_setlen(path, baselen);
156 strbuf_addstr(path, suffix[i]);
157 if (stat(path->buf, &st))
9b0ebc72 158 continue;
0ea68e42 159 if (S_ISDIR(st.st_mode) && is_git_directory(path->buf)) {
8434c2f1 160 *is_bundle = 0;
0ea68e42 161 return path->buf;
9b0ebc72
NTND
162 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
163 /* Is it a "gitfile"? */
164 char signature[8];
0ea68e42
JK
165 const char *dst;
166 int len, fd = open(path->buf, O_RDONLY);
9b0ebc72
NTND
167 if (fd < 0)
168 continue;
169 len = read_in_full(fd, signature, 8);
170 close(fd);
171 if (len != 8 || strncmp(signature, "gitdir: ", 8))
172 continue;
0ea68e42
JK
173 dst = read_gitfile(path->buf);
174 if (dst) {
9b0ebc72 175 *is_bundle = 0;
0ea68e42 176 return dst;
9b0ebc72 177 }
8434c2f1
DB
178 }
179 }
180
181 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
0ea68e42
JK
182 strbuf_setlen(path, baselen);
183 strbuf_addstr(path, bundle_suffix[i]);
184 if (!stat(path->buf, &st) && S_ISREG(st.st_mode)) {
8434c2f1 185 *is_bundle = 1;
0ea68e42 186 return path->buf;
8434c2f1
DB
187 }
188 }
189
190 return NULL;
191}
192
0ea68e42
JK
193static char *get_repo_path(const char *repo, int *is_bundle)
194{
195 struct strbuf path = STRBUF_INIT;
196 const char *raw;
197 char *canon;
198
199 strbuf_addstr(&path, repo);
200 raw = get_repo_path_1(&path, is_bundle);
0aaad415 201 canon = raw ? absolute_pathdup(raw) : NULL;
0ea68e42
JK
202 strbuf_release(&path);
203 return canon;
204}
205
6612f877 206static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
8434c2f1 207{
e8959867 208 const char *end = repo + strlen(repo), *start, *ptr;
7e837c64 209 size_t len;
8a94bc7b 210 char *dir;
b8c5db35 211
e8959867
PS
212 /*
213 * Skip scheme.
214 */
215 start = strstr(repo, "://");
216 if (start == NULL)
217 start = repo;
218 else
219 start += 3;
220
221 /*
222 * Skip authentication data. The stripping does happen
223 * greedily, such that we strip up to the last '@' inside
224 * the host part.
225 */
226 for (ptr = start; ptr < end && !is_dir_sep(*ptr); ptr++) {
227 if (*ptr == '@')
228 start = ptr + 1;
229 }
230
b8c5db35 231 /*
8a94bc7b 232 * Strip trailing spaces, slashes and /.git
b8c5db35 233 */
e8959867 234 while (start < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
b8c5db35 235 end--;
e8959867 236 if (end - start > 5 && is_dir_sep(end[-5]) &&
b8c5db35
JS
237 !strncmp(end - 4, ".git", 4)) {
238 end -= 5;
e8959867 239 while (start < end && is_dir_sep(end[-1]))
b8c5db35
JS
240 end--;
241 }
242
243 /*
92722efe
PS
244 * Strip trailing port number if we've got only a
245 * hostname (that is, there is no dir separator but a
246 * colon). This check is required such that we do not
247 * strip URI's like '/foo/bar:2222.git', which should
248 * result in a dir '2222' being guessed due to backwards
249 * compatibility.
250 */
251 if (memchr(start, '/', end - start) == NULL
252 && memchr(start, ':', end - start) != NULL) {
253 ptr = end;
254 while (start < ptr && isdigit(ptr[-1]) && ptr[-1] != ':')
255 ptr--;
256 if (start < ptr && ptr[-1] == ':')
257 end = ptr - 1;
258 }
259
b8c5db35 260 /*
e8959867
PS
261 * Find last component. To remain backwards compatible we
262 * also regard colons as path separators, such that
263 * cloning a repository 'foo:bar.git' would result in a
264 * directory 'bar' being guessed.
b8c5db35 265 */
e8959867
PS
266 ptr = end;
267 while (start < ptr && !is_dir_sep(ptr[-1]) && ptr[-1] != ':')
268 ptr--;
269 start = ptr;
b8c5db35
JS
270
271 /*
272 * Strip .{bundle,git}.
273 */
db2e2204
JK
274 len = end - start;
275 strip_suffix_mem(start, &len, is_bundle ? ".bundle" : ".git");
8434c2f1 276
adef9561 277 if (!len || (len == 1 && *start == '/'))
39ad4f39
NTND
278 die(_("No directory name could be guessed.\n"
279 "Please specify a directory on the command line"));
adef9561 280
7e837c64
SS
281 if (is_bare)
282 dir = xstrfmt("%.*s.git", (int)len, start);
283 else
284 dir = xstrndup(start, len);
8a94bc7b
AR
285 /*
286 * Replace sequences of 'control' characters and whitespace
287 * with one ascii space, remove leading and trailing spaces.
288 */
289 if (*dir) {
290 char *out = dir;
291 int prev_space = 1 /* strip leading whitespace */;
292 for (end = dir; *end; ++end) {
293 char ch = *end;
294 if ((unsigned char)ch < '\x20')
295 ch = '\x20';
296 if (isspace(ch)) {
297 if (prev_space)
298 continue;
299 prev_space = 1;
300 } else
301 prev_space = 0;
302 *out++ = ch;
303 }
304 *out = '\0';
305 if (out > dir && prev_space)
306 out[-1] = '\0';
6612f877 307 }
8a94bc7b 308 return dir;
8434c2f1
DB
309}
310
44a68fd5
CB
311static void strip_trailing_slashes(char *dir)
312{
313 char *end = dir + strlen(dir);
314
315 while (dir < end - 1 && is_dir_sep(end[-1]))
316 end--;
317 *end = '\0';
318}
319
dbc92b07 320static int add_one_reference(struct string_list_item *item, void *cb_data)
8434c2f1 321{
9eeea7d2 322 struct strbuf err = STRBUF_INIT;
f7415b4d 323 int *required = cb_data;
9eeea7d2 324 char *ref_git = compute_alternate_path(item->string, &err);
8434c2f1 325
f7415b4d
SB
326 if (!ref_git) {
327 if (*required)
328 die("%s", err.buf);
329 else
330 fprintf(stderr,
331 _("info: Could not add alternate for '%s': %s\n"),
332 item->string, err.buf);
333 } else {
334 struct strbuf sb = STRBUF_INIT;
335 strbuf_addf(&sb, "%s/objects", ref_git);
336 add_to_alternates_file(sb.buf);
337 strbuf_release(&sb);
338 }
606e435a 339
9eeea7d2 340 strbuf_release(&err);
f7415b4d 341 free(ref_git);
dbc92b07
JH
342 return 0;
343}
8434c2f1 344
dbc92b07
JH
345static void setup_reference(void)
346{
f7415b4d
SB
347 int required = 1;
348 for_each_string_list(&option_required_reference,
349 add_one_reference, &required);
350 required = 0;
351 for_each_string_list(&option_optional_reference,
352 add_one_reference, &required);
8434c2f1
DB
353}
354
e6baf4a1
JH
355static void copy_alternates(struct strbuf *src, struct strbuf *dst,
356 const char *src_repo)
357{
358 /*
359 * Read from the source objects/info/alternates file
360 * and copy the entries to corresponding file in the
361 * destination repository with add_to_alternates_file().
362 * Both src and dst have "$path/objects/info/alternates".
363 *
364 * Instead of copying bit-for-bit from the original,
365 * we need to append to existing one so that the already
366 * created entry via "clone -s" is not lost, and also
367 * to turn entries with paths relative to the original
368 * absolute, so that they can be used in the new repository.
369 */
02912f47 370 FILE *in = xfopen(src->buf, "r");
e6baf4a1
JH
371 struct strbuf line = STRBUF_INIT;
372
3f163962 373 while (strbuf_getline(&line, in) != EOF) {
dcf69262 374 char *abs_path;
e6baf4a1
JH
375 if (!line.len || line.buf[0] == '#')
376 continue;
377 if (is_absolute_path(line.buf)) {
378 add_to_alternates_file(line.buf);
379 continue;
380 }
dcf69262 381 abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf);
22d3b8de
JK
382 if (!normalize_path_copy(abs_path, abs_path))
383 add_to_alternates_file(abs_path);
384 else
385 warning("skipping invalid relative alternate: %s/%s",
386 src_repo, line.buf);
dcf69262 387 free(abs_path);
e6baf4a1
JH
388 }
389 strbuf_release(&line);
390 fclose(in);
391}
392
393static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
394 const char *src_repo, int src_baselen)
8434c2f1
DB
395{
396 struct dirent *de;
397 struct stat buf;
398 int src_len, dest_len;
399 DIR *dir;
400
b9e125e0 401 dir = opendir(src->buf);
8434c2f1 402 if (!dir)
e84d7b74 403 die_errno(_("failed to open '%s'"), src->buf);
8434c2f1 404
b9e125e0 405 if (mkdir(dest->buf, 0777)) {
8434c2f1 406 if (errno != EEXIST)
e84d7b74 407 die_errno(_("failed to create directory '%s'"), dest->buf);
b9e125e0 408 else if (stat(dest->buf, &buf))
e84d7b74 409 die_errno(_("failed to stat '%s'"), dest->buf);
8434c2f1 410 else if (!S_ISDIR(buf.st_mode))
e84d7b74 411 die(_("%s exists and is not a directory"), dest->buf);
8434c2f1
DB
412 }
413
b9e125e0
MV
414 strbuf_addch(src, '/');
415 src_len = src->len;
416 strbuf_addch(dest, '/');
417 dest_len = dest->len;
8434c2f1
DB
418
419 while ((de = readdir(dir)) != NULL) {
b9e125e0
MV
420 strbuf_setlen(src, src_len);
421 strbuf_addstr(src, de->d_name);
422 strbuf_setlen(dest, dest_len);
423 strbuf_addstr(dest, de->d_name);
424 if (stat(src->buf, &buf)) {
e84d7b74 425 warning (_("failed to stat %s\n"), src->buf);
8434c2f1
DB
426 continue;
427 }
428 if (S_ISDIR(buf.st_mode)) {
429 if (de->d_name[0] != '.')
e6baf4a1
JH
430 copy_or_link_directory(src, dest,
431 src_repo, src_baselen);
432 continue;
433 }
434
435 /* Files that cannot be copied bit-for-bit... */
436 if (!strcmp(src->buf + src_baselen, "/info/alternates")) {
437 copy_alternates(src, dest, src_repo);
8434c2f1
DB
438 continue;
439 }
440
b9e125e0 441 if (unlink(dest->buf) && errno != ENOENT)
e84d7b74 442 die_errno(_("failed to unlink '%s'"), dest->buf);
fdabc242 443 if (!option_no_hardlinks) {
b9e125e0 444 if (!link(src->buf, dest->buf))
fdabc242 445 continue;
189260b1 446 if (option_local > 0)
e84d7b74 447 die_errno(_("failed to create link '%s'"), dest->buf);
fdabc242 448 option_no_hardlinks = 1;
8434c2f1 449 }
f7835a25 450 if (copy_file_with_time(dest->buf, src->buf, 0666))
e84d7b74 451 die_errno(_("failed to copy file to '%s'"), dest->buf);
8434c2f1 452 }
689ef4d4 453 closedir(dir);
8434c2f1
DB
454}
455
6f48d39f 456static void clone_local(const char *src_repo, const char *dest_repo)
8434c2f1 457{
e6baf4a1
JH
458 if (option_shared) {
459 struct strbuf alt = STRBUF_INIT;
b3b05971
ES
460 get_common_dir(&alt, src_repo);
461 strbuf_addstr(&alt, "/objects");
e6baf4a1
JH
462 add_to_alternates_file(alt.buf);
463 strbuf_release(&alt);
464 } else {
465 struct strbuf src = STRBUF_INIT;
466 struct strbuf dest = STRBUF_INIT;
744e4697
NTND
467 get_common_dir(&src, src_repo);
468 get_common_dir(&dest, dest_repo);
469 strbuf_addstr(&src, "/objects");
470 strbuf_addstr(&dest, "/objects");
e6baf4a1 471 copy_or_link_directory(&src, &dest, src_repo, src.len);
b9e125e0
MV
472 strbuf_release(&src);
473 strbuf_release(&dest);
8434c2f1
DB
474 }
475
28ba96ab 476 if (0 <= option_verbosity)
68b939b2 477 fprintf(stderr, _("done.\n"));
8434c2f1
DB
478}
479
480static const char *junk_work_tree;
d45420c1 481static int junk_work_tree_flags;
8434c2f1 482static const char *junk_git_dir;
d45420c1 483static int junk_git_dir_flags;
85064630 484static enum {
d3b34622
JK
485 JUNK_LEAVE_NONE,
486 JUNK_LEAVE_REPO,
487 JUNK_LEAVE_ALL
488} junk_mode = JUNK_LEAVE_NONE;
489
490static const char junk_leave_repo_msg[] =
491N_("Clone succeeded, but checkout failed.\n"
492 "You can inspect what was checked out with 'git status'\n"
493 "and retry the checkout with 'git checkout -f HEAD'\n");
8434c2f1
DB
494
495static void remove_junk(void)
496{
f285a2d7 497 struct strbuf sb = STRBUF_INIT;
d3b34622
JK
498
499 switch (junk_mode) {
500 case JUNK_LEAVE_REPO:
501 warning("%s", _(junk_leave_repo_msg));
502 /* fall-through */
503 case JUNK_LEAVE_ALL:
504 return;
505 default:
506 /* proceed to removal */
507 break;
508 }
509
8434c2f1
DB
510 if (junk_git_dir) {
511 strbuf_addstr(&sb, junk_git_dir);
d45420c1 512 remove_dir_recursively(&sb, junk_git_dir_flags);
8434c2f1
DB
513 strbuf_reset(&sb);
514 }
515 if (junk_work_tree) {
516 strbuf_addstr(&sb, junk_work_tree);
d45420c1 517 remove_dir_recursively(&sb, junk_work_tree_flags);
8434c2f1 518 }
9c18b548 519 strbuf_release(&sb);
8434c2f1
DB
520}
521
522static void remove_junk_on_signal(int signo)
523{
524 remove_junk();
4a16d072 525 sigchain_pop(signo);
8434c2f1
DB
526 raise(signo);
527}
528
9e585046
NTND
529static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
530{
531 struct ref *ref;
532 struct strbuf head = STRBUF_INIT;
533 strbuf_addstr(&head, "refs/heads/");
534 strbuf_addstr(&head, branch);
535 ref = find_ref_by_name(refs, head.buf);
536 strbuf_release(&head);
5a7d5b68
NTND
537
538 if (ref)
539 return ref;
540
541 strbuf_addstr(&head, "refs/tags/");
542 strbuf_addstr(&head, branch);
543 ref = find_ref_by_name(refs, head.buf);
544 strbuf_release(&head);
545
9e585046
NTND
546 return ref;
547}
548
5bdc32d3
NP
549static struct ref *wanted_peer_refs(const struct ref *refs,
550 struct refspec *refspec)
8434c2f1 551{
c1921c18
JK
552 struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
553 struct ref *local_refs = head;
554 struct ref **tail = head ? &head->next : &local_refs;
8434c2f1 555
3e6e0edd
NTND
556 if (option_single_branch) {
557 struct ref *remote_head = NULL;
558
559 if (!option_branch)
560 remote_head = guess_remote_head(head, refs, 0);
0ec4b165
NTND
561 else {
562 local_refs = NULL;
563 tail = &local_refs;
564 remote_head = copy_ref(find_remote_branch(refs, option_branch));
565 }
3e6e0edd
NTND
566
567 if (!remote_head && option_branch)
568 warning(_("Could not find remote branch %s to clone."),
569 option_branch);
5a7d5b68 570 else {
3e6e0edd 571 get_fetch_map(remote_head, refspec, &tail, 0);
5a7d5b68
NTND
572
573 /* if --branch=tag, pull the requested tag explicitly */
574 get_fetch_map(remote_head, tag_refspec, &tail, 0);
575 }
3e6e0edd
NTND
576 } else
577 get_fetch_map(refs, refspec, &tail, 0);
578
0dab2468 579 if (!option_mirror && !option_single_branch && !option_no_tags)
468386a9 580 get_fetch_map(refs, tag_refspec, &tail, 0);
8434c2f1 581
5bdc32d3
NP
582 return local_refs;
583}
584
585static void write_remote_refs(const struct ref *local_refs)
586{
587 const struct ref *r;
588
58f233ce
MH
589 struct ref_transaction *t;
590 struct strbuf err = STRBUF_INIT;
591
592 t = ref_transaction_begin(&err);
593 if (!t)
594 die("%s", err.buf);
9f69d297 595
c1921c18
JK
596 for (r = local_refs; r; r = r->next) {
597 if (!r->peer_ref)
598 continue;
89f3bbdd 599 if (ref_transaction_create(t, r->peer_ref->name, &r->old_oid,
58f233ce
MH
600 0, NULL, &err))
601 die("%s", err.buf);
c1921c18 602 }
3e8aded2 603
58f233ce
MH
604 if (initial_ref_transaction_commit(t, &err))
605 die("%s", err.buf);
606
607 strbuf_release(&err);
608 ref_transaction_free(t);
8434c2f1
DB
609}
610
3e6e0edd
NTND
611static void write_followtags(const struct ref *refs, const char *msg)
612{
613 const struct ref *ref;
614 for (ref = refs; ref; ref = ref->next) {
59556548 615 if (!starts_with(ref->name, "refs/tags/"))
3e6e0edd 616 continue;
59556548 617 if (ends_with(ref->name, "^{}"))
3e6e0edd 618 continue;
f4e54d02 619 if (!has_object_file(&ref->old_oid))
3e6e0edd 620 continue;
ae077771 621 update_ref(msg, ref->name, &ref->old_oid, NULL, 0,
622 UPDATE_REFS_DIE_ON_ERR);
3e6e0edd
NTND
623 }
624}
625
6ccac9ee 626static int iterate_ref_map(void *cb_data, struct object_id *oid)
0433ad12
JK
627{
628 struct ref **rm = cb_data;
629 struct ref *ref = *rm;
630
631 /*
632 * Skip anything missing a peer_ref, which we are not
633 * actually going to write a ref for.
634 */
635 while (ref && !ref->peer_ref)
636 ref = ref->next;
637 /* Returning -1 notes "end of list" to the caller. */
638 if (!ref)
639 return -1;
640
6ccac9ee 641 oidcpy(oid, &ref->old_oid);
0433ad12
JK
642 *rm = ref->next;
643 return 0;
644}
645
960b7d1c
NTND
646static void update_remote_refs(const struct ref *refs,
647 const struct ref *mapped_refs,
648 const struct ref *remote_head_points_at,
649 const char *branch_top,
c6807a40 650 const char *msg,
45ed4afa 651 struct transport *transport,
125a05fd 652 int check_connectivity)
960b7d1c 653{
0433ad12
JK
654 const struct ref *rm = mapped_refs;
655
125a05fd 656 if (check_connectivity) {
7043c707
JK
657 struct check_connected_options opt = CHECK_CONNECTED_INIT;
658
659 opt.transport = transport;
38e590ea 660 opt.progress = transport->progress;
7043c707 661
7043c707 662 if (check_connected(iterate_ref_map, &rm, &opt))
125a05fd
JK
663 die(_("remote did not send all necessary objects"));
664 }
0433ad12 665
960b7d1c 666 if (refs) {
960b7d1c 667 write_remote_refs(mapped_refs);
0dab2468 668 if (option_single_branch && !option_no_tags)
960b7d1c
NTND
669 write_followtags(refs, msg);
670 }
671
672 if (remote_head_points_at && !option_bare) {
673 struct strbuf head_ref = STRBUF_INIT;
674 strbuf_addstr(&head_ref, branch_top);
675 strbuf_addstr(&head_ref, "HEAD");
4be49d75
JK
676 if (create_symref(head_ref.buf,
677 remote_head_points_at->peer_ref->name,
678 msg) < 0)
39ad4f39 679 die(_("unable to update %s"), head_ref.buf);
4be49d75 680 strbuf_release(&head_ref);
960b7d1c
NTND
681 }
682}
683
f034d354
NTND
684static void update_head(const struct ref *our, const struct ref *remote,
685 const char *msg)
686{
cf4fff57
JK
687 const char *head;
688 if (our && skip_prefix(our->name, "refs/heads/", &head)) {
f034d354 689 /* Local default branch link */
4be49d75 690 if (create_symref("HEAD", our->name, NULL) < 0)
39ad4f39 691 die(_("unable to update HEAD"));
f034d354 692 if (!option_bare) {
ae077771 693 update_ref(msg, "HEAD", &our->old_oid, NULL, 0,
f4124112 694 UPDATE_REFS_DIE_ON_ERR);
f034d354
NTND
695 install_branch_config(0, head, option_origin, our->name);
696 }
5a7d5b68 697 } else if (our) {
bc83266a 698 struct commit *c = lookup_commit_reference(&our->old_oid);
5a7d5b68 699 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
91774afc 700 update_ref(msg, "HEAD", &c->object.oid, NULL, REF_NO_DEREF,
ae077771 701 UPDATE_REFS_DIE_ON_ERR);
f034d354
NTND
702 } else if (remote) {
703 /*
704 * We know remote HEAD points to a non-branch, or
920b691f 705 * HEAD points to a branch but we don't know which one.
f034d354
NTND
706 * Detach HEAD in all these cases.
707 */
91774afc 708 update_ref(msg, "HEAD", &remote->old_oid, NULL, REF_NO_DEREF,
ae077771 709 UPDATE_REFS_DIE_ON_ERR);
f034d354
NTND
710 }
711}
712
72c5f883 713static int checkout(int submodule_progress)
c39852c1 714{
ddc2cc64 715 struct object_id oid;
c39852c1 716 char *head;
837e34eb 717 struct lock_file lock_file = LOCK_INIT;
c39852c1
NTND
718 struct unpack_trees_options opts;
719 struct tree *tree;
720 struct tree_desc t;
03b86647 721 int err = 0;
c39852c1
NTND
722
723 if (option_no_checkout)
724 return 0;
725
0f2dc722 726 head = resolve_refdup("HEAD", RESOLVE_REF_READING, &oid, NULL);
c39852c1
NTND
727 if (!head) {
728 warning(_("remote HEAD refers to nonexistent ref, "
729 "unable to checkout.\n"));
730 return 0;
731 }
2857093b
NTND
732 if (!strcmp(head, "HEAD")) {
733 if (advice_detached_head)
ddc2cc64 734 detach_advice(oid_to_hex(&oid));
2857093b 735 } else {
59556548 736 if (!starts_with(head, "refs/heads/"))
c39852c1
NTND
737 die(_("HEAD not found below refs/heads!"));
738 }
739 free(head);
740
741 /* We need to be in the new work tree for the checkout */
742 setup_work_tree();
743
837e34eb 744 hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
c39852c1
NTND
745
746 memset(&opts, 0, sizeof opts);
747 opts.update = 1;
748 opts.merge = 1;
749 opts.fn = oneway_merge;
8f63da13 750 opts.verbose_update = (option_verbosity >= 0);
c39852c1
NTND
751 opts.src_index = &the_index;
752 opts.dst_index = &the_index;
753
a9dbc179 754 tree = parse_tree_indirect(&oid);
c39852c1
NTND
755 parse_tree(tree);
756 init_tree_desc(&t, tree->buffer, tree->size);
0aac7bb2
JK
757 if (unpack_trees(1, &t, &opts) < 0)
758 die(_("unable to checkout working tree"));
c39852c1 759
837e34eb 760 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
c39852c1
NTND
761 die(_("unable to write new index file"));
762
15048f8a 763 err |= run_hook_le(NULL, "post-checkout", sha1_to_hex(null_sha1),
ddc2cc64 764 oid_to_hex(&oid), "1", NULL);
c39852c1 765
bb62e0a9 766 if (!err && (option_recurse_submodules.nr > 0)) {
72290d6a
SB
767 struct argv_array args = ARGV_ARRAY_INIT;
768 argv_array_pushl(&args, "submodule", "update", "--init", "--recursive", NULL);
769
18a74a09 770 if (option_shallow_submodules == 1)
d22eb044
SB
771 argv_array_push(&args, "--depth=1");
772
72290d6a
SB
773 if (max_jobs != -1)
774 argv_array_pushf(&args, "--jobs=%d", max_jobs);
775
72c5f883
JK
776 if (submodule_progress)
777 argv_array_push(&args, "--progress");
778
03c004c5
BW
779 if (option_verbosity < 0)
780 argv_array_push(&args, "--quiet");
781
72290d6a
SB
782 err = run_command_v_opt(args.argv, RUN_GIT_CMD);
783 argv_array_clear(&args);
784 }
c39852c1
NTND
785
786 return err;
787}
788
84054f79
JK
789static int write_one_config(const char *key, const char *value, void *data)
790{
db4eca1f
JN
791 return git_config_set_multivar_gently(key,
792 value ? value : "true",
793 CONFIG_REGEX_NONE, 0);
84054f79
JK
794}
795
796static void write_config(struct string_list *config)
797{
798 int i;
799
800 for (i = 0; i < config->nr; i++) {
801 if (git_config_parse_parameter(config->items[i].string,
802 write_one_config, NULL) < 0)
39ad4f39 803 die(_("unable to write parameters to config file"));
84054f79
JK
804 }
805}
806
24d36f14
DA
807static void write_refspec_config(const char *src_ref_prefix,
808 const struct ref *our_head_points_at,
809 const struct ref *remote_head_points_at,
810 struct strbuf *branch_top)
31b808a0
RT
811{
812 struct strbuf key = STRBUF_INIT;
813 struct strbuf value = STRBUF_INIT;
814
815 if (option_mirror || !option_bare) {
816 if (option_single_branch && !option_mirror) {
817 if (option_branch) {
60a5f5fc 818 if (starts_with(our_head_points_at->name, "refs/tags/"))
31b808a0
RT
819 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
820 our_head_points_at->name);
821 else
822 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
823 branch_top->buf, option_branch);
824 } else if (remote_head_points_at) {
cf4fff57
JK
825 const char *head = remote_head_points_at->name;
826 if (!skip_prefix(head, "refs/heads/", &head))
827 die("BUG: remote HEAD points at non-head?");
828
31b808a0 829 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
cf4fff57 830 branch_top->buf, head);
31b808a0
RT
831 }
832 /*
833 * otherwise, the next "git fetch" will
834 * simply fetch from HEAD without updating
d6ac1d21 835 * any remote-tracking branch, which is what
31b808a0
RT
836 * we want.
837 */
838 } else {
839 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
840 }
841 /* Configure the remote */
842 if (value.len) {
843 strbuf_addf(&key, "remote.%s.fetch", option_origin);
844 git_config_set_multivar(key.buf, value.buf, "^$", 0);
845 strbuf_reset(&key);
846
847 if (option_mirror) {
848 strbuf_addf(&key, "remote.%s.mirror", option_origin);
849 git_config_set(key.buf, "true");
850 strbuf_reset(&key);
851 }
852 }
853 }
854
855 strbuf_release(&key);
856 strbuf_release(&value);
857}
858
fb1d6dab
JH
859static void dissociate_from_references(void)
860{
861 static const char* argv[] = { "repack", "-a", "-d", NULL };
0181681e 862 char *alternates = git_pathdup("objects/info/alternates");
fb1d6dab 863
0181681e
AR
864 if (!access(alternates, F_OK)) {
865 if (run_command_v_opt(argv, RUN_GIT_CMD|RUN_COMMAND_NO_STDIN))
866 die(_("cannot repack to clean up"));
867 if (unlink(alternates) && errno != ENOENT)
868 die_errno(_("cannot unlink temporary alternates file"));
869 }
870 free(alternates);
fb1d6dab
JH
871}
872
f9e377ad
JK
873static int dir_exists(const char *path)
874{
875 struct stat sb;
876 return !stat(path, &sb);
877}
878
8434c2f1
DB
879int cmd_clone(int argc, const char **argv, const char *prefix)
880{
24c61c44 881 int is_bundle = 0, is_local;
8434c2f1
DB
882 const char *repo_name, *repo, *work_tree, *git_dir;
883 char *path, *dir;
55892d23 884 int dest_exists;
37148311 885 const struct ref *refs, *remote_head;
7a4ee28f
JK
886 const struct ref *remote_head_points_at;
887 const struct ref *our_head_points_at;
37148311 888 struct ref *mapped_refs;
90498161 889 const struct ref *ref;
b5ff37ac
MV
890 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
891 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
1db4a75c 892 struct transport *transport = NULL;
9e585046 893 const char *src_ref_prefix = "refs/heads/";
6f48d39f 894 struct remote *remote;
90498161 895 int err = 0, complete_refs_before_fetch = 1;
72c5f883 896 int submodule_progress;
8434c2f1 897
689f0396
DB
898 struct refspec *refspec;
899 const char *fetch_pattern;
8434c2f1 900
548719fb
JT
901 fetch_if_missing = 0;
902
bbc30f99 903 packet_trace_identity("clone");
37782920 904 argc = parse_options(argc, argv, prefix, builtin_clone_options,
8434c2f1
DB
905 builtin_clone_usage, 0);
906
d52dc4b1 907 if (argc > 2)
e84d7b74 908 usage_msg_opt(_("Too many arguments."),
d52dc4b1
JN
909 builtin_clone_usage, builtin_clone_options);
910
8434c2f1 911 if (argc == 0)
e84d7b74 912 usage_msg_opt(_("You must specify a repository to clone."),
d52dc4b1 913 builtin_clone_usage, builtin_clone_options);
8434c2f1 914
859e5df9 915 if (option_depth || option_since || option_not.nr)
994c2aaf 916 deepen = 1;
3e6e0edd 917 if (option_single_branch == -1)
994c2aaf 918 option_single_branch = deepen ? 1 : 0;
3e6e0edd 919
bc699afc
JS
920 if (option_mirror)
921 option_bare = 1;
922
8434c2f1
DB
923 if (option_bare) {
924 if (option_origin)
e84d7b74 925 die(_("--bare and --origin %s options are incompatible."),
8434c2f1 926 option_origin);
95b63f1e
NTND
927 if (real_git_dir)
928 die(_("--bare and --separate-git-dir are incompatible."));
8434c2f1 929 option_no_checkout = 1;
8434c2f1
DB
930 }
931
932 if (!option_origin)
933 option_origin = "origin";
934
935 repo_name = argv[0];
936
937 path = get_repo_path(repo_name, &is_bundle);
938 if (path)
0aaad415 939 repo = absolute_pathdup(repo_name);
8434c2f1 940 else if (!strchr(repo_name, ':'))
d3e1ddfd 941 die(_("repository '%s' does not exist"), repo_name);
8434c2f1
DB
942 else
943 repo = repo_name;
944
5594bcad
NTND
945 /* no need to be strict, transport_set_option() will validate it again */
946 if (option_depth && atoi(option_depth) < 1)
947 die(_("depth %s is not a positive number"), option_depth);
948
8434c2f1
DB
949 if (argc == 2)
950 dir = xstrdup(argv[1]);
951 else
6612f877 952 dir = guess_dir_name(repo_name, is_bundle, option_bare);
44a68fd5 953 strip_trailing_slashes(dir);
8434c2f1 954
f9e377ad 955 dest_exists = dir_exists(dir);
55892d23 956 if (dest_exists && !is_empty_dir(dir))
e84d7b74
ÆAB
957 die(_("destination path '%s' already exists and is not "
958 "an empty directory."), dir);
8434c2f1 959
8434c2f1
DB
960 strbuf_addf(&reflog_msg, "clone: from %s", repo);
961
962 if (option_bare)
963 work_tree = NULL;
964 else {
965 work_tree = getenv("GIT_WORK_TREE");
f9e377ad 966 if (work_tree && dir_exists(work_tree))
e84d7b74 967 die(_("working tree '%s' already exists."), work_tree);
8434c2f1
DB
968 }
969
970 if (option_bare || work_tree)
971 git_dir = xstrdup(dir);
972 else {
973 work_tree = dir;
4e2d094d 974 git_dir = mkpathdup("%s/.git", dir);
8434c2f1
DB
975 }
976
ee0e3872
JK
977 atexit(remove_junk);
978 sigchain_push_common(remove_junk_on_signal);
979
8434c2f1 980 if (!option_bare) {
8e21d63b 981 if (safe_create_leading_directories_const(work_tree) < 0)
e84d7b74 982 die_errno(_("could not create leading directories of '%s'"),
d824cbba 983 work_tree);
d45420c1
JK
984 if (dest_exists)
985 junk_work_tree_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
986 else if (mkdir(work_tree, 0777))
16eff6c0 987 die_errno(_("could not create work tree dir '%s'"),
d824cbba 988 work_tree);
ee0e3872 989 junk_work_tree = work_tree;
8434c2f1
DB
990 set_git_work_tree(work_tree);
991 }
8434c2f1 992
d45420c1
JK
993 if (real_git_dir) {
994 if (dir_exists(real_git_dir))
995 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
996 junk_git_dir = real_git_dir;
997 } else {
998 if (dest_exists)
999 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1000 junk_git_dir = git_dir;
1001 }
8e21d63b 1002 if (safe_create_leading_directories_const(git_dir) < 0)
e84d7b74 1003 die(_("could not create leading directories of '%s'"), git_dir);
b57fb80a 1004
3781fcce
ÆAB
1005 if (0 <= option_verbosity) {
1006 if (option_bare)
68b939b2 1007 fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
3781fcce 1008 else
68b939b2 1009 fprintf(stderr, _("Cloning into '%s'...\n"), dir);
3781fcce 1010 }
31224cbd 1011
bb62e0a9
BW
1012 if (option_recurse_submodules.nr > 0) {
1013 struct string_list_item *item;
1014 struct strbuf sb = STRBUF_INIT;
1015
1016 /* remove duplicates */
1017 string_list_sort(&option_recurse_submodules);
1018 string_list_remove_duplicates(&option_recurse_submodules, 0);
1019
1020 /*
1021 * NEEDSWORK: In a multi-working-tree world, this needs to be
1022 * set in the per-worktree config.
1023 */
1024 for_each_string_list_item(item, &option_recurse_submodules) {
1025 strbuf_addf(&sb, "submodule.active=%s",
1026 item->string);
1027 string_list_append(&option_config,
1028 strbuf_detach(&sb, NULL));
1029 }
1030
31224cbd
SB
1031 if (option_required_reference.nr &&
1032 option_optional_reference.nr)
1033 die(_("clone --recursive is not compatible with "
1034 "both --reference and --reference-if-able"));
1035 else if (option_required_reference.nr) {
1036 string_list_append(&option_config,
1037 "submodule.alternateLocation=superproject");
1038 string_list_append(&option_config,
1039 "submodule.alternateErrorStrategy=die");
1040 } else if (option_optional_reference.nr) {
1041 string_list_append(&option_config,
1042 "submodule.alternateLocation=superproject");
1043 string_list_append(&option_config,
1044 "submodule.alternateErrorStrategy=info");
1045 }
1046 }
1047
33158701
NTND
1048 init_db(git_dir, real_git_dir, option_template, INIT_DB_QUIET);
1049
1050 if (real_git_dir)
1051 git_dir = real_git_dir;
1052
84054f79 1053 write_config(&option_config);
8434c2f1 1054
9bd81e42 1055 git_config(git_default_config, NULL);
8434c2f1
DB
1056
1057 if (option_bare) {
bc699afc
JS
1058 if (option_mirror)
1059 src_ref_prefix = "refs/";
b5ff37ac 1060 strbuf_addstr(&branch_top, src_ref_prefix);
8434c2f1
DB
1061
1062 git_config_set("core.bare", "true");
1063 } else {
b5ff37ac 1064 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
bc699afc 1065 }
8434c2f1 1066
689f0396 1067 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
df61c889
SR
1068 strbuf_addf(&key, "remote.%s.url", option_origin);
1069 git_config_set(key.buf, repo);
1070 strbuf_reset(&key);
1071
0dab2468
ÆAB
1072 if (option_no_tags) {
1073 strbuf_addf(&key, "remote.%s.tagOpt", option_origin);
1074 git_config_set(key.buf, "--no-tags");
1075 strbuf_reset(&key);
1076 }
1077
f7415b4d 1078 if (option_required_reference.nr || option_optional_reference.nr)
dbc92b07 1079 setup_reference();
766ac6a6 1080
689f0396
DB
1081 fetch_pattern = value.buf;
1082 refspec = parse_fetch_refspec(1, &fetch_pattern);
1083
1084 strbuf_reset(&value);
8434c2f1 1085
6f48d39f
NTND
1086 remote = remote_get(option_origin);
1087 transport = transport_get(remote, remote->url[0]);
822f0c4f 1088 transport_set_verbosity(transport, option_verbosity, option_progress);
c915f11e 1089 transport->family = family;
822f0c4f 1090
f38aa83f
MB
1091 path = get_repo_path(remote->url[0], &is_bundle);
1092 is_local = option_local != 0 && path && !is_bundle;
1093 if (is_local) {
1094 if (option_depth)
1095 warning(_("--depth is ignored in local clones; use file:// instead."));
994c2aaf
NTND
1096 if (option_since)
1097 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
859e5df9
NTND
1098 if (option_not.nr)
1099 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
548719fb
JT
1100 if (filter_options.choice)
1101 warning(_("--filter is ignored in local clones; use file:// instead."));
f38aa83f
MB
1102 if (!access(mkpath("%s/shallow", path), F_OK)) {
1103 if (option_local > 0)
1104 warning(_("source repository is shallow, ignoring --local"));
1105 is_local = 0;
1106 }
1107 }
1108 if (option_local > 0 && !is_local)
1109 warning(_("--local is ignored"));
beea4152 1110 transport->cloning = 1;
8434c2f1 1111
643f918d 1112 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
8434c2f1 1113
643f918d
JK
1114 if (option_depth)
1115 transport_set_option(transport, TRANS_OPT_DEPTH,
1116 option_depth);
994c2aaf
NTND
1117 if (option_since)
1118 transport_set_option(transport, TRANS_OPT_DEEPEN_SINCE,
1119 option_since);
859e5df9
NTND
1120 if (option_not.nr)
1121 transport_set_option(transport, TRANS_OPT_DEEPEN_NOT,
1122 (const char *)&option_not);
643f918d
JK
1123 if (option_single_branch)
1124 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
8434c2f1 1125
643f918d
JK
1126 if (option_upload_pack)
1127 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
1128 option_upload_pack);
c6807a40 1129
548719fb
JT
1130 if (filter_options.choice) {
1131 transport_set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER,
1132 filter_options.filter_spec);
1133 transport_set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1134 }
1135
1136 if (transport->smart_options && !deepen && !filter_options.choice)
643f918d 1137 transport->smart_options->check_self_contained_and_connected = 1;
8434c2f1 1138
6f48d39f 1139 refs = transport_get_remote_refs(transport);
8434c2f1 1140
5b05795c
MH
1141 if (refs) {
1142 mapped_refs = wanted_peer_refs(refs, refspec);
1143 /*
1144 * transport_get_remote_refs() may return refs with null sha-1
1145 * in mapped_refs (see struct transport->get_refs_list
1146 * comment). In that case we need fetch it early because
1147 * remote_head code below relies on it.
1148 *
1149 * for normal clones, transport_get_remote_refs() should
1150 * return reliable ref set, we can delay cloning until after
1151 * remote HEAD check.
1152 */
1153 for (ref = refs; ref; ref = ref->next)
f4e54d02 1154 if (is_null_oid(&ref->old_oid)) {
5b05795c
MH
1155 complete_refs_before_fetch = 0;
1156 break;
1157 }
90498161 1158
5b05795c
MH
1159 if (!is_local && !complete_refs_before_fetch)
1160 transport_fetch_refs(transport, mapped_refs);
8434c2f1 1161
6cb4e6cc 1162 remote_head = find_ref_by_name(refs, "HEAD");
7a4ee28f
JK
1163 remote_head_points_at =
1164 guess_remote_head(remote_head, mapped_refs, 0);
1165
1166 if (option_branch) {
7a4ee28f 1167 our_head_points_at =
9e585046 1168 find_remote_branch(mapped_refs, option_branch);
7a4ee28f 1169
920b691f
NTND
1170 if (!our_head_points_at)
1171 die(_("Remote branch %s not found in upstream %s"),
1172 option_branch, option_origin);
7a4ee28f
JK
1173 }
1174 else
1175 our_head_points_at = remote_head_points_at;
86ac7518
SR
1176 }
1177 else {
a3552aba
RT
1178 if (option_branch)
1179 die(_("Remote branch %s not found in upstream %s"),
1180 option_branch, option_origin);
1181
e84d7b74 1182 warning(_("You appear to have cloned an empty repository."));
5b05795c 1183 mapped_refs = NULL;
7a4ee28f
JK
1184 our_head_points_at = NULL;
1185 remote_head_points_at = NULL;
86ac7518
SR
1186 remote_head = NULL;
1187 option_no_checkout = 1;
5cd12b85 1188 if (!option_bare)
a9f2c136 1189 install_branch_config(0, "master", option_origin,
5cd12b85 1190 "refs/heads/master");
86ac7518 1191 }
8434c2f1 1192
31b808a0
RT
1193 write_refspec_config(src_ref_prefix, our_head_points_at,
1194 remote_head_points_at, &branch_top);
1195
548719fb
JT
1196 if (filter_options.choice)
1197 partial_clone_register("origin", &filter_options);
1198
6f48d39f
NTND
1199 if (is_local)
1200 clone_local(path, git_dir);
90498161 1201 else if (refs && complete_refs_before_fetch)
6f48d39f 1202 transport_fetch_refs(transport, mapped_refs);
8434c2f1 1203
960b7d1c 1204 update_remote_refs(refs, mapped_refs, remote_head_points_at,
548719fb
JT
1205 branch_top.buf, reflog_msg.buf, transport,
1206 !is_local && !filter_options.choice);
8434c2f1 1207
f034d354 1208 update_head(our_head_points_at, remote_head, reflog_msg.buf);
1db4a75c 1209
72c5f883
JK
1210 /*
1211 * We want to show progress for recursive submodule clones iff
1212 * we did so for the main clone. But only the transport knows
1213 * the final decision for this flag, so we need to rescue the value
1214 * before we free the transport.
1215 */
1216 submodule_progress = transport->progress;
1217
6f48d39f
NTND
1218 transport_unlock_pack(transport);
1219 transport_disconnect(transport);
1db4a75c 1220
786b150c 1221 if (option_dissociate) {
d0b59866 1222 close_all_packs(the_repository->objects);
fb1d6dab 1223 dissociate_from_references();
786b150c 1224 }
fb1d6dab 1225
d3b34622 1226 junk_mode = JUNK_LEAVE_REPO;
548719fb 1227 fetch_if_missing = 1;
72c5f883 1228 err = checkout(submodule_progress);
8434c2f1
DB
1229
1230 strbuf_release(&reflog_msg);
b5ff37ac
MV
1231 strbuf_release(&branch_top);
1232 strbuf_release(&key);
1233 strbuf_release(&value);
d3b34622 1234 junk_mode = JUNK_LEAVE_ALL;
50b67732
SB
1235
1236 free(refspec);
dfa7a6c5 1237 return err;
8434c2f1 1238}