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