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