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