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