]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/clone.c
bundle-uri: download bundles from an advertised list
[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"
ff7ccc8c
MT
26#include "dir-iterator.h"
27#include "iterator.h"
4a16d072 28#include "sigchain.h"
a9f2c136 29#include "branch.h"
8ef51733 30#include "remote.h"
dfa7a6c5 31#include "run-command.h"
0433ad12 32#include "connected.h"
3836d88a 33#include "packfile.h"
548719fb 34#include "list-objects-filter-options.h"
72ddf34d 35#include "hook.h"
86fdd94d 36#include "bundle.h"
55568919 37#include "bundle-uri.h"
8434c2f1
DB
38
39/*
40 * Overall FIXMEs:
41 * - respect DB_ENVIRONMENT for .git/objects.
42 *
43 * Implementation notes:
44 * - dropping use-separate-remote and no-separate-remote compatibility
45 *
46 */
47static const char * const builtin_clone_usage[] = {
9c9b4f2f 48 N_("git clone [<options>] [--] <repo> [<dir>]"),
8434c2f1
DB
49 NULL
50};
51
3e6e0edd 52static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
bb62e0a9 53static int option_local = -1, option_no_hardlinks, option_shared;
0dab2468 54static int option_no_tags;
18a74a09 55static int option_shallow_submodules;
4fe788b1
LL
56static int option_reject_shallow = -1; /* unspecified */
57static int config_reject_shallow = -1; /* unspecified */
994c2aaf
NTND
58static int deepen;
59static char *option_template, *option_depth, *option_since;
8434c2f1 60static char *option_origin = NULL;
de9ed3ef 61static char *remote_name = NULL;
7a4ee28f 62static char *option_branch = NULL;
859e5df9 63static struct string_list option_not = STRING_LIST_INIT_NODUP;
b57fb80a 64static const char *real_git_dir;
8434c2f1 65static char *option_upload_pack = "git-upload-pack";
5bd631b3 66static int option_verbosity;
01fdc21f 67static int option_progress = -1;
d89f09c8 68static int option_sparse_checkout;
c915f11e 69static enum transport_family family;
2721ce21 70static struct string_list option_config = STRING_LIST_INIT_NODUP;
5e40800d 71static struct string_list option_required_reference = STRING_LIST_INIT_NODUP;
f7415b4d 72static struct string_list option_optional_reference = STRING_LIST_INIT_NODUP;
fb1d6dab 73static int option_dissociate;
72290d6a 74static int max_jobs = -1;
bb62e0a9 75static struct string_list option_recurse_submodules = STRING_LIST_INIT_NODUP;
2a01bded 76static struct list_objects_filter_options filter_options = LIST_OBJECTS_FILTER_INIT;
f05da2b4
JS
77static int option_filter_submodules = -1; /* unspecified */
78static int config_filter_submodules = -1; /* unspecified */
6e983059 79static struct string_list server_options = STRING_LIST_INIT_NODUP;
4c691016 80static int option_remote_submodules;
55568919 81static const char *bundle_uri;
bb62e0a9
BW
82
83static int recurse_submodules_cb(const struct option *opt,
84 const char *arg, int unset)
85{
86 if (unset)
87 string_list_clear((struct string_list *)opt->value, 0);
88 else if (arg)
89 string_list_append((struct string_list *)opt->value, arg);
90 else
91 string_list_append((struct string_list *)opt->value,
92 (const char *)opt->defval);
93
94 return 0;
95}
dbc92b07 96
8434c2f1 97static struct option builtin_clone_options[] = {
5bd631b3 98 OPT__VERBOSITY(&option_verbosity),
01fdc21f 99 OPT_BOOL(0, "progress", &option_progress,
32b77add 100 N_("force progress reporting")),
4fe788b1
LL
101 OPT_BOOL(0, "reject-shallow", &option_reject_shallow,
102 N_("don't clone shallow repository")),
d5d09d47
SB
103 OPT_BOOL('n', "no-checkout", &option_no_checkout,
104 N_("don't create a checkout")),
4741edd5
SB
105 OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")),
106 OPT_HIDDEN_BOOL(0, "naked", &option_bare,
107 N_("create a bare repository")),
d5d09d47
SB
108 OPT_BOOL(0, "mirror", &option_mirror,
109 N_("create a mirror repository (implies bare)")),
189260b1 110 OPT_BOOL('l', "local", &option_local,
32b77add 111 N_("to clone from a local repository")),
d5d09d47 112 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks,
32b77add 113 N_("don't use local hardlinks, always copy")),
d5d09d47 114 OPT_BOOL('s', "shared", &option_shared,
32b77add 115 N_("setup as shared repository")),
bb62e0a9
BW
116 { OPTION_CALLBACK, 0, "recurse-submodules", &option_recurse_submodules,
117 N_("pathspec"), N_("initialize submodules in the clone"),
118 PARSE_OPT_OPTARG, recurse_submodules_cb, (intptr_t)"." },
c28b036f 119 OPT_ALIAS(0, "recursive", "recurse-submodules"),
72290d6a
SB
120 OPT_INTEGER('j', "jobs", &max_jobs,
121 N_("number of submodules cloned in parallel")),
32b77add
NTND
122 OPT_STRING(0, "template", &option_template, N_("template-directory"),
123 N_("directory from which templates will be used")),
5e40800d 124 OPT_STRING_LIST(0, "reference", &option_required_reference, N_("repo"),
8ade009c 125 N_("reference repository")),
f7415b4d
SB
126 OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference,
127 N_("repo"), N_("reference repository")),
14f8b9b4
JK
128 OPT_BOOL(0, "dissociate", &option_dissociate,
129 N_("use --reference only while cloning")),
32b77add
NTND
130 OPT_STRING('o', "origin", &option_origin, N_("name"),
131 N_("use <name> instead of 'origin' to track upstream")),
132 OPT_STRING('b', "branch", &option_branch, N_("branch"),
133 N_("checkout <branch> instead of the remote's HEAD")),
134 OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
135 N_("path to git-upload-pack on the remote")),
136 OPT_STRING(0, "depth", &option_depth, N_("depth"),
137 N_("create a shallow clone of that depth")),
994c2aaf
NTND
138 OPT_STRING(0, "shallow-since", &option_since, N_("time"),
139 N_("create a shallow clone since a specific time")),
859e5df9 140 OPT_STRING_LIST(0, "shallow-exclude", &option_not, N_("revision"),
6d873865 141 N_("deepen history of shallow clone, excluding rev")),
3e6e0edd 142 OPT_BOOL(0, "single-branch", &option_single_branch,
32b77add 143 N_("clone only one branch, HEAD or --branch")),
0dab2468
ÆAB
144 OPT_BOOL(0, "no-tags", &option_no_tags,
145 N_("don't clone any tags, and make later fetches not to follow them")),
d22eb044
SB
146 OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules,
147 N_("any cloned submodules will be shallow")),
32b77add
NTND
148 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
149 N_("separate git dir from working tree")),
150 OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
151 N_("set config inside the new repository")),
6e983059
JT
152 OPT_STRING_LIST(0, "server-option", &server_options,
153 N_("server-specific"), N_("option to transmit")),
c915f11e
EW
154 OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
155 TRANSPORT_FAMILY_IPV4),
156 OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
157 TRANSPORT_FAMILY_IPV6),
548719fb 158 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
f05da2b4
JS
159 OPT_BOOL(0, "also-filter-submodules", &option_filter_submodules,
160 N_("apply partial clone filters to submodules")),
4c691016
BA
161 OPT_BOOL(0, "remote-submodules", &option_remote_submodules,
162 N_("any cloned submodules will use their remote-tracking branch")),
d89f09c8
DS
163 OPT_BOOL(0, "sparse", &option_sparse_checkout,
164 N_("initialize sparse-checkout file to include only files at root")),
55568919
DS
165 OPT_STRING(0, "bundle-uri", &bundle_uri,
166 N_("uri"), N_("a URI for downloading bundles before fetching from origin remote")),
8434c2f1
DB
167 OPT_END()
168};
169
0ea68e42 170static const char *get_repo_path_1(struct strbuf *path, int *is_bundle)
8434c2f1 171{
b3256eb8 172 static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
8434c2f1 173 static char *bundle_suffix[] = { ".bundle", "" };
0ea68e42 174 size_t baselen = path->len;
8434c2f1
DB
175 struct stat st;
176 int i;
177
178 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
0ea68e42
JK
179 strbuf_setlen(path, baselen);
180 strbuf_addstr(path, suffix[i]);
181 if (stat(path->buf, &st))
9b0ebc72 182 continue;
0ea68e42 183 if (S_ISDIR(st.st_mode) && is_git_directory(path->buf)) {
8434c2f1 184 *is_bundle = 0;
0ea68e42 185 return path->buf;
9b0ebc72
NTND
186 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
187 /* Is it a "gitfile"? */
188 char signature[8];
0ea68e42
JK
189 const char *dst;
190 int len, fd = open(path->buf, O_RDONLY);
9b0ebc72
NTND
191 if (fd < 0)
192 continue;
193 len = read_in_full(fd, signature, 8);
194 close(fd);
195 if (len != 8 || strncmp(signature, "gitdir: ", 8))
196 continue;
0ea68e42
JK
197 dst = read_gitfile(path->buf);
198 if (dst) {
9b0ebc72 199 *is_bundle = 0;
0ea68e42 200 return dst;
9b0ebc72 201 }
8434c2f1
DB
202 }
203 }
204
205 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
0ea68e42
JK
206 strbuf_setlen(path, baselen);
207 strbuf_addstr(path, bundle_suffix[i]);
208 if (!stat(path->buf, &st) && S_ISREG(st.st_mode)) {
8434c2f1 209 *is_bundle = 1;
0ea68e42 210 return path->buf;
8434c2f1
DB
211 }
212 }
213
214 return NULL;
215}
216
0ea68e42
JK
217static char *get_repo_path(const char *repo, int *is_bundle)
218{
219 struct strbuf path = STRBUF_INIT;
220 const char *raw;
221 char *canon;
222
223 strbuf_addstr(&path, repo);
224 raw = get_repo_path_1(&path, is_bundle);
0aaad415 225 canon = raw ? absolute_pathdup(raw) : NULL;
0ea68e42
JK
226 strbuf_release(&path);
227 return canon;
228}
229
dbc92b07 230static int add_one_reference(struct string_list_item *item, void *cb_data)
8434c2f1 231{
9eeea7d2 232 struct strbuf err = STRBUF_INIT;
f7415b4d 233 int *required = cb_data;
9eeea7d2 234 char *ref_git = compute_alternate_path(item->string, &err);
8434c2f1 235
f7415b4d
SB
236 if (!ref_git) {
237 if (*required)
238 die("%s", err.buf);
239 else
240 fprintf(stderr,
241 _("info: Could not add alternate for '%s': %s\n"),
242 item->string, err.buf);
243 } else {
244 struct strbuf sb = STRBUF_INIT;
245 strbuf_addf(&sb, "%s/objects", ref_git);
246 add_to_alternates_file(sb.buf);
247 strbuf_release(&sb);
248 }
606e435a 249
9eeea7d2 250 strbuf_release(&err);
f7415b4d 251 free(ref_git);
dbc92b07
JH
252 return 0;
253}
8434c2f1 254
dbc92b07
JH
255static void setup_reference(void)
256{
f7415b4d
SB
257 int required = 1;
258 for_each_string_list(&option_required_reference,
259 add_one_reference, &required);
260 required = 0;
261 for_each_string_list(&option_optional_reference,
262 add_one_reference, &required);
8434c2f1
DB
263}
264
3c1dce88 265static void copy_alternates(struct strbuf *src, const char *src_repo)
e6baf4a1
JH
266{
267 /*
268 * Read from the source objects/info/alternates file
269 * and copy the entries to corresponding file in the
270 * destination repository with add_to_alternates_file().
271 * Both src and dst have "$path/objects/info/alternates".
272 *
273 * Instead of copying bit-for-bit from the original,
274 * we need to append to existing one so that the already
275 * created entry via "clone -s" is not lost, and also
276 * to turn entries with paths relative to the original
277 * absolute, so that they can be used in the new repository.
278 */
02912f47 279 FILE *in = xfopen(src->buf, "r");
e6baf4a1
JH
280 struct strbuf line = STRBUF_INIT;
281
3f163962 282 while (strbuf_getline(&line, in) != EOF) {
dcf69262 283 char *abs_path;
e6baf4a1
JH
284 if (!line.len || line.buf[0] == '#')
285 continue;
286 if (is_absolute_path(line.buf)) {
287 add_to_alternates_file(line.buf);
288 continue;
289 }
dcf69262 290 abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf);
22d3b8de
JK
291 if (!normalize_path_copy(abs_path, abs_path))
292 add_to_alternates_file(abs_path);
293 else
294 warning("skipping invalid relative alternate: %s/%s",
295 src_repo, line.buf);
dcf69262 296 free(abs_path);
e6baf4a1
JH
297 }
298 strbuf_release(&line);
299 fclose(in);
300}
301
14954b79
MT
302static void mkdir_if_missing(const char *pathname, mode_t mode)
303{
304 struct stat st;
305
306 if (!mkdir(pathname, mode))
307 return;
308
309 if (errno != EEXIST)
310 die_errno(_("failed to create directory '%s'"), pathname);
311 else if (stat(pathname, &st))
312 die_errno(_("failed to stat '%s'"), pathname);
313 else if (!S_ISDIR(st.st_mode))
314 die(_("%s exists and is not a directory"), pathname);
315}
316
e6baf4a1 317static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
ff7ccc8c 318 const char *src_repo)
8434c2f1 319{
8434c2f1 320 int src_len, dest_len;
ff7ccc8c
MT
321 struct dir_iterator *iter;
322 int iter_status;
3d7747e3 323 struct strbuf realpath = STRBUF_INIT;
8434c2f1 324
14954b79 325 mkdir_if_missing(dest->buf, 0777);
8434c2f1 326
6f054f9f 327 iter = dir_iterator_begin(src->buf, DIR_ITERATOR_PEDANTIC);
ff7ccc8c
MT
328
329 if (!iter)
330 die_errno(_("failed to start iterator over '%s'"), src->buf);
8434c2f1 331
b9e125e0
MV
332 strbuf_addch(src, '/');
333 src_len = src->len;
334 strbuf_addch(dest, '/');
335 dest_len = dest->len;
8434c2f1 336
ff7ccc8c 337 while ((iter_status = dir_iterator_advance(iter)) == ITER_OK) {
b9e125e0 338 strbuf_setlen(src, src_len);
ff7ccc8c 339 strbuf_addstr(src, iter->relative_path);
b9e125e0 340 strbuf_setlen(dest, dest_len);
ff7ccc8c
MT
341 strbuf_addstr(dest, iter->relative_path);
342
6f054f9f
TB
343 if (S_ISLNK(iter->st.st_mode))
344 die(_("symlink '%s' exists, refusing to clone with --local"),
345 iter->relative_path);
ff7ccc8c
MT
346
347 if (S_ISDIR(iter->st.st_mode)) {
348 mkdir_if_missing(dest->buf, 0777);
e6baf4a1
JH
349 continue;
350 }
351
352 /* Files that cannot be copied bit-for-bit... */
c4d9c506 353 if (!fspathcmp(iter->relative_path, "info/alternates")) {
3c1dce88 354 copy_alternates(src, src_repo);
8434c2f1
DB
355 continue;
356 }
357
b9e125e0 358 if (unlink(dest->buf) && errno != ENOENT)
e84d7b74 359 die_errno(_("failed to unlink '%s'"), dest->buf);
fdabc242 360 if (!option_no_hardlinks) {
3d7747e3
AM
361 strbuf_realpath(&realpath, src->buf, 1);
362 if (!link(realpath.buf, dest->buf))
fdabc242 363 continue;
189260b1 364 if (option_local > 0)
e84d7b74 365 die_errno(_("failed to create link '%s'"), dest->buf);
fdabc242 366 option_no_hardlinks = 1;
8434c2f1 367 }
f7835a25 368 if (copy_file_with_time(dest->buf, src->buf, 0666))
e84d7b74 369 die_errno(_("failed to copy file to '%s'"), dest->buf);
8434c2f1 370 }
ff7ccc8c
MT
371
372 if (iter_status != ITER_DONE) {
373 strbuf_setlen(src, src_len);
374 die(_("failed to iterate over '%s'"), src->buf);
375 }
3d7747e3
AM
376
377 strbuf_release(&realpath);
8434c2f1
DB
378}
379
6f48d39f 380static void clone_local(const char *src_repo, const char *dest_repo)
8434c2f1 381{
e6baf4a1
JH
382 if (option_shared) {
383 struct strbuf alt = STRBUF_INIT;
b3b05971
ES
384 get_common_dir(&alt, src_repo);
385 strbuf_addstr(&alt, "/objects");
e6baf4a1
JH
386 add_to_alternates_file(alt.buf);
387 strbuf_release(&alt);
388 } else {
389 struct strbuf src = STRBUF_INIT;
390 struct strbuf dest = STRBUF_INIT;
744e4697
NTND
391 get_common_dir(&src, src_repo);
392 get_common_dir(&dest, dest_repo);
393 strbuf_addstr(&src, "/objects");
394 strbuf_addstr(&dest, "/objects");
ff7ccc8c 395 copy_or_link_directory(&src, &dest, src_repo);
b9e125e0
MV
396 strbuf_release(&src);
397 strbuf_release(&dest);
8434c2f1
DB
398 }
399
28ba96ab 400 if (0 <= option_verbosity)
68b939b2 401 fprintf(stderr, _("done.\n"));
8434c2f1
DB
402}
403
404static const char *junk_work_tree;
d45420c1 405static int junk_work_tree_flags;
8434c2f1 406static const char *junk_git_dir;
d45420c1 407static int junk_git_dir_flags;
85064630 408static enum {
d3b34622
JK
409 JUNK_LEAVE_NONE,
410 JUNK_LEAVE_REPO,
411 JUNK_LEAVE_ALL
412} junk_mode = JUNK_LEAVE_NONE;
413
414static const char junk_leave_repo_msg[] =
415N_("Clone succeeded, but checkout failed.\n"
416 "You can inspect what was checked out with 'git status'\n"
80f537f7 417 "and retry with 'git restore --source=HEAD :/'\n");
8434c2f1
DB
418
419static void remove_junk(void)
420{
f285a2d7 421 struct strbuf sb = STRBUF_INIT;
d3b34622
JK
422
423 switch (junk_mode) {
424 case JUNK_LEAVE_REPO:
425 warning("%s", _(junk_leave_repo_msg));
426 /* fall-through */
427 case JUNK_LEAVE_ALL:
428 return;
429 default:
430 /* proceed to removal */
431 break;
432 }
433
8434c2f1
DB
434 if (junk_git_dir) {
435 strbuf_addstr(&sb, junk_git_dir);
d45420c1 436 remove_dir_recursively(&sb, junk_git_dir_flags);
8434c2f1
DB
437 strbuf_reset(&sb);
438 }
439 if (junk_work_tree) {
440 strbuf_addstr(&sb, junk_work_tree);
d45420c1 441 remove_dir_recursively(&sb, junk_work_tree_flags);
8434c2f1 442 }
9c18b548 443 strbuf_release(&sb);
8434c2f1
DB
444}
445
446static void remove_junk_on_signal(int signo)
447{
448 remove_junk();
4a16d072 449 sigchain_pop(signo);
8434c2f1
DB
450 raise(signo);
451}
452
9e585046
NTND
453static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
454{
455 struct ref *ref;
456 struct strbuf head = STRBUF_INIT;
457 strbuf_addstr(&head, "refs/heads/");
458 strbuf_addstr(&head, branch);
459 ref = find_ref_by_name(refs, head.buf);
460 strbuf_release(&head);
5a7d5b68
NTND
461
462 if (ref)
463 return ref;
464
465 strbuf_addstr(&head, "refs/tags/");
466 strbuf_addstr(&head, branch);
467 ref = find_ref_by_name(refs, head.buf);
468 strbuf_release(&head);
469
9e585046
NTND
470 return ref;
471}
472
5bdc32d3 473static struct ref *wanted_peer_refs(const struct ref *refs,
515be833 474 struct refspec *refspec)
8434c2f1 475{
c1921c18
JK
476 struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
477 struct ref *local_refs = head;
478 struct ref **tail = head ? &head->next : &local_refs;
8434c2f1 479
3e6e0edd
NTND
480 if (option_single_branch) {
481 struct ref *remote_head = NULL;
482
483 if (!option_branch)
484 remote_head = guess_remote_head(head, refs, 0);
0ec4b165
NTND
485 else {
486 local_refs = NULL;
487 tail = &local_refs;
488 remote_head = copy_ref(find_remote_branch(refs, option_branch));
489 }
3e6e0edd
NTND
490
491 if (!remote_head && option_branch)
492 warning(_("Could not find remote branch %s to clone."),
493 option_branch);
5a7d5b68 494 else {
515be833
SG
495 int i;
496 for (i = 0; i < refspec->nr; i++)
497 get_fetch_map(remote_head, &refspec->items[i],
498 &tail, 0);
5a7d5b68
NTND
499
500 /* if --branch=tag, pull the requested tag explicitly */
501 get_fetch_map(remote_head, tag_refspec, &tail, 0);
502 }
74a06a9f 503 free_refs(remote_head);
515be833
SG
504 } else {
505 int i;
506 for (i = 0; i < refspec->nr; i++)
507 get_fetch_map(refs, &refspec->items[i], &tail, 0);
508 }
3e6e0edd 509
0dab2468 510 if (!option_mirror && !option_single_branch && !option_no_tags)
468386a9 511 get_fetch_map(refs, tag_refspec, &tail, 0);
8434c2f1 512
5bdc32d3
NP
513 return local_refs;
514}
515
516static void write_remote_refs(const struct ref *local_refs)
517{
518 const struct ref *r;
519
58f233ce
MH
520 struct ref_transaction *t;
521 struct strbuf err = STRBUF_INIT;
522
523 t = ref_transaction_begin(&err);
524 if (!t)
525 die("%s", err.buf);
9f69d297 526
c1921c18
JK
527 for (r = local_refs; r; r = r->next) {
528 if (!r->peer_ref)
529 continue;
89f3bbdd 530 if (ref_transaction_create(t, r->peer_ref->name, &r->old_oid,
58f233ce
MH
531 0, NULL, &err))
532 die("%s", err.buf);
c1921c18 533 }
3e8aded2 534
58f233ce
MH
535 if (initial_ref_transaction_commit(t, &err))
536 die("%s", err.buf);
537
538 strbuf_release(&err);
539 ref_transaction_free(t);
8434c2f1
DB
540}
541
3e6e0edd
NTND
542static void write_followtags(const struct ref *refs, const char *msg)
543{
544 const struct ref *ref;
545 for (ref = refs; ref; ref = ref->next) {
59556548 546 if (!starts_with(ref->name, "refs/tags/"))
3e6e0edd 547 continue;
59556548 548 if (ends_with(ref->name, "^{}"))
3e6e0edd 549 continue;
167a575e
JK
550 if (!has_object_file_with_flags(&ref->old_oid,
551 OBJECT_INFO_QUICK |
552 OBJECT_INFO_SKIP_FETCH_OBJECT))
3e6e0edd 553 continue;
ae077771 554 update_ref(msg, ref->name, &ref->old_oid, NULL, 0,
555 UPDATE_REFS_DIE_ON_ERR);
3e6e0edd
NTND
556 }
557}
558
9fec7b21 559static const struct object_id *iterate_ref_map(void *cb_data)
0433ad12
JK
560{
561 struct ref **rm = cb_data;
562 struct ref *ref = *rm;
563
564 /*
565 * Skip anything missing a peer_ref, which we are not
566 * actually going to write a ref for.
567 */
568 while (ref && !ref->peer_ref)
569 ref = ref->next;
0433ad12 570 if (!ref)
9fec7b21 571 return NULL;
0433ad12 572
0433ad12 573 *rm = ref->next;
9fec7b21 574 return &ref->old_oid;
0433ad12
JK
575}
576
960b7d1c
NTND
577static void update_remote_refs(const struct ref *refs,
578 const struct ref *mapped_refs,
579 const struct ref *remote_head_points_at,
580 const char *branch_top,
c6807a40 581 const char *msg,
45ed4afa 582 struct transport *transport,
2b98478c 583 int check_connectivity)
960b7d1c 584{
0433ad12
JK
585 const struct ref *rm = mapped_refs;
586
125a05fd 587 if (check_connectivity) {
7043c707
JK
588 struct check_connected_options opt = CHECK_CONNECTED_INIT;
589
590 opt.transport = transport;
38e590ea 591 opt.progress = transport->progress;
7043c707 592
7043c707 593 if (check_connected(iterate_ref_map, &rm, &opt))
125a05fd
JK
594 die(_("remote did not send all necessary objects"));
595 }
0433ad12 596
960b7d1c 597 if (refs) {
960b7d1c 598 write_remote_refs(mapped_refs);
0dab2468 599 if (option_single_branch && !option_no_tags)
960b7d1c
NTND
600 write_followtags(refs, msg);
601 }
602
603 if (remote_head_points_at && !option_bare) {
604 struct strbuf head_ref = STRBUF_INIT;
605 strbuf_addstr(&head_ref, branch_top);
606 strbuf_addstr(&head_ref, "HEAD");
4be49d75
JK
607 if (create_symref(head_ref.buf,
608 remote_head_points_at->peer_ref->name,
609 msg) < 0)
39ad4f39 610 die(_("unable to update %s"), head_ref.buf);
4be49d75 611 strbuf_release(&head_ref);
960b7d1c
NTND
612 }
613}
614
f034d354 615static void update_head(const struct ref *our, const struct ref *remote,
daf7898a 616 const char *unborn, const char *msg)
f034d354 617{
cf4fff57
JK
618 const char *head;
619 if (our && skip_prefix(our->name, "refs/heads/", &head)) {
f034d354 620 /* Local default branch link */
4be49d75 621 if (create_symref("HEAD", our->name, NULL) < 0)
39ad4f39 622 die(_("unable to update HEAD"));
f034d354 623 if (!option_bare) {
ae077771 624 update_ref(msg, "HEAD", &our->old_oid, NULL, 0,
f4124112 625 UPDATE_REFS_DIE_ON_ERR);
75ca3906 626 install_branch_config(0, head, remote_name, our->name);
f034d354 627 }
5a7d5b68 628 } else if (our) {
2122f675
SB
629 struct commit *c = lookup_commit_reference(the_repository,
630 &our->old_oid);
5a7d5b68 631 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
91774afc 632 update_ref(msg, "HEAD", &c->object.oid, NULL, REF_NO_DEREF,
ae077771 633 UPDATE_REFS_DIE_ON_ERR);
f034d354
NTND
634 } else if (remote) {
635 /*
636 * We know remote HEAD points to a non-branch, or
920b691f 637 * HEAD points to a branch but we don't know which one.
f034d354
NTND
638 * Detach HEAD in all these cases.
639 */
91774afc 640 update_ref(msg, "HEAD", &remote->old_oid, NULL, REF_NO_DEREF,
ae077771 641 UPDATE_REFS_DIE_ON_ERR);
daf7898a
JK
642 } else if (unborn && skip_prefix(unborn, "refs/heads/", &head)) {
643 /*
644 * Unborn head from remote; same as "our" case above except
645 * that we have no ref to update.
646 */
647 if (create_symref("HEAD", unborn, NULL) < 0)
648 die(_("unable to update HEAD"));
649 if (!option_bare)
650 install_branch_config(0, head, remote_name, unborn);
f034d354
NTND
651 }
652}
653
d89f09c8
DS
654static int git_sparse_checkout_init(const char *repo)
655{
0e906739 656 struct child_process cmd = CHILD_PROCESS_INIT;
d89f09c8 657 int result = 0;
0e906739 658 strvec_pushl(&cmd.args, "-C", repo, "sparse-checkout", "set", NULL);
d89f09c8
DS
659
660 /*
661 * We must apply the setting in the current process
662 * for the later checkout to use the sparse-checkout file.
663 */
664 core_apply_sparse_checkout = 1;
665
0e906739
RS
666 cmd.git_cmd = 1;
667 if (run_command(&cmd)) {
d89f09c8
DS
668 error(_("failed to initialize sparse-checkout"));
669 result = 1;
670 }
671
d89f09c8
DS
672 return result;
673}
674
f05da2b4 675static int checkout(int submodule_progress, int filter_submodules)
c39852c1 676{
ddc2cc64 677 struct object_id oid;
c39852c1 678 char *head;
837e34eb 679 struct lock_file lock_file = LOCK_INIT;
c39852c1
NTND
680 struct unpack_trees_options opts;
681 struct tree *tree;
682 struct tree_desc t;
03b86647 683 int err = 0;
c39852c1
NTND
684
685 if (option_no_checkout)
686 return 0;
687
0f2dc722 688 head = resolve_refdup("HEAD", RESOLVE_REF_READING, &oid, NULL);
c39852c1
NTND
689 if (!head) {
690 warning(_("remote HEAD refers to nonexistent ref, "
f77710c5 691 "unable to checkout"));
c39852c1
NTND
692 return 0;
693 }
2857093b 694 if (!strcmp(head, "HEAD")) {
ed9bff08 695 if (advice_enabled(ADVICE_DETACHED_HEAD))
ddc2cc64 696 detach_advice(oid_to_hex(&oid));
dfc8cdc6 697 FREE_AND_NULL(head);
2857093b 698 } else {
59556548 699 if (!starts_with(head, "refs/heads/"))
c39852c1
NTND
700 die(_("HEAD not found below refs/heads!"));
701 }
c39852c1
NTND
702
703 /* We need to be in the new work tree for the checkout */
704 setup_work_tree();
705
837e34eb 706 hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
c39852c1
NTND
707
708 memset(&opts, 0, sizeof opts);
709 opts.update = 1;
710 opts.merge = 1;
b878579a 711 opts.clone = 1;
1b5f3733 712 opts.preserve_ignored = 0;
c39852c1 713 opts.fn = oneway_merge;
8f63da13 714 opts.verbose_update = (option_verbosity >= 0);
c39852c1
NTND
715 opts.src_index = &the_index;
716 opts.dst_index = &the_index;
dfc8cdc6 717 init_checkout_metadata(&opts.meta, head, &oid, NULL);
c39852c1 718
a9dbc179 719 tree = parse_tree_indirect(&oid);
8d2eaf64
GC
720 if (!tree)
721 die(_("unable to parse commit %s"), oid_to_hex(&oid));
c39852c1
NTND
722 parse_tree(tree);
723 init_tree_desc(&t, tree->buffer, tree->size);
0aac7bb2
JK
724 if (unpack_trees(1, &t, &opts) < 0)
725 die(_("unable to checkout working tree"));
c39852c1 726
dfc8cdc6 727 free(head);
728
837e34eb 729 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
c39852c1
NTND
730 die(_("unable to write new index file"));
731
72ddf34d 732 err |= run_hooks_l("post-checkout", oid_to_hex(null_oid()),
ddc2cc64 733 oid_to_hex(&oid), "1", NULL);
c39852c1 734
bb62e0a9 735 if (!err && (option_recurse_submodules.nr > 0)) {
0e906739
RS
736 struct child_process cmd = CHILD_PROCESS_INIT;
737 strvec_pushl(&cmd.args, "submodule", "update", "--require-init",
738 "--recursive", NULL);
72290d6a 739
18a74a09 740 if (option_shallow_submodules == 1)
0e906739 741 strvec_push(&cmd.args, "--depth=1");
d22eb044 742
72290d6a 743 if (max_jobs != -1)
0e906739 744 strvec_pushf(&cmd.args, "--jobs=%d", max_jobs);
72290d6a 745
72c5f883 746 if (submodule_progress)
0e906739 747 strvec_push(&cmd.args, "--progress");
72c5f883 748
03c004c5 749 if (option_verbosity < 0)
0e906739 750 strvec_push(&cmd.args, "--quiet");
03c004c5 751
4c691016 752 if (option_remote_submodules) {
0e906739
RS
753 strvec_push(&cmd.args, "--remote");
754 strvec_push(&cmd.args, "--no-fetch");
4c691016
BA
755 }
756
f05da2b4 757 if (filter_submodules && filter_options.choice)
0e906739 758 strvec_pushf(&cmd.args, "--filter=%s",
f05da2b4
JS
759 expand_list_objects_filter_spec(&filter_options));
760
132f600b 761 if (option_single_branch >= 0)
0e906739 762 strvec_push(&cmd.args, option_single_branch ?
132f600b
ES
763 "--single-branch" :
764 "--no-single-branch");
765
0e906739
RS
766 cmd.git_cmd = 1;
767 err = run_command(&cmd);
72290d6a 768 }
c39852c1
NTND
769
770 return err;
771}
772
552955ed
SB
773static int git_clone_config(const char *k, const char *v, void *cb)
774{
de9ed3ef
SB
775 if (!strcmp(k, "clone.defaultremotename")) {
776 free(remote_name);
777 remote_name = xstrdup(v);
778 }
4fe788b1
LL
779 if (!strcmp(k, "clone.rejectshallow"))
780 config_reject_shallow = git_config_bool(k, v);
f05da2b4
JS
781 if (!strcmp(k, "clone.filtersubmodules"))
782 config_filter_submodules = git_config_bool(k, v);
4fe788b1 783
552955ed
SB
784 return git_default_config(k, v, cb);
785}
786
84054f79
JK
787static int write_one_config(const char *key, const char *value, void *data)
788{
552955ed
SB
789 /*
790 * give git_clone_config a chance to write config values back to the
791 * environment, since git_config_set_multivar_gently only deals with
792 * config-file writes
793 */
794 int apply_failed = git_clone_config(key, value, data);
795 if (apply_failed)
796 return apply_failed;
797
db4eca1f
JN
798 return git_config_set_multivar_gently(key,
799 value ? value : "true",
800 CONFIG_REGEX_NONE, 0);
84054f79
JK
801}
802
803static void write_config(struct string_list *config)
804{
805 int i;
806
807 for (i = 0; i < config->nr; i++) {
808 if (git_config_parse_parameter(config->items[i].string,
809 write_one_config, NULL) < 0)
39ad4f39 810 die(_("unable to write parameters to config file"));
84054f79
JK
811 }
812}
813
24d36f14
DA
814static void write_refspec_config(const char *src_ref_prefix,
815 const struct ref *our_head_points_at,
816 const struct ref *remote_head_points_at,
817 struct strbuf *branch_top)
31b808a0
RT
818{
819 struct strbuf key = STRBUF_INIT;
820 struct strbuf value = STRBUF_INIT;
821
822 if (option_mirror || !option_bare) {
823 if (option_single_branch && !option_mirror) {
824 if (option_branch) {
60a5f5fc 825 if (starts_with(our_head_points_at->name, "refs/tags/"))
31b808a0
RT
826 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
827 our_head_points_at->name);
828 else
829 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
830 branch_top->buf, option_branch);
831 } else if (remote_head_points_at) {
cf4fff57
JK
832 const char *head = remote_head_points_at->name;
833 if (!skip_prefix(head, "refs/heads/", &head))
033abf97 834 BUG("remote HEAD points at non-head?");
cf4fff57 835
31b808a0 836 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
cf4fff57 837 branch_top->buf, head);
31b808a0
RT
838 }
839 /*
840 * otherwise, the next "git fetch" will
841 * simply fetch from HEAD without updating
d6ac1d21 842 * any remote-tracking branch, which is what
31b808a0
RT
843 * we want.
844 */
845 } else {
846 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
847 }
848 /* Configure the remote */
849 if (value.len) {
75ca3906 850 strbuf_addf(&key, "remote.%s.fetch", remote_name);
31b808a0
RT
851 git_config_set_multivar(key.buf, value.buf, "^$", 0);
852 strbuf_reset(&key);
853
854 if (option_mirror) {
75ca3906 855 strbuf_addf(&key, "remote.%s.mirror", remote_name);
31b808a0
RT
856 git_config_set(key.buf, "true");
857 strbuf_reset(&key);
858 }
859 }
860 }
861
862 strbuf_release(&key);
863 strbuf_release(&value);
864}
865
fb1d6dab
JH
866static void dissociate_from_references(void)
867{
0181681e 868 char *alternates = git_pathdup("objects/info/alternates");
fb1d6dab 869
0181681e 870 if (!access(alternates, F_OK)) {
ddbb47fd
RS
871 struct child_process cmd = CHILD_PROCESS_INIT;
872
873 cmd.git_cmd = 1;
874 cmd.no_stdin = 1;
875 strvec_pushl(&cmd.args, "repack", "-a", "-d", NULL);
876 if (run_command(&cmd))
0181681e
AR
877 die(_("cannot repack to clean up"));
878 if (unlink(alternates) && errno != ENOENT)
879 die_errno(_("cannot unlink temporary alternates file"));
880 }
881 free(alternates);
fb1d6dab
JH
882}
883
6c020421 884static int path_exists(const char *path)
f9e377ad
JK
885{
886 struct stat sb;
887 return !stat(path, &sb);
888}
889
8434c2f1
DB
890int cmd_clone(int argc, const char **argv, const char *prefix)
891{
24c61c44 892 int is_bundle = 0, is_local;
4fe788b1 893 int reject_shallow = 0;
8434c2f1 894 const char *repo_name, *repo, *work_tree, *git_dir;
0c454273 895 char *path = NULL, *dir, *display_repo = NULL;
dfaa209a 896 int dest_exists, real_dest_exists = 0;
37148311 897 const struct ref *refs, *remote_head;
0c454273 898 struct ref *remote_head_points_at = NULL;
7a4ee28f 899 const struct ref *our_head_points_at;
daf7898a 900 char *unborn_head = NULL;
dccea605 901 struct ref *mapped_refs = NULL;
90498161 902 const struct ref *ref;
3e42cb3b 903 struct strbuf key = STRBUF_INIT;
b5ff37ac 904 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
1db4a75c 905 struct transport *transport = NULL;
9e585046 906 const char *src_ref_prefix = "refs/heads/";
6f48d39f 907 struct remote *remote;
90498161 908 int err = 0, complete_refs_before_fetch = 1;
72c5f883 909 int submodule_progress;
f05da2b4 910 int filter_submodules = 0;
8434c2f1 911
39835409
JT
912 struct transport_ls_refs_options transport_ls_refs_options =
913 TRANSPORT_LS_REFS_OPTIONS_INIT;
8434c2f1 914
bbc30f99 915 packet_trace_identity("clone");
552955ed
SB
916
917 git_config(git_clone_config, NULL);
918
37782920 919 argc = parse_options(argc, argv, prefix, builtin_clone_options,
8434c2f1
DB
920 builtin_clone_usage, 0);
921
d52dc4b1 922 if (argc > 2)
e84d7b74 923 usage_msg_opt(_("Too many arguments."),
d52dc4b1
JN
924 builtin_clone_usage, builtin_clone_options);
925
8434c2f1 926 if (argc == 0)
e84d7b74 927 usage_msg_opt(_("You must specify a repository to clone."),
d52dc4b1 928 builtin_clone_usage, builtin_clone_options);
8434c2f1 929
859e5df9 930 if (option_depth || option_since || option_not.nr)
994c2aaf 931 deepen = 1;
3e6e0edd 932 if (option_single_branch == -1)
994c2aaf 933 option_single_branch = deepen ? 1 : 0;
3e6e0edd 934
bc699afc
JS
935 if (option_mirror)
936 option_bare = 1;
937
8434c2f1 938 if (option_bare) {
95b63f1e 939 if (real_git_dir)
12909b6b 940 die(_("options '%s' and '%s' cannot be used together"), "--bare", "--separate-git-dir");
8434c2f1 941 option_no_checkout = 1;
8434c2f1
DB
942 }
943
e21e663c
DS
944 if (bundle_uri && deepen)
945 die(_("--bundle-uri is incompatible with --depth, --shallow-since, and --shallow-exclude"));
946
8434c2f1
DB
947 repo_name = argv[0];
948
949 path = get_repo_path(repo_name, &is_bundle);
0c454273
AH
950 if (path) {
951 FREE_AND_NULL(path);
0aaad415 952 repo = absolute_pathdup(repo_name);
0c454273 953 } else if (strchr(repo_name, ':')) {
8434c2f1 954 repo = repo_name;
46da295a
JS
955 display_repo = transport_anonymize_url(repo);
956 } else
957 die(_("repository '%s' does not exist"), repo_name);
8434c2f1 958
5594bcad
NTND
959 /* no need to be strict, transport_set_option() will validate it again */
960 if (option_depth && atoi(option_depth) < 1)
961 die(_("depth %s is not a positive number"), option_depth);
962
8434c2f1
DB
963 if (argc == 2)
964 dir = xstrdup(argv[1]);
965 else
ed86301f
AR
966 dir = git_url_basename(repo_name, is_bundle, option_bare);
967 strip_dir_trailing_slashes(dir);
8434c2f1 968
6c020421 969 dest_exists = path_exists(dir);
55892d23 970 if (dest_exists && !is_empty_dir(dir))
e84d7b74
ÆAB
971 die(_("destination path '%s' already exists and is not "
972 "an empty directory."), dir);
8434c2f1 973
dfaa209a
BW
974 if (real_git_dir) {
975 real_dest_exists = path_exists(real_git_dir);
976 if (real_dest_exists && !is_empty_dir(real_git_dir))
977 die(_("repository path '%s' already exists and is not "
978 "an empty directory."), real_git_dir);
979 }
980
981
46da295a
JS
982 strbuf_addf(&reflog_msg, "clone: from %s",
983 display_repo ? display_repo : repo);
984 free(display_repo);
8434c2f1
DB
985
986 if (option_bare)
987 work_tree = NULL;
988 else {
989 work_tree = getenv("GIT_WORK_TREE");
6c020421 990 if (work_tree && path_exists(work_tree))
e84d7b74 991 die(_("working tree '%s' already exists."), work_tree);
8434c2f1
DB
992 }
993
994 if (option_bare || work_tree)
995 git_dir = xstrdup(dir);
996 else {
997 work_tree = dir;
4e2d094d 998 git_dir = mkpathdup("%s/.git", dir);
8434c2f1
DB
999 }
1000
ee0e3872
JK
1001 atexit(remove_junk);
1002 sigchain_push_common(remove_junk_on_signal);
1003
8434c2f1 1004 if (!option_bare) {
8e21d63b 1005 if (safe_create_leading_directories_const(work_tree) < 0)
e84d7b74 1006 die_errno(_("could not create leading directories of '%s'"),
d824cbba 1007 work_tree);
d45420c1
JK
1008 if (dest_exists)
1009 junk_work_tree_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1010 else if (mkdir(work_tree, 0777))
16eff6c0 1011 die_errno(_("could not create work tree dir '%s'"),
d824cbba 1012 work_tree);
ee0e3872 1013 junk_work_tree = work_tree;
8434c2f1
DB
1014 set_git_work_tree(work_tree);
1015 }
8434c2f1 1016
d45420c1 1017 if (real_git_dir) {
dfaa209a 1018 if (real_dest_exists)
d45420c1
JK
1019 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1020 junk_git_dir = real_git_dir;
1021 } else {
1022 if (dest_exists)
1023 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1024 junk_git_dir = git_dir;
1025 }
8e21d63b 1026 if (safe_create_leading_directories_const(git_dir) < 0)
e84d7b74 1027 die(_("could not create leading directories of '%s'"), git_dir);
b57fb80a 1028
3781fcce
ÆAB
1029 if (0 <= option_verbosity) {
1030 if (option_bare)
68b939b2 1031 fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
3781fcce 1032 else
68b939b2 1033 fprintf(stderr, _("Cloning into '%s'...\n"), dir);
3781fcce 1034 }
31224cbd 1035
bb62e0a9
BW
1036 if (option_recurse_submodules.nr > 0) {
1037 struct string_list_item *item;
1038 struct strbuf sb = STRBUF_INIT;
48072e3d 1039 int val;
bb62e0a9
BW
1040
1041 /* remove duplicates */
1042 string_list_sort(&option_recurse_submodules);
1043 string_list_remove_duplicates(&option_recurse_submodules, 0);
1044
1045 /*
1046 * NEEDSWORK: In a multi-working-tree world, this needs to be
1047 * set in the per-worktree config.
1048 */
1049 for_each_string_list_item(item, &option_recurse_submodules) {
1050 strbuf_addf(&sb, "submodule.active=%s",
1051 item->string);
1052 string_list_append(&option_config,
1053 strbuf_detach(&sb, NULL));
1054 }
1055
48072e3d
MK
1056 if (!git_config_get_bool("submodule.stickyRecursiveClone", &val) &&
1057 val)
1058 string_list_append(&option_config, "submodule.recurse=true");
1059
31224cbd
SB
1060 if (option_required_reference.nr &&
1061 option_optional_reference.nr)
1062 die(_("clone --recursive is not compatible with "
1063 "both --reference and --reference-if-able"));
1064 else if (option_required_reference.nr) {
1065 string_list_append(&option_config,
1066 "submodule.alternateLocation=superproject");
1067 string_list_append(&option_config,
1068 "submodule.alternateErrorStrategy=die");
1069 } else if (option_optional_reference.nr) {
1070 string_list_append(&option_config,
1071 "submodule.alternateLocation=superproject");
1072 string_list_append(&option_config,
1073 "submodule.alternateErrorStrategy=info");
1074 }
1075 }
1076
32ba12da
JS
1077 init_db(git_dir, real_git_dir, option_template, GIT_HASH_UNKNOWN, NULL,
1078 INIT_DB_QUIET);
33158701 1079
27ff1fbc
ÆAB
1080 if (real_git_dir) {
1081 free((char *)git_dir);
33158701 1082 git_dir = real_git_dir;
27ff1fbc 1083 }
33158701 1084
552955ed
SB
1085 /*
1086 * additional config can be injected with -c, make sure it's included
1087 * after init_db, which clears the entire config environment.
1088 */
84054f79 1089 write_config(&option_config);
8434c2f1 1090
552955ed
SB
1091 /*
1092 * re-read config after init_db and write_config to pick up any config
1093 * injected by --template and --config, respectively.
1094 */
1095 git_config(git_clone_config, NULL);
8434c2f1 1096
4fe788b1
LL
1097 /*
1098 * If option_reject_shallow is specified from CLI option,
1099 * ignore config_reject_shallow from git_clone_config.
1100 */
1101 if (config_reject_shallow != -1)
1102 reject_shallow = config_reject_shallow;
1103 if (option_reject_shallow != -1)
1104 reject_shallow = option_reject_shallow;
1105
f05da2b4
JS
1106 /*
1107 * If option_filter_submodules is specified from CLI option,
1108 * ignore config_filter_submodules from git_clone_config.
1109 */
1110 if (config_filter_submodules != -1)
1111 filter_submodules = config_filter_submodules;
1112 if (option_filter_submodules != -1)
1113 filter_submodules = option_filter_submodules;
1114
1115 /*
1116 * Exit if the user seems to be doing something silly with submodule
1117 * filter flags (but not with filter configs, as those should be
1118 * set-and-forget).
1119 */
1120 if (option_filter_submodules > 0 && !filter_options.choice)
1121 die(_("the option '%s' requires '%s'"),
1122 "--also-filter-submodules", "--filter");
1123 if (option_filter_submodules > 0 && !option_recurse_submodules.nr)
1124 die(_("the option '%s' requires '%s'"),
1125 "--also-filter-submodules", "--recurse-submodules");
1126
de9ed3ef
SB
1127 /*
1128 * apply the remote name provided by --origin only after this second
1129 * call to git_config, to ensure it overrides all config-based values.
1130 */
538dc459 1131 if (option_origin) {
6dfadc89 1132 free(remote_name);
de9ed3ef 1133 remote_name = xstrdup(option_origin);
6dfadc89 1134 }
de9ed3ef 1135
afe8a907 1136 if (!remote_name)
de9ed3ef
SB
1137 remote_name = xstrdup("origin");
1138
1139 if (!valid_remote_name(remote_name))
1140 die(_("'%s' is not a valid remote name"), remote_name);
8434c2f1
DB
1141
1142 if (option_bare) {
bc699afc
JS
1143 if (option_mirror)
1144 src_ref_prefix = "refs/";
b5ff37ac 1145 strbuf_addstr(&branch_top, src_ref_prefix);
8434c2f1
DB
1146
1147 git_config_set("core.bare", "true");
1148 } else {
75ca3906 1149 strbuf_addf(&branch_top, "refs/remotes/%s/", remote_name);
bc699afc 1150 }
8434c2f1 1151
75ca3906 1152 strbuf_addf(&key, "remote.%s.url", remote_name);
df61c889
SR
1153 git_config_set(key.buf, repo);
1154 strbuf_reset(&key);
1155
0dab2468 1156 if (option_no_tags) {
75ca3906 1157 strbuf_addf(&key, "remote.%s.tagOpt", remote_name);
0dab2468
ÆAB
1158 git_config_set(key.buf, "--no-tags");
1159 strbuf_reset(&key);
1160 }
1161
f7415b4d 1162 if (option_required_reference.nr || option_optional_reference.nr)
dbc92b07 1163 setup_reference();
766ac6a6 1164
47dbf10d 1165 if (option_sparse_checkout && git_sparse_checkout_init(dir))
d89f09c8
DS
1166 return 1;
1167
75ca3906 1168 remote = remote_get(remote_name);
689f0396 1169
1af8b8c0
RS
1170 refspec_appendf(&remote->fetch, "+%s*:%s*", src_ref_prefix,
1171 branch_top.buf);
8434c2f1 1172
6f48d39f 1173 transport = transport_get(remote, remote->url[0]);
822f0c4f 1174 transport_set_verbosity(transport, option_verbosity, option_progress);
c915f11e 1175 transport->family = family;
822f0c4f 1176
f38aa83f
MB
1177 path = get_repo_path(remote->url[0], &is_bundle);
1178 is_local = option_local != 0 && path && !is_bundle;
1179 if (is_local) {
1180 if (option_depth)
1181 warning(_("--depth is ignored in local clones; use file:// instead."));
994c2aaf
NTND
1182 if (option_since)
1183 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
859e5df9
NTND
1184 if (option_not.nr)
1185 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
548719fb
JT
1186 if (filter_options.choice)
1187 warning(_("--filter is ignored in local clones; use file:// instead."));
f38aa83f 1188 if (!access(mkpath("%s/shallow", path), F_OK)) {
4fe788b1
LL
1189 if (reject_shallow)
1190 die(_("source repository is shallow, reject to clone."));
f38aa83f
MB
1191 if (option_local > 0)
1192 warning(_("source repository is shallow, ignoring --local"));
1193 is_local = 0;
1194 }
1195 }
1196 if (option_local > 0 && !is_local)
1197 warning(_("--local is ignored"));
beea4152 1198 transport->cloning = 1;
8434c2f1 1199
86fdd94d
DS
1200 if (is_bundle) {
1201 struct bundle_header header = BUNDLE_HEADER_INIT;
1202 int fd = read_bundle_header(path, &header);
1203 int has_filter = header.filter.choice != LOFC_DISABLED;
1204
1205 if (fd > 0)
1206 close(fd);
1207 bundle_header_release(&header);
1208 if (has_filter)
1209 die(_("cannot clone from filtered bundle"));
1210 }
1211
643f918d 1212 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
8434c2f1 1213
4fe788b1
LL
1214 if (reject_shallow)
1215 transport_set_option(transport, TRANS_OPT_REJECT_SHALLOW, "1");
643f918d
JK
1216 if (option_depth)
1217 transport_set_option(transport, TRANS_OPT_DEPTH,
1218 option_depth);
994c2aaf
NTND
1219 if (option_since)
1220 transport_set_option(transport, TRANS_OPT_DEEPEN_SINCE,
1221 option_since);
859e5df9
NTND
1222 if (option_not.nr)
1223 transport_set_option(transport, TRANS_OPT_DEEPEN_NOT,
1224 (const char *)&option_not);
643f918d
JK
1225 if (option_single_branch)
1226 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
8434c2f1 1227
643f918d
JK
1228 if (option_upload_pack)
1229 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
1230 option_upload_pack);
c6807a40 1231
6e983059
JT
1232 if (server_options.nr)
1233 transport->server_options = &server_options;
1234
548719fb 1235 if (filter_options.choice) {
cf9ceb5a
MD
1236 const char *spec =
1237 expand_list_objects_filter_spec(&filter_options);
548719fb 1238 transport_set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER,
cf9ceb5a 1239 spec);
548719fb
JT
1240 transport_set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1241 }
1242
1243 if (transport->smart_options && !deepen && !filter_options.choice)
643f918d 1244 transport->smart_options->check_self_contained_and_connected = 1;
8434c2f1 1245
55568919
DS
1246 /*
1247 * Before fetching from the remote, download and install bundle
1248 * data from the --bundle-uri option.
1249 */
1250 if (bundle_uri) {
1251 /* At this point, we need the_repository to match the cloned repo. */
65da9389
DS
1252 if (repo_init(the_repository, git_dir, work_tree))
1253 warning(_("failed to initialize the repo, skipping bundle URI"));
1254 else if (fetch_bundle_uri(the_repository, bundle_uri))
55568919
DS
1255 warning(_("failed to fetch objects from bundle URI '%s'"),
1256 bundle_uri);
1257 }
402c47d9 1258
39835409
JT
1259 strvec_push(&transport_ls_refs_options.ref_prefixes, "HEAD");
1260 refspec_ref_prefixes(&remote->fetch,
1261 &transport_ls_refs_options.ref_prefixes);
402c47d9 1262 if (option_branch)
39835409
JT
1263 expand_ref_prefix(&transport_ls_refs_options.ref_prefixes,
1264 option_branch);
402c47d9 1265 if (!option_no_tags)
39835409
JT
1266 strvec_push(&transport_ls_refs_options.ref_prefixes,
1267 "refs/tags/");
402c47d9 1268
39835409 1269 refs = transport_get_remote_refs(transport, &transport_ls_refs_options);
8434c2f1 1270
dccea605
JT
1271 if (refs)
1272 mapped_refs = wanted_peer_refs(refs, &remote->fetch);
1273
0cfde740
ÆAB
1274 /*
1275 * Populate transport->got_remote_bundle_uri and
1276 * transport->bundle_uri. We might get nothing.
1277 */
1278 transport_get_remote_bundle_uri(transport);
1279
dccea605 1280 if (mapped_refs) {
b65dc2ce 1281 int hash_algo = hash_algo_by_ptr(transport_get_hash_algo(transport));
1282
1283 /*
1284 * Now that we know what algorithm the remote side is using,
1285 * let's set ours to the same thing.
1286 */
47ac9703 1287 initialize_repository_version(hash_algo, 1);
b65dc2ce 1288 repo_set_hash_algo(the_repository, hash_algo);
5b05795c
MH
1289 /*
1290 * transport_get_remote_refs() may return refs with null sha-1
1291 * in mapped_refs (see struct transport->get_refs_list
1292 * comment). In that case we need fetch it early because
1293 * remote_head code below relies on it.
1294 *
1295 * for normal clones, transport_get_remote_refs() should
1296 * return reliable ref set, we can delay cloning until after
1297 * remote HEAD check.
1298 */
1299 for (ref = refs; ref; ref = ref->next)
f4e54d02 1300 if (is_null_oid(&ref->old_oid)) {
5b05795c
MH
1301 complete_refs_before_fetch = 0;
1302 break;
1303 }
90498161 1304
aab179d9 1305 if (!is_local && !complete_refs_before_fetch) {
6aacb7d8
JK
1306 if (transport_fetch_refs(transport, mapped_refs))
1307 die(_("remote transport reported error"));
aab179d9 1308 }
86ac7518 1309 }
6b58df54 1310
3d8314f8
JK
1311 remote_head = find_ref_by_name(refs, "HEAD");
1312 remote_head_points_at = guess_remote_head(remote_head, mapped_refs, 0);
a3552aba 1313
3d8314f8
JK
1314 if (option_branch) {
1315 our_head_points_at = find_remote_branch(mapped_refs, option_branch);
1316 if (!our_head_points_at)
1317 die(_("Remote branch %s not found in upstream %s"),
1318 option_branch, remote_name);
1319 } else if (remote_head_points_at) {
1320 our_head_points_at = remote_head_points_at;
1321 } else if (remote_head) {
7a4ee28f 1322 our_head_points_at = NULL;
3d8314f8 1323 } else {
6b58df54 1324 const char *branch;
6b58df54 1325
3d8314f8
JK
1326 if (!mapped_refs) {
1327 warning(_("You appear to have cloned an empty repository."));
1328 option_no_checkout = 1;
1329 }
0cc1b475 1330
6b58df54
JK
1331 if (transport_ls_refs_options.unborn_head_target &&
1332 skip_prefix(transport_ls_refs_options.unborn_head_target,
1333 "refs/heads/", &branch)) {
daf7898a 1334 unborn_head = xstrdup(transport_ls_refs_options.unborn_head_target);
6b58df54
JK
1335 } else {
1336 branch = git_default_branch_name(0);
daf7898a 1337 unborn_head = xstrfmt("refs/heads/%s", branch);
0cc1b475 1338 }
6b58df54 1339
cc8fcd1e
JK
1340 /*
1341 * We may have selected a local default branch name "foo",
1342 * and even though the remote's HEAD does not point there,
1343 * it may still have a "foo" branch. If so, set it up so
1344 * that we can follow the usual checkout code later.
1345 *
1346 * Note that for an empty repo we'll already have set
1347 * option_no_checkout above, which would work against us here.
1348 * But for an empty repo, find_remote_branch() can never find
1349 * a match.
1350 */
1351 our_head_points_at = find_remote_branch(mapped_refs, branch);
86ac7518 1352 }
8434c2f1 1353
31b808a0
RT
1354 write_refspec_config(src_ref_prefix, our_head_points_at,
1355 remote_head_points_at, &branch_top);
1356
548719fb 1357 if (filter_options.choice)
75ca3906 1358 partial_clone_register(remote_name, &filter_options);
548719fb 1359
6f48d39f
NTND
1360 if (is_local)
1361 clone_local(path, git_dir);
dccea605 1362 else if (mapped_refs && complete_refs_before_fetch) {
6aacb7d8
JK
1363 if (transport_fetch_refs(transport, mapped_refs))
1364 die(_("remote transport reported error"));
aab179d9 1365 }
8434c2f1 1366
960b7d1c 1367 update_remote_refs(refs, mapped_refs, remote_head_points_at,
548719fb 1368 branch_top.buf, reflog_msg.buf, transport,
2b98478c 1369 !is_local);
8434c2f1 1370
daf7898a 1371 update_head(our_head_points_at, remote_head, unborn_head, reflog_msg.buf);
1db4a75c 1372
72c5f883
JK
1373 /*
1374 * We want to show progress for recursive submodule clones iff
1375 * we did so for the main clone. But only the transport knows
1376 * the final decision for this flag, so we need to rescue the value
1377 * before we free the transport.
1378 */
1379 submodule_progress = transport->progress;
1380
58d4d7f1 1381 transport_unlock_pack(transport, 0);
6f48d39f 1382 transport_disconnect(transport);
1db4a75c 1383
786b150c 1384 if (option_dissociate) {
2d511cfc 1385 close_object_store(the_repository->objects);
fb1d6dab 1386 dissociate_from_references();
786b150c 1387 }
fb1d6dab 1388
d3b34622 1389 junk_mode = JUNK_LEAVE_REPO;
f05da2b4 1390 err = checkout(submodule_progress, filter_submodules);
8434c2f1 1391
de9ed3ef 1392 free(remote_name);
8434c2f1 1393 strbuf_release(&reflog_msg);
b5ff37ac
MV
1394 strbuf_release(&branch_top);
1395 strbuf_release(&key);
0c454273
AH
1396 free_refs(mapped_refs);
1397 free_refs(remote_head_points_at);
daf7898a 1398 free(unborn_head);
0c454273
AH
1399 free(dir);
1400 free(path);
1401 UNLEAK(repo);
d3b34622 1402 junk_mode = JUNK_LEAVE_ALL;
50b67732 1403
f36d4f83 1404 transport_ls_refs_options_release(&transport_ls_refs_options);
dfa7a6c5 1405 return err;
8434c2f1 1406}