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