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