blob: 5fbe39f898a2ee1ecf1637552952c10cd2fc5b0a [file] [log] [blame]
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001/*
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
Ævar Arnfjörð Bjarmason07047d62022-11-19 14:07:38 +010011#define USE_THE_INDEX_VARIABLE
Stephen Boydc2e86ad2011-03-22 00:51:05 -070012#include "builtin.h"
Elijah Newren0b027f62023-03-21 06:25:58 +000013#include "abspath.h"
Elijah Newren6c6ddf92023-04-11 03:00:39 +000014#include "advice.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -070015#include "config.h"
Elijah Newrend5fff462023-04-22 20:17:12 +000016#include "copy.h"
Elijah Newren32a8f512023-03-21 06:26:03 +000017#include "environment.h"
Elijah Newrenf394e092023-03-21 06:25:54 +000018#include "gettext.h"
Elijah Newren41771fa2023-02-24 00:09:27 +000019#include "hex.h"
Michael Haggerty697cc8e2014-10-01 12:28:42 +020020#include "lockfile.h"
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040021#include "parse-options.h"
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040022#include "refs.h"
Brandon Williamsec0cb492018-05-16 15:57:48 -070023#include "refspec.h"
Elijah Newren87bed172023-04-11 00:41:53 -070024#include "object-file.h"
Elijah Newrena034e912023-05-16 06:34:06 +000025#include "object-store-ll.h"
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040026#include "tree.h"
27#include "tree-walk.h"
28#include "unpack-trees.h"
29#include "transport.h"
30#include "strbuf.h"
31#include "dir.h"
Matheus Tavaresff7ccc82019-07-10 20:59:03 -030032#include "dir-iterator.h"
33#include "iterator.h"
Jeff King4a16d072009-01-22 01:02:35 -050034#include "sigchain.h"
Junio C Hamanoa9f2c132009-03-03 22:29:55 -080035#include "branch.h"
Jay Soffian8ef51732009-02-25 03:32:13 -050036#include "remote.h"
Jeff Kingdfa7a6c2009-03-03 00:37:51 -050037#include "run-command.h"
Elijah Newrene38da482023-03-21 06:26:05 +000038#include "setup.h"
Jeff King0433ad12013-03-25 16:26:27 -040039#include "connected.h"
Jonathan Tan3836d882017-08-18 15:20:21 -070040#include "packfile.h"
Elijah Newrenc3399322023-05-16 06:33:59 +000041#include "path.h"
Elijah Newrenb3886332023-04-22 20:17:14 +000042#include "pkt-line.h"
Jonathan Tan548719f2017-12-08 15:58:46 +000043#include "list-objects-filter-options.h"
Emily Shaffer72ddf342021-12-22 04:59:35 +010044#include "hook.h"
Derrick Stolee86fdd942022-03-09 16:01:43 +000045#include "bundle.h"
Derrick Stolee55568912022-08-09 13:11:41 +000046#include "bundle-uri.h"
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040047
48/*
49 * Overall FIXMEs:
50 * - respect DB_ENVIRONMENT for .git/objects.
51 *
52 * Implementation notes:
53 * - dropping use-separate-remote and no-separate-remote compatibility
54 *
55 */
56static const char * const builtin_clone_usage[] = {
Alex Henrie9c9b4f22015-01-13 00:44:47 -070057 N_("git clone [<options>] [--] <repo> [<dir>]"),
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040058 NULL
59};
60
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +070061static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
Brandon Williamsbb62e0a2017-03-17 15:38:03 -070062static int option_local = -1, option_no_hardlinks, option_shared;
Ævar Arnfjörð Bjarmason0dab2462017-04-26 23:12:33 +000063static int option_no_tags;
Junio C Hamano18a74a02016-06-19 13:51:56 -070064static int option_shallow_submodules;
Li Linchao4fe788b2021-04-01 10:46:59 +000065static int option_reject_shallow = -1; /* unspecified */
66static int config_reject_shallow = -1; /* unspecified */
Nguyễn Thái Ngọc Duy994c2aa2016-06-12 17:54:00 +070067static int deepen;
68static char *option_template, *option_depth, *option_since;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040069static char *option_origin = NULL;
Sean Baragde9ed3e2020-10-01 03:46:16 +000070static char *remote_name = NULL;
Jeff King7a4ee282009-08-26 15:05:08 -040071static char *option_branch = NULL;
Nguyễn Thái Ngọc Duy859e5df2016-06-12 17:54:05 +070072static struct string_list option_not = STRING_LIST_INIT_NODUP;
Nguyễn Thái Ngọc Duyb57fb802011-03-19 22:16:56 +070073static const char *real_git_dir;
Patrick Steinhardt5ed860f2023-12-29 08:27:09 +010074static const char *ref_format;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040075static char *option_upload_pack = "git-upload-pack";
Tay Ray Chuan5bd631b2010-02-24 20:50:25 +080076static int option_verbosity;
Clemens Buchacher01fdc212012-02-13 21:17:15 +010077static int option_progress = -1;
Derrick Stoleed89f09c2019-11-21 22:04:35 +000078static int option_sparse_checkout;
Eric Wongc915f112016-02-03 04:09:14 +000079static enum transport_family family;
Jeff King2721ce22016-06-13 06:04:20 -040080static struct string_list option_config = STRING_LIST_INIT_NODUP;
Stefan Beller5e408002016-08-15 14:53:25 -070081static struct string_list option_required_reference = STRING_LIST_INIT_NODUP;
Stefan Bellerf7415b42016-08-15 14:53:26 -070082static struct string_list option_optional_reference = STRING_LIST_INIT_NODUP;
Junio C Hamanofb1d6da2014-10-14 12:38:52 -070083static int option_dissociate;
Stefan Beller72290d62016-02-29 18:07:20 -080084static int max_jobs = -1;
Brandon Williamsbb62e0a2017-03-17 15:38:03 -070085static struct string_list option_recurse_submodules = STRING_LIST_INIT_NODUP;
Jeff King2a01bde2022-09-11 01:03:07 -040086static struct list_objects_filter_options filter_options = LIST_OBJECTS_FILTER_INIT;
Josh Steadmonf05da2b2022-02-04 21:00:49 -080087static int option_filter_submodules = -1; /* unspecified */
88static int config_filter_submodules = -1; /* unspecified */
Jonathan Tan6e983052019-04-12 12:51:22 -070089static struct string_list server_options = STRING_LIST_INIT_NODUP;
Ben Avison4c691012019-05-19 15:26:49 +010090static int option_remote_submodules;
Derrick Stolee55568912022-08-09 13:11:41 +000091static const char *bundle_uri;
Brandon Williamsbb62e0a2017-03-17 15:38:03 -070092
93static int recurse_submodules_cb(const struct option *opt,
94 const char *arg, int unset)
95{
96 if (unset)
97 string_list_clear((struct string_list *)opt->value, 0);
98 else if (arg)
99 string_list_append((struct string_list *)opt->value, arg);
100 else
101 string_list_append((struct string_list *)opt->value,
102 (const char *)opt->defval);
103
104 return 0;
105}
Junio C Hamanodbc92b02011-08-22 18:05:15 -0700106
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400107static struct option builtin_clone_options[] = {
Tay Ray Chuan5bd631b2010-02-24 20:50:25 +0800108 OPT__VERBOSITY(&option_verbosity),
Clemens Buchacher01fdc212012-02-13 21:17:15 +0100109 OPT_BOOL(0, "progress", &option_progress,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +0700110 N_("force progress reporting")),
Li Linchao4fe788b2021-04-01 10:46:59 +0000111 OPT_BOOL(0, "reject-shallow", &option_reject_shallow,
112 N_("don't clone shallow repository")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +0200113 OPT_BOOL('n', "no-checkout", &option_no_checkout,
114 N_("don't create a checkout")),
Stefan Beller4741edd2013-08-03 13:51:18 +0200115 OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")),
116 OPT_HIDDEN_BOOL(0, "naked", &option_bare,
117 N_("create a bare repository")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +0200118 OPT_BOOL(0, "mirror", &option_mirror,
Alexander Shopov6567eed2024-02-16 11:15:36 +0100119 N_("create a mirror repository (implies --bare)")),
Jeff King189260b2012-05-30 07:10:16 -0400120 OPT_BOOL('l', "local", &option_local,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +0700121 N_("to clone from a local repository")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +0200122 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +0700123 N_("don't use local hardlinks, always copy")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +0200124 OPT_BOOL('s', "shared", &option_shared,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +0700125 N_("setup as shared repository")),
Brandon Williamsbb62e0a2017-03-17 15:38:03 -0700126 { OPTION_CALLBACK, 0, "recurse-submodules", &option_recurse_submodules,
127 N_("pathspec"), N_("initialize submodules in the clone"),
128 PARSE_OPT_OPTARG, recurse_submodules_cb, (intptr_t)"." },
Junio C Hamanoc28b0362020-03-16 13:27:43 -0700129 OPT_ALIAS(0, "recursive", "recurse-submodules"),
Stefan Beller72290d62016-02-29 18:07:20 -0800130 OPT_INTEGER('j', "jobs", &max_jobs,
131 N_("number of submodules cloned in parallel")),
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +0700132 OPT_STRING(0, "template", &option_template, N_("template-directory"),
133 N_("directory from which templates will be used")),
Stefan Beller5e408002016-08-15 14:53:25 -0700134 OPT_STRING_LIST(0, "reference", &option_required_reference, N_("repo"),
Jeff King8ade0092015-05-21 00:15:19 -0400135 N_("reference repository")),
Stefan Bellerf7415b42016-08-15 14:53:26 -0700136 OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference,
137 N_("repo"), N_("reference repository")),
Jeff King14f8b9b2015-05-21 00:16:04 -0400138 OPT_BOOL(0, "dissociate", &option_dissociate,
139 N_("use --reference only while cloning")),
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +0700140 OPT_STRING('o', "origin", &option_origin, N_("name"),
141 N_("use <name> instead of 'origin' to track upstream")),
142 OPT_STRING('b', "branch", &option_branch, N_("branch"),
143 N_("checkout <branch> instead of the remote's HEAD")),
144 OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
145 N_("path to git-upload-pack on the remote")),
146 OPT_STRING(0, "depth", &option_depth, N_("depth"),
147 N_("create a shallow clone of that depth")),
Nguyễn Thái Ngọc Duy994c2aa2016-06-12 17:54:00 +0700148 OPT_STRING(0, "shallow-since", &option_since, N_("time"),
149 N_("create a shallow clone since a specific time")),
Nguyễn Thái Ngọc Duy859e5df2016-06-12 17:54:05 +0700150 OPT_STRING_LIST(0, "shallow-exclude", &option_not, N_("revision"),
Alex Henrie6d873862016-12-04 15:03:59 -0700151 N_("deepen history of shallow clone, excluding rev")),
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700152 OPT_BOOL(0, "single-branch", &option_single_branch,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +0700153 N_("clone only one branch, HEAD or --branch")),
Ævar Arnfjörð Bjarmason0dab2462017-04-26 23:12:33 +0000154 OPT_BOOL(0, "no-tags", &option_no_tags,
155 N_("don't clone any tags, and make later fetches not to follow them")),
Stefan Bellerd22eb042016-04-25 18:12:27 -0700156 OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules,
157 N_("any cloned submodules will be shallow")),
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +0700158 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
159 N_("separate git dir from working tree")),
Patrick Steinhardt5ed860f2023-12-29 08:27:09 +0100160 OPT_STRING(0, "ref-format", &ref_format, N_("format"),
161 N_("specify the reference format to use")),
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +0700162 OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
163 N_("set config inside the new repository")),
Jonathan Tan6e983052019-04-12 12:51:22 -0700164 OPT_STRING_LIST(0, "server-option", &server_options,
165 N_("server-specific"), N_("option to transmit")),
Junio C Hamanoae2c9122023-07-18 14:34:33 -0700166 OPT_IPVERSION(&family),
Jonathan Tan548719f2017-12-08 15:58:46 +0000167 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
Josh Steadmonf05da2b2022-02-04 21:00:49 -0800168 OPT_BOOL(0, "also-filter-submodules", &option_filter_submodules,
169 N_("apply partial clone filters to submodules")),
Ben Avison4c691012019-05-19 15:26:49 +0100170 OPT_BOOL(0, "remote-submodules", &option_remote_submodules,
171 N_("any cloned submodules will use their remote-tracking branch")),
Derrick Stoleed89f09c2019-11-21 22:04:35 +0000172 OPT_BOOL(0, "sparse", &option_sparse_checkout,
173 N_("initialize sparse-checkout file to include only files at root")),
Derrick Stolee55568912022-08-09 13:11:41 +0000174 OPT_STRING(0, "bundle-uri", &bundle_uri,
175 N_("uri"), N_("a URI for downloading bundles before fetching from origin remote")),
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400176 OPT_END()
177};
178
Jeff King0ea68e42015-08-10 05:37:55 -0400179static const char *get_repo_path_1(struct strbuf *path, int *is_bundle)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400180{
Jeff Kingb3256eb2012-02-02 16:59:13 -0500181 static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400182 static char *bundle_suffix[] = { ".bundle", "" };
Jeff King0ea68e42015-08-10 05:37:55 -0400183 size_t baselen = path->len;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400184 struct stat st;
185 int i;
186
187 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
Jeff King0ea68e42015-08-10 05:37:55 -0400188 strbuf_setlen(path, baselen);
189 strbuf_addstr(path, suffix[i]);
190 if (stat(path->buf, &st))
Nguyễn Thái Ngọc Duy9b0ebc72011-08-21 18:58:09 +0700191 continue;
Jeff King0ea68e42015-08-10 05:37:55 -0400192 if (S_ISDIR(st.st_mode) && is_git_directory(path->buf)) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400193 *is_bundle = 0;
Jeff King0ea68e42015-08-10 05:37:55 -0400194 return path->buf;
Nguyễn Thái Ngọc Duy9b0ebc72011-08-21 18:58:09 +0700195 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
196 /* Is it a "gitfile"? */
197 char signature[8];
Jeff King0ea68e42015-08-10 05:37:55 -0400198 const char *dst;
199 int len, fd = open(path->buf, O_RDONLY);
Nguyễn Thái Ngọc Duy9b0ebc72011-08-21 18:58:09 +0700200 if (fd < 0)
201 continue;
202 len = read_in_full(fd, signature, 8);
203 close(fd);
204 if (len != 8 || strncmp(signature, "gitdir: ", 8))
205 continue;
Jeff King0ea68e42015-08-10 05:37:55 -0400206 dst = read_gitfile(path->buf);
207 if (dst) {
Nguyễn Thái Ngọc Duy9b0ebc72011-08-21 18:58:09 +0700208 *is_bundle = 0;
Jeff King0ea68e42015-08-10 05:37:55 -0400209 return dst;
Nguyễn Thái Ngọc Duy9b0ebc72011-08-21 18:58:09 +0700210 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400211 }
212 }
213
214 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
Jeff King0ea68e42015-08-10 05:37:55 -0400215 strbuf_setlen(path, baselen);
216 strbuf_addstr(path, bundle_suffix[i]);
217 if (!stat(path->buf, &st) && S_ISREG(st.st_mode)) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400218 *is_bundle = 1;
Jeff King0ea68e42015-08-10 05:37:55 -0400219 return path->buf;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400220 }
221 }
222
223 return NULL;
224}
225
Jeff King0ea68e42015-08-10 05:37:55 -0400226static char *get_repo_path(const char *repo, int *is_bundle)
227{
228 struct strbuf path = STRBUF_INIT;
229 const char *raw;
230 char *canon;
231
232 strbuf_addstr(&path, repo);
233 raw = get_repo_path_1(&path, is_bundle);
René Scharfe0aaad412017-01-26 18:54:23 +0100234 canon = raw ? absolute_pathdup(raw) : NULL;
Jeff King0ea68e42015-08-10 05:37:55 -0400235 strbuf_release(&path);
236 return canon;
237}
238
Junio C Hamanodbc92b02011-08-22 18:05:15 -0700239static int add_one_reference(struct string_list_item *item, void *cb_data)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400240{
Stefan Beller9eeea7d2016-08-15 14:53:24 -0700241 struct strbuf err = STRBUF_INIT;
Stefan Bellerf7415b42016-08-15 14:53:26 -0700242 int *required = cb_data;
Stefan Beller9eeea7d2016-08-15 14:53:24 -0700243 char *ref_git = compute_alternate_path(item->string, &err);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400244
Stefan Bellerf7415b42016-08-15 14:53:26 -0700245 if (!ref_git) {
246 if (*required)
247 die("%s", err.buf);
248 else
249 fprintf(stderr,
250 _("info: Could not add alternate for '%s': %s\n"),
251 item->string, err.buf);
252 } else {
253 struct strbuf sb = STRBUF_INIT;
254 strbuf_addf(&sb, "%s/objects", ref_git);
255 add_to_alternates_file(sb.buf);
256 strbuf_release(&sb);
257 }
Aaron Schrabb552b562013-04-09 18:22:00 -0400258
Stefan Beller9eeea7d2016-08-15 14:53:24 -0700259 strbuf_release(&err);
Stefan Bellerf7415b42016-08-15 14:53:26 -0700260 free(ref_git);
Junio C Hamanodbc92b02011-08-22 18:05:15 -0700261 return 0;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400262}
263
Junio C Hamanodbc92b02011-08-22 18:05:15 -0700264static void setup_reference(void)
265{
Stefan Bellerf7415b42016-08-15 14:53:26 -0700266 int required = 1;
267 for_each_string_list(&option_required_reference,
268 add_one_reference, &required);
269 required = 0;
270 for_each_string_list(&option_optional_reference,
271 add_one_reference, &required);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400272}
273
Jeff King3c1dce82019-05-09 17:29:22 -0400274static void copy_alternates(struct strbuf *src, const char *src_repo)
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700275{
276 /*
277 * Read from the source objects/info/alternates file
278 * and copy the entries to corresponding file in the
279 * destination repository with add_to_alternates_file().
280 * Both src and dst have "$path/objects/info/alternates".
281 *
282 * Instead of copying bit-for-bit from the original,
283 * we need to append to existing one so that the already
284 * created entry via "clone -s" is not lost, and also
285 * to turn entries with paths relative to the original
286 * absolute, so that they can be used in the new repository.
287 */
Nguyễn Thái Ngọc Duy02912f42017-05-03 17:16:47 +0700288 FILE *in = xfopen(src->buf, "r");
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700289 struct strbuf line = STRBUF_INIT;
290
Junio C Hamano3f163962015-10-28 13:29:24 -0700291 while (strbuf_getline(&line, in) != EOF) {
Nguyễn Thái Ngọc Duydcf69262014-11-30 15:24:27 +0700292 char *abs_path;
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700293 if (!line.len || line.buf[0] == '#')
294 continue;
295 if (is_absolute_path(line.buf)) {
296 add_to_alternates_file(line.buf);
297 continue;
298 }
Nguyễn Thái Ngọc Duydcf69262014-11-30 15:24:27 +0700299 abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf);
Jeff King22d3b8d2016-10-05 10:29:29 -0400300 if (!normalize_path_copy(abs_path, abs_path))
301 add_to_alternates_file(abs_path);
302 else
303 warning("skipping invalid relative alternate: %s/%s",
304 src_repo, line.buf);
Nguyễn Thái Ngọc Duydcf69262014-11-30 15:24:27 +0700305 free(abs_path);
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700306 }
307 strbuf_release(&line);
308 fclose(in);
309}
310
Matheus Tavares14954b72019-07-10 20:59:02 -0300311static void mkdir_if_missing(const char *pathname, mode_t mode)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400312{
Matheus Tavares14954b72019-07-10 20:59:02 -0300313 struct stat st;
314
315 if (!mkdir(pathname, mode))
316 return;
317
318 if (errno != EEXIST)
319 die_errno(_("failed to create directory '%s'"), pathname);
320 else if (stat(pathname, &st))
321 die_errno(_("failed to stat '%s'"), pathname);
322 else if (!S_ISDIR(st.st_mode))
323 die(_("%s exists and is not a directory"), pathname);
324}
325
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400326static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300327 const char *src_repo)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400328{
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400329 int src_len, dest_len;
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300330 struct dir_iterator *iter;
331 int iter_status;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400332
Patrick Steinhardt1204e1a2024-04-15 13:30:41 +0200333 /*
334 * Refuse copying directories by default which aren't owned by us. The
335 * code that performs either the copying or hardlinking is not prepared
336 * to handle various edge cases where an adversary may for example
337 * racily swap out files for symlinks. This can cause us to
338 * inadvertently use the wrong source file.
339 *
340 * Furthermore, even if we were prepared to handle such races safely,
341 * creating hardlinks across user boundaries is an inherently unsafe
342 * operation as the hardlinked files can be rewritten at will by the
343 * potentially-untrusted user. We thus refuse to do so by default.
344 */
345 die_upon_dubious_ownership(NULL, NULL, src_repo);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400346
Matheus Tavares14954b72019-07-10 20:59:02 -0300347 mkdir_if_missing(dest->buf, 0777);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400348
Taylor Blau6f054f92022-07-28 17:35:17 -0400349 iter = dir_iterator_begin(src->buf, DIR_ITERATOR_PEDANTIC);
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300350
Glen Choo4e335352023-04-10 22:18:50 +0000351 if (!iter) {
352 if (errno == ENOTDIR) {
353 int saved_errno = errno;
354 struct stat st;
355
356 if (!lstat(src->buf, &st) && S_ISLNK(st.st_mode))
357 die(_("'%s' is a symlink, refusing to clone with --local"),
358 src->buf);
359 errno = saved_errno;
360 }
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300361 die_errno(_("failed to start iterator over '%s'"), src->buf);
Glen Choo4e335352023-04-10 22:18:50 +0000362 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400363
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100364 strbuf_addch(src, '/');
365 src_len = src->len;
366 strbuf_addch(dest, '/');
367 dest_len = dest->len;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400368
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300369 while ((iter_status = dir_iterator_advance(iter)) == ITER_OK) {
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100370 strbuf_setlen(src, src_len);
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300371 strbuf_addstr(src, iter->relative_path);
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100372 strbuf_setlen(dest, dest_len);
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300373 strbuf_addstr(dest, iter->relative_path);
374
Taylor Blau6f054f92022-07-28 17:35:17 -0400375 if (S_ISLNK(iter->st.st_mode))
376 die(_("symlink '%s' exists, refusing to clone with --local"),
377 iter->relative_path);
378
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300379 if (S_ISDIR(iter->st.st_mode)) {
380 mkdir_if_missing(dest->buf, 0777);
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700381 continue;
382 }
383
384 /* Files that cannot be copied bit-for-bit... */
Matheus Tavaresc4d9c502019-07-10 20:59:04 -0300385 if (!fspathcmp(iter->relative_path, "info/alternates")) {
Jeff King3c1dce82019-05-09 17:29:22 -0400386 copy_alternates(src, src_repo);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400387 continue;
388 }
389
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100390 if (unlink(dest->buf) && errno != ENOENT)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000391 die_errno(_("failed to unlink '%s'"), dest->buf);
Daniel Barkalowfdabc242008-05-20 14:15:14 -0400392 if (!option_no_hardlinks) {
Patrick Steinhardtd1bb66a2024-04-15 13:30:31 +0200393 if (!link(src->buf, dest->buf)) {
394 struct stat st;
395
396 /*
397 * Sanity-check whether the created hardlink
398 * actually links to the expected file now. This
399 * catches time-of-check-time-of-use bugs in
400 * case the source file was meanwhile swapped.
401 */
402 if (lstat(dest->buf, &st))
403 die(_("hardlink cannot be checked at '%s'"), dest->buf);
404 if (st.st_mode != iter->st.st_mode ||
405 st.st_ino != iter->st.st_ino ||
406 st.st_dev != iter->st.st_dev ||
407 st.st_size != iter->st.st_size ||
408 st.st_uid != iter->st.st_uid ||
409 st.st_gid != iter->st.st_gid)
410 die(_("hardlink different from source at '%s'"), dest->buf);
411
Daniel Barkalowfdabc242008-05-20 14:15:14 -0400412 continue;
Patrick Steinhardtd1bb66a2024-04-15 13:30:31 +0200413 }
Jeff King189260b2012-05-30 07:10:16 -0400414 if (option_local > 0)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000415 die_errno(_("failed to create link '%s'"), dest->buf);
Daniel Barkalowfdabc242008-05-20 14:15:14 -0400416 option_no_hardlinks = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400417 }
Clemens Buchacherf7835a22009-09-12 11:03:48 +0200418 if (copy_file_with_time(dest->buf, src->buf, 0666))
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000419 die_errno(_("failed to copy file to '%s'"), dest->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400420 }
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300421
422 if (iter_status != ITER_DONE) {
423 strbuf_setlen(src, src_len);
424 die(_("failed to iterate over '%s'"), src->buf);
425 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400426}
427
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700428static void clone_local(const char *src_repo, const char *dest_repo)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400429{
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700430 if (option_shared) {
431 struct strbuf alt = STRBUF_INIT;
Eric Sunshineb3b05972017-12-11 18:16:12 -0500432 get_common_dir(&alt, src_repo);
433 strbuf_addstr(&alt, "/objects");
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700434 add_to_alternates_file(alt.buf);
435 strbuf_release(&alt);
436 } else {
437 struct strbuf src = STRBUF_INIT;
438 struct strbuf dest = STRBUF_INIT;
Nguyễn Thái Ngọc Duy744e4692015-09-28 20:06:15 +0700439 get_common_dir(&src, src_repo);
440 get_common_dir(&dest, dest_repo);
441 strbuf_addstr(&src, "/objects");
442 strbuf_addstr(&dest, "/objects");
Matheus Tavaresff7ccc82019-07-10 20:59:03 -0300443 copy_or_link_directory(&src, &dest, src_repo);
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100444 strbuf_release(&src);
445 strbuf_release(&dest);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400446 }
447
Junio C Hamano28ba96a2010-04-23 14:37:22 +0200448 if (0 <= option_verbosity)
Jeff King68b939b2013-09-18 16:05:13 -0400449 fprintf(stderr, _("done.\n"));
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400450}
451
452static const char *junk_work_tree;
Jeff Kingd45420c2018-01-02 16:11:39 -0500453static int junk_work_tree_flags;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400454static const char *junk_git_dir;
Jeff Kingd45420c2018-01-02 16:11:39 -0500455static int junk_git_dir_flags;
Ramsay Jones85064632013-04-27 19:39:04 +0100456static enum {
Jeff Kingd3b34622013-03-26 18:22:09 -0400457 JUNK_LEAVE_NONE,
458 JUNK_LEAVE_REPO,
459 JUNK_LEAVE_ALL
460} junk_mode = JUNK_LEAVE_NONE;
461
462static const char junk_leave_repo_msg[] =
463N_("Clone succeeded, but checkout failed.\n"
464 "You can inspect what was checked out with 'git status'\n"
Nguyễn Thái Ngọc Duy80f537f2019-04-25 16:45:58 +0700465 "and retry with 'git restore --source=HEAD :/'\n");
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400466
467static void remove_junk(void)
468{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500469 struct strbuf sb = STRBUF_INIT;
Jeff Kingd3b34622013-03-26 18:22:09 -0400470
471 switch (junk_mode) {
472 case JUNK_LEAVE_REPO:
473 warning("%s", _(junk_leave_repo_msg));
474 /* fall-through */
475 case JUNK_LEAVE_ALL:
476 return;
477 default:
478 /* proceed to removal */
479 break;
480 }
481
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400482 if (junk_git_dir) {
483 strbuf_addstr(&sb, junk_git_dir);
Jeff Kingd45420c2018-01-02 16:11:39 -0500484 remove_dir_recursively(&sb, junk_git_dir_flags);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400485 strbuf_reset(&sb);
486 }
487 if (junk_work_tree) {
488 strbuf_addstr(&sb, junk_work_tree);
Jeff Kingd45420c2018-01-02 16:11:39 -0500489 remove_dir_recursively(&sb, junk_work_tree_flags);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400490 }
Rene Scharfe9c18b542017-08-30 19:49:37 +0200491 strbuf_release(&sb);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400492}
493
494static void remove_junk_on_signal(int signo)
495{
496 remove_junk();
Jeff King4a16d072009-01-22 01:02:35 -0500497 sigchain_pop(signo);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400498 raise(signo);
499}
500
Nguyễn Thái Ngọc Duy9e585042012-01-16 16:46:13 +0700501static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
502{
503 struct ref *ref;
504 struct strbuf head = STRBUF_INIT;
505 strbuf_addstr(&head, "refs/heads/");
506 strbuf_addstr(&head, branch);
507 ref = find_ref_by_name(refs, head.buf);
508 strbuf_release(&head);
Nguyễn Thái Ngọc Duy5a7d5b62012-01-16 16:46:15 +0700509
510 if (ref)
511 return ref;
512
513 strbuf_addstr(&head, "refs/tags/");
514 strbuf_addstr(&head, branch);
515 ref = find_ref_by_name(refs, head.buf);
516 strbuf_release(&head);
517
Nguyễn Thái Ngọc Duy9e585042012-01-16 16:46:13 +0700518 return ref;
519}
520
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400521static struct ref *wanted_peer_refs(const struct ref *refs,
SZEDER Gábor515be832018-11-14 11:46:19 +0100522 struct refspec *refspec)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400523{
Jeff Kingc1921c12011-06-07 19:03:22 -0400524 struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
525 struct ref *local_refs = head;
526 struct ref **tail = head ? &head->next : &local_refs;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400527
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700528 if (option_single_branch) {
529 struct ref *remote_head = NULL;
530
531 if (!option_branch)
532 remote_head = guess_remote_head(head, refs, 0);
Nguyễn Thái Ngọc Duy0ec4b162012-06-22 16:35:47 +0700533 else {
534 local_refs = NULL;
535 tail = &local_refs;
536 remote_head = copy_ref(find_remote_branch(refs, option_branch));
537 }
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700538
539 if (!remote_head && option_branch)
540 warning(_("Could not find remote branch %s to clone."),
541 option_branch);
Nguyễn Thái Ngọc Duy5a7d5b62012-01-16 16:46:15 +0700542 else {
SZEDER Gábor515be832018-11-14 11:46:19 +0100543 int i;
544 for (i = 0; i < refspec->nr; i++)
545 get_fetch_map(remote_head, &refspec->items[i],
546 &tail, 0);
Nguyễn Thái Ngọc Duy5a7d5b62012-01-16 16:46:15 +0700547
548 /* if --branch=tag, pull the requested tag explicitly */
549 get_fetch_map(remote_head, tag_refspec, &tail, 0);
550 }
Ævar Arnfjörð Bjarmason74a06a92022-07-01 12:42:51 +0200551 free_refs(remote_head);
SZEDER Gábor515be832018-11-14 11:46:19 +0100552 } else {
553 int i;
554 for (i = 0; i < refspec->nr; i++)
555 get_fetch_map(refs, &refspec->items[i], &tail, 0);
556 }
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700557
Ævar Arnfjörð Bjarmason0dab2462017-04-26 23:12:33 +0000558 if (!option_mirror && !option_single_branch && !option_no_tags)
Johannes Schindelin468386a2008-08-08 04:29:35 +0200559 get_fetch_map(refs, tag_refspec, &tail, 0);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400560
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400561 return local_refs;
562}
563
564static void write_remote_refs(const struct ref *local_refs)
565{
566 const struct ref *r;
567
Michael Haggerty58f233c2015-06-22 16:03:01 +0200568 struct ref_transaction *t;
569 struct strbuf err = STRBUF_INIT;
570
571 t = ref_transaction_begin(&err);
572 if (!t)
573 die("%s", err.buf);
Michael Haggerty9f69d292013-06-20 10:37:46 +0200574
Jeff Kingc1921c12011-06-07 19:03:22 -0400575 for (r = local_refs; r; r = r->next) {
576 if (!r->peer_ref)
577 continue;
brian m. carlson89f3bbd2017-10-15 22:06:53 +0000578 if (ref_transaction_create(t, r->peer_ref->name, &r->old_oid,
Michael Haggerty58f233c2015-06-22 16:03:01 +0200579 0, NULL, &err))
580 die("%s", err.buf);
Jeff Kingc1921c12011-06-07 19:03:22 -0400581 }
Johan Herland3e8aded2008-06-15 16:06:16 +0200582
Michael Haggerty58f233c2015-06-22 16:03:01 +0200583 if (initial_ref_transaction_commit(t, &err))
584 die("%s", err.buf);
585
586 strbuf_release(&err);
587 ref_transaction_free(t);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400588}
589
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700590static void write_followtags(const struct ref *refs, const char *msg)
591{
592 const struct ref *ref;
593 for (ref = refs; ref; ref = ref->next) {
Christian Couder59556542013-11-30 21:55:40 +0100594 if (!starts_with(ref->name, "refs/tags/"))
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700595 continue;
Christian Couder59556542013-11-30 21:55:40 +0100596 if (ends_with(ref->name, "^{}"))
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700597 continue;
Ævar Arnfjörð Bjarmasonbc726bd2023-03-28 15:58:50 +0200598 if (!repo_has_object_file_with_flags(the_repository, &ref->old_oid,
599 OBJECT_INFO_QUICK |
600 OBJECT_INFO_SKIP_FETCH_OBJECT))
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700601 continue;
brian m. carlsonae077772017-10-15 22:06:51 +0000602 update_ref(msg, ref->name, &ref->old_oid, NULL, 0,
603 UPDATE_REFS_DIE_ON_ERR);
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700604 }
605}
606
Patrick Steinhardt9fec7b22021-09-01 15:09:50 +0200607static const struct object_id *iterate_ref_map(void *cb_data)
Jeff King0433ad12013-03-25 16:26:27 -0400608{
609 struct ref **rm = cb_data;
610 struct ref *ref = *rm;
611
612 /*
613 * Skip anything missing a peer_ref, which we are not
614 * actually going to write a ref for.
615 */
616 while (ref && !ref->peer_ref)
617 ref = ref->next;
Jeff King0433ad12013-03-25 16:26:27 -0400618 if (!ref)
Patrick Steinhardt9fec7b22021-09-01 15:09:50 +0200619 return NULL;
Jeff King0433ad12013-03-25 16:26:27 -0400620
Jeff King0433ad12013-03-25 16:26:27 -0400621 *rm = ref->next;
Patrick Steinhardt9fec7b22021-09-01 15:09:50 +0200622 return &ref->old_oid;
Jeff King0433ad12013-03-25 16:26:27 -0400623}
624
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700625static void update_remote_refs(const struct ref *refs,
626 const struct ref *mapped_refs,
627 const struct ref *remote_head_points_at,
628 const char *branch_top,
Nguyễn Thái Ngọc Duyc6807a42013-05-26 08:16:17 +0700629 const char *msg,
Junio C Hamano45ed4af2013-07-18 12:48:28 -0700630 struct transport *transport,
Jonathan Tan2b984782020-03-20 15:00:45 -0700631 int check_connectivity)
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700632{
Jeff King0433ad12013-03-25 16:26:27 -0400633 const struct ref *rm = mapped_refs;
634
Jeff King125a05f2013-07-08 03:30:41 -0400635 if (check_connectivity) {
Jeff King7043c702016-07-15 06:30:40 -0400636 struct check_connected_options opt = CHECK_CONNECTED_INIT;
637
638 opt.transport = transport;
Jeff King38e590e2016-07-15 06:33:18 -0400639 opt.progress = transport->progress;
Jeff King7043c702016-07-15 06:30:40 -0400640
Jeff King7043c702016-07-15 06:30:40 -0400641 if (check_connected(iterate_ref_map, &rm, &opt))
Jeff King125a05f2013-07-08 03:30:41 -0400642 die(_("remote did not send all necessary objects"));
643 }
Jeff King0433ad12013-03-25 16:26:27 -0400644
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700645 if (refs) {
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700646 write_remote_refs(mapped_refs);
Ævar Arnfjörð Bjarmason0dab2462017-04-26 23:12:33 +0000647 if (option_single_branch && !option_no_tags)
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700648 write_followtags(refs, msg);
649 }
650
651 if (remote_head_points_at && !option_bare) {
652 struct strbuf head_ref = STRBUF_INIT;
653 strbuf_addstr(&head_ref, branch_top);
654 strbuf_addstr(&head_ref, "HEAD");
Jeff King4be49d72016-01-12 04:57:34 -0500655 if (create_symref(head_ref.buf,
656 remote_head_points_at->peer_ref->name,
657 msg) < 0)
Nguyễn Thái Ngọc Duy39ad4f32016-02-27 13:41:55 +0700658 die(_("unable to update %s"), head_ref.buf);
Jeff King4be49d72016-01-12 04:57:34 -0500659 strbuf_release(&head_ref);
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700660 }
661}
662
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700663static void update_head(const struct ref *our, const struct ref *remote,
Jeff Kingdaf78982022-07-11 05:21:52 -0400664 const char *unborn, const char *msg)
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700665{
Jeff Kingcf4fff52014-06-18 15:44:19 -0400666 const char *head;
667 if (our && skip_prefix(our->name, "refs/heads/", &head)) {
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700668 /* Local default branch link */
Jeff King4be49d72016-01-12 04:57:34 -0500669 if (create_symref("HEAD", our->name, NULL) < 0)
Nguyễn Thái Ngọc Duy39ad4f32016-02-27 13:41:55 +0700670 die(_("unable to update HEAD"));
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700671 if (!option_bare) {
brian m. carlsonae077772017-10-15 22:06:51 +0000672 update_ref(msg, "HEAD", &our->old_oid, NULL, 0,
Michael Haggertyf4124112014-04-07 15:47:56 +0200673 UPDATE_REFS_DIE_ON_ERR);
Sean Barag75ca3902020-10-01 03:46:15 +0000674 install_branch_config(0, head, remote_name, our->name);
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700675 }
Nguyễn Thái Ngọc Duy5a7d5b62012-01-16 16:46:15 +0700676 } else if (our) {
Stefan Beller2122f672018-06-28 18:21:58 -0700677 struct commit *c = lookup_commit_reference(the_repository,
678 &our->old_oid);
Nguyễn Thái Ngọc Duy5a7d5b62012-01-16 16:46:15 +0700679 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
Michael Haggerty91774af2017-11-05 09:42:06 +0100680 update_ref(msg, "HEAD", &c->object.oid, NULL, REF_NO_DEREF,
brian m. carlsonae077772017-10-15 22:06:51 +0000681 UPDATE_REFS_DIE_ON_ERR);
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700682 } else if (remote) {
683 /*
684 * We know remote HEAD points to a non-branch, or
Nguyễn Thái Ngọc Duy920b6912012-01-16 16:46:14 +0700685 * HEAD points to a branch but we don't know which one.
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700686 * Detach HEAD in all these cases.
687 */
Michael Haggerty91774af2017-11-05 09:42:06 +0100688 update_ref(msg, "HEAD", &remote->old_oid, NULL, REF_NO_DEREF,
brian m. carlsonae077772017-10-15 22:06:51 +0000689 UPDATE_REFS_DIE_ON_ERR);
Jeff Kingdaf78982022-07-11 05:21:52 -0400690 } else if (unborn && skip_prefix(unborn, "refs/heads/", &head)) {
691 /*
692 * Unborn head from remote; same as "our" case above except
693 * that we have no ref to update.
694 */
695 if (create_symref("HEAD", unborn, NULL) < 0)
696 die(_("unable to update HEAD"));
697 if (!option_bare)
698 install_branch_config(0, head, remote_name, unborn);
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700699 }
700}
701
Derrick Stoleed89f09c2019-11-21 22:04:35 +0000702static int git_sparse_checkout_init(const char *repo)
703{
René Scharfe0e906732022-10-30 12:51:14 +0100704 struct child_process cmd = CHILD_PROCESS_INIT;
Derrick Stoleed89f09c2019-11-21 22:04:35 +0000705 int result = 0;
René Scharfe0e906732022-10-30 12:51:14 +0100706 strvec_pushl(&cmd.args, "-C", repo, "sparse-checkout", "set", NULL);
Derrick Stoleed89f09c2019-11-21 22:04:35 +0000707
708 /*
709 * We must apply the setting in the current process
710 * for the later checkout to use the sparse-checkout file.
711 */
712 core_apply_sparse_checkout = 1;
713
René Scharfe0e906732022-10-30 12:51:14 +0100714 cmd.git_cmd = 1;
715 if (run_command(&cmd)) {
Derrick Stoleed89f09c2019-11-21 22:04:35 +0000716 error(_("failed to initialize sparse-checkout"));
717 result = 1;
718 }
719
Derrick Stoleed89f09c2019-11-21 22:04:35 +0000720 return result;
721}
722
Josh Steadmonf05da2b2022-02-04 21:00:49 -0800723static int checkout(int submodule_progress, int filter_submodules)
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700724{
brian m. carlsonddc2cc62017-02-21 23:47:27 +0000725 struct object_id oid;
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700726 char *head;
Martin Ågren837e34e2017-10-05 22:32:04 +0200727 struct lock_file lock_file = LOCK_INIT;
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700728 struct unpack_trees_options opts;
729 struct tree *tree;
730 struct tree_desc t;
Nguyễn Thái Ngọc Duy03b86642014-06-13 19:19:23 +0700731 int err = 0;
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700732
733 if (option_no_checkout)
734 return 0;
735
brian m. carlson0f2dc722017-10-15 22:06:55 +0000736 head = resolve_refdup("HEAD", RESOLVE_REF_READING, &oid, NULL);
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700737 if (!head) {
738 warning(_("remote HEAD refers to nonexistent ref, "
Jeff Kingf77710c2022-07-07 19:54:51 -0400739 "unable to checkout"));
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700740 return 0;
741 }
Nguyễn Thái Ngọc Duy28570932012-01-16 16:46:16 +0700742 if (!strcmp(head, "HEAD")) {
Ben Boeckeled9bff02021-08-23 12:44:00 +0200743 if (advice_enabled(ADVICE_DETACHED_HEAD))
brian m. carlsonddc2cc62017-02-21 23:47:27 +0000744 detach_advice(oid_to_hex(&oid));
brian m. carlsondfc8cdc2020-03-16 18:05:05 +0000745 FREE_AND_NULL(head);
Nguyễn Thái Ngọc Duy28570932012-01-16 16:46:16 +0700746 } else {
Christian Couder59556542013-11-30 21:55:40 +0100747 if (!starts_with(head, "refs/heads/"))
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700748 die(_("HEAD not found below refs/heads!"));
749 }
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700750
751 /* We need to be in the new work tree for the checkout */
752 setup_work_tree();
753
Ævar Arnfjörð Bjarmason07047d62022-11-19 14:07:38 +0100754 repo_hold_locked_index(the_repository, &lock_file, LOCK_DIE_ON_ERROR);
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700755
756 memset(&opts, 0, sizeof opts);
757 opts.update = 1;
758 opts.merge = 1;
Duy Nguyenb8785792018-08-17 20:00:39 +0200759 opts.clone = 1;
Elijah Newren1b5f3732021-09-27 16:33:43 +0000760 opts.preserve_ignored = 0;
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700761 opts.fn = oneway_merge;
Junio C Hamano8f63da12012-05-07 12:35:36 -0700762 opts.verbose_update = (option_verbosity >= 0);
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700763 opts.src_index = &the_index;
764 opts.dst_index = &the_index;
brian m. carlsondfc8cdc2020-03-16 18:05:05 +0000765 init_checkout_metadata(&opts.meta, head, &oid, NULL);
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700766
brian m. carlsona9dbc172017-05-06 22:10:37 +0000767 tree = parse_tree_indirect(&oid);
Glen Choo8d2eaf62022-03-01 16:36:13 -0800768 if (!tree)
769 die(_("unable to parse commit %s"), oid_to_hex(&oid));
Johannes Schindelinaa9f6182024-02-23 08:34:23 +0000770 if (parse_tree(tree) < 0)
771 exit(128);
Eric W. Biedermanefed6872023-10-01 21:40:28 -0500772 init_tree_desc(&t, &tree->object.oid, tree->buffer, tree->size);
Jeff King0aac7bb2013-03-25 16:23:59 -0400773 if (unpack_trees(1, &t, &opts) < 0)
774 die(_("unable to checkout working tree"));
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700775
brian m. carlsondfc8cdc2020-03-16 18:05:05 +0000776 free(head);
777
Martin Ågren837e34e2017-10-05 22:32:04 +0200778 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700779 die(_("unable to write new index file"));
780
Emily Shaffer72ddf342021-12-22 04:59:35 +0100781 err |= run_hooks_l("post-checkout", oid_to_hex(null_oid()),
brian m. carlsonddc2cc62017-02-21 23:47:27 +0000782 oid_to_hex(&oid), "1", NULL);
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700783
Brandon Williamsbb62e0a2017-03-17 15:38:03 -0700784 if (!err && (option_recurse_submodules.nr > 0)) {
René Scharfe0e906732022-10-30 12:51:14 +0100785 struct child_process cmd = CHILD_PROCESS_INIT;
786 strvec_pushl(&cmd.args, "submodule", "update", "--require-init",
787 "--recursive", NULL);
Stefan Beller72290d62016-02-29 18:07:20 -0800788
Junio C Hamano18a74a02016-06-19 13:51:56 -0700789 if (option_shallow_submodules == 1)
René Scharfe0e906732022-10-30 12:51:14 +0100790 strvec_push(&cmd.args, "--depth=1");
Stefan Bellerd22eb042016-04-25 18:12:27 -0700791
Stefan Beller72290d62016-02-29 18:07:20 -0800792 if (max_jobs != -1)
René Scharfe0e906732022-10-30 12:51:14 +0100793 strvec_pushf(&cmd.args, "--jobs=%d", max_jobs);
Stefan Beller72290d62016-02-29 18:07:20 -0800794
Jeff King72c5f882016-09-22 01:24:46 -0400795 if (submodule_progress)
René Scharfe0e906732022-10-30 12:51:14 +0100796 strvec_push(&cmd.args, "--progress");
Jeff King72c5f882016-09-22 01:24:46 -0400797
Brandon Williams03c004c2017-08-03 15:25:44 -0700798 if (option_verbosity < 0)
René Scharfe0e906732022-10-30 12:51:14 +0100799 strvec_push(&cmd.args, "--quiet");
Brandon Williams03c004c2017-08-03 15:25:44 -0700800
Ben Avison4c691012019-05-19 15:26:49 +0100801 if (option_remote_submodules) {
René Scharfe0e906732022-10-30 12:51:14 +0100802 strvec_push(&cmd.args, "--remote");
803 strvec_push(&cmd.args, "--no-fetch");
Ben Avison4c691012019-05-19 15:26:49 +0100804 }
805
Josh Steadmonf05da2b2022-02-04 21:00:49 -0800806 if (filter_submodules && filter_options.choice)
René Scharfe0e906732022-10-30 12:51:14 +0100807 strvec_pushf(&cmd.args, "--filter=%s",
Josh Steadmonf05da2b2022-02-04 21:00:49 -0800808 expand_list_objects_filter_spec(&filter_options));
809
Emily Shaffer132f6002020-02-20 19:10:27 -0800810 if (option_single_branch >= 0)
René Scharfe0e906732022-10-30 12:51:14 +0100811 strvec_push(&cmd.args, option_single_branch ?
Emily Shaffer132f6002020-02-20 19:10:27 -0800812 "--single-branch" :
813 "--no-single-branch");
814
René Scharfe0e906732022-10-30 12:51:14 +0100815 cmd.git_cmd = 1;
816 err = run_command(&cmd);
Stefan Beller72290d62016-02-29 18:07:20 -0800817 }
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700818
819 return err;
820}
821
Glen Chooa4e7e312023-06-28 19:26:22 +0000822static int git_clone_config(const char *k, const char *v,
823 const struct config_context *ctx, void *cb)
Sean Barag552955e2020-10-01 03:46:11 +0000824{
Sean Baragde9ed3e2020-10-01 03:46:16 +0000825 if (!strcmp(k, "clone.defaultremotename")) {
Jeff Kingba176db2023-12-07 02:11:14 -0500826 if (!v)
827 return config_error_nonbool(k);
Sean Baragde9ed3e2020-10-01 03:46:16 +0000828 free(remote_name);
829 remote_name = xstrdup(v);
830 }
Li Linchao4fe788b2021-04-01 10:46:59 +0000831 if (!strcmp(k, "clone.rejectshallow"))
832 config_reject_shallow = git_config_bool(k, v);
Josh Steadmonf05da2b2022-02-04 21:00:49 -0800833 if (!strcmp(k, "clone.filtersubmodules"))
834 config_filter_submodules = git_config_bool(k, v);
Li Linchao4fe788b2021-04-01 10:46:59 +0000835
Glen Chooa4e7e312023-06-28 19:26:22 +0000836 return git_default_config(k, v, ctx, cb);
Sean Barag552955e2020-10-01 03:46:11 +0000837}
838
Glen Chooa4e7e312023-06-28 19:26:22 +0000839static int write_one_config(const char *key, const char *value,
840 const struct config_context *ctx,
841 void *data)
Jeff King84054f72011-06-09 16:56:19 -0400842{
Sean Barag552955e2020-10-01 03:46:11 +0000843 /*
844 * give git_clone_config a chance to write config values back to the
845 * environment, since git_config_set_multivar_gently only deals with
846 * config-file writes
847 */
Glen Chooa4e7e312023-06-28 19:26:22 +0000848 int apply_failed = git_clone_config(key, value, ctx, data);
Sean Barag552955e2020-10-01 03:46:11 +0000849 if (apply_failed)
850 return apply_failed;
851
Jonathan Niederdb4eca12017-05-01 17:05:15 -0700852 return git_config_set_multivar_gently(key,
853 value ? value : "true",
854 CONFIG_REGEX_NONE, 0);
Jeff King84054f72011-06-09 16:56:19 -0400855}
856
857static void write_config(struct string_list *config)
858{
859 int i;
860
861 for (i = 0; i < config->nr; i++) {
862 if (git_config_parse_parameter(config->items[i].string,
863 write_one_config, NULL) < 0)
Nguyễn Thái Ngọc Duy39ad4f32016-02-27 13:41:55 +0700864 die(_("unable to write parameters to config file"));
Jeff King84054f72011-06-09 16:56:19 -0400865 }
866}
867
David Aguilar24d36f12014-08-31 13:11:31 -0700868static void write_refspec_config(const char *src_ref_prefix,
869 const struct ref *our_head_points_at,
870 const struct ref *remote_head_points_at,
871 struct strbuf *branch_top)
Ralf Thielow31b808a2012-09-20 20:04:08 +0200872{
873 struct strbuf key = STRBUF_INIT;
874 struct strbuf value = STRBUF_INIT;
875
876 if (option_mirror || !option_bare) {
877 if (option_single_branch && !option_mirror) {
878 if (option_branch) {
Junio C Hamano60a5f5f2014-06-23 14:27:36 -0700879 if (starts_with(our_head_points_at->name, "refs/tags/"))
Ralf Thielow31b808a2012-09-20 20:04:08 +0200880 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
881 our_head_points_at->name);
882 else
883 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
884 branch_top->buf, option_branch);
885 } else if (remote_head_points_at) {
Jeff Kingcf4fff52014-06-18 15:44:19 -0400886 const char *head = remote_head_points_at->name;
887 if (!skip_prefix(head, "refs/heads/", &head))
Johannes Schindelin033abf92018-05-02 11:38:39 +0200888 BUG("remote HEAD points at non-head?");
Jeff Kingcf4fff52014-06-18 15:44:19 -0400889
Ralf Thielow31b808a2012-09-20 20:04:08 +0200890 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
Jeff Kingcf4fff52014-06-18 15:44:19 -0400891 branch_top->buf, head);
Ralf Thielow31b808a2012-09-20 20:04:08 +0200892 }
893 /*
894 * otherwise, the next "git fetch" will
895 * simply fetch from HEAD without updating
Michael Schubertd6ac1d22013-07-03 11:12:34 +0200896 * any remote-tracking branch, which is what
Ralf Thielow31b808a2012-09-20 20:04:08 +0200897 * we want.
898 */
899 } else {
900 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
901 }
902 /* Configure the remote */
903 if (value.len) {
Sean Barag75ca3902020-10-01 03:46:15 +0000904 strbuf_addf(&key, "remote.%s.fetch", remote_name);
Ralf Thielow31b808a2012-09-20 20:04:08 +0200905 git_config_set_multivar(key.buf, value.buf, "^$", 0);
906 strbuf_reset(&key);
907
908 if (option_mirror) {
Sean Barag75ca3902020-10-01 03:46:15 +0000909 strbuf_addf(&key, "remote.%s.mirror", remote_name);
Ralf Thielow31b808a2012-09-20 20:04:08 +0200910 git_config_set(key.buf, "true");
911 strbuf_reset(&key);
912 }
913 }
914 }
915
916 strbuf_release(&key);
917 strbuf_release(&value);
918}
919
Junio C Hamanofb1d6da2014-10-14 12:38:52 -0700920static void dissociate_from_references(void)
921{
Alex Riesen01816812015-10-22 18:41:17 +0200922 char *alternates = git_pathdup("objects/info/alternates");
Junio C Hamanofb1d6da2014-10-14 12:38:52 -0700923
Alex Riesen01816812015-10-22 18:41:17 +0200924 if (!access(alternates, F_OK)) {
René Scharfeddbb47f2022-10-30 12:55:06 +0100925 struct child_process cmd = CHILD_PROCESS_INIT;
926
927 cmd.git_cmd = 1;
928 cmd.no_stdin = 1;
929 strvec_pushl(&cmd.args, "repack", "-a", "-d", NULL);
930 if (run_command(&cmd))
Alex Riesen01816812015-10-22 18:41:17 +0200931 die(_("cannot repack to clean up"));
932 if (unlink(alternates) && errno != ENOENT)
933 die_errno(_("cannot unlink temporary alternates file"));
934 }
935 free(alternates);
Junio C Hamanofb1d6da2014-10-14 12:38:52 -0700936}
937
Miriam Rubio6c020422019-10-28 17:55:23 +0100938static int path_exists(const char *path)
Jeff Kingf9e377a2018-01-02 16:10:14 -0500939{
940 struct stat sb;
941 return !stat(path, &sb);
942}
943
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400944int cmd_clone(int argc, const char **argv, const char *prefix)
945{
Nguyễn Thái Ngọc Duy24c61c42010-08-23 22:08:22 +1000946 int is_bundle = 0, is_local;
Li Linchao4fe788b2021-04-01 10:46:59 +0000947 int reject_shallow = 0;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400948 const char *repo_name, *repo, *work_tree, *git_dir;
Ævar Arnfjörð Bjarmason81e5c392023-02-07 00:07:39 +0100949 char *repo_to_free = NULL;
Andrzej Hunt0c454272021-03-14 18:47:36 +0000950 char *path = NULL, *dir, *display_repo = NULL;
Ben Wijendfaa2092020-07-10 10:47:32 +0200951 int dest_exists, real_dest_exists = 0;
Daniel Barkalow37148312009-11-18 02:42:24 +0100952 const struct ref *refs, *remote_head;
Andrzej Hunt0c454272021-03-14 18:47:36 +0000953 struct ref *remote_head_points_at = NULL;
Jeff King7a4ee282009-08-26 15:05:08 -0400954 const struct ref *our_head_points_at;
Jeff Kingdaf78982022-07-11 05:21:52 -0400955 char *unborn_head = NULL;
Jonathan Tandccea602022-01-24 10:09:09 -0800956 struct ref *mapped_refs = NULL;
Nguyễn Thái Ngọc Duy90498162012-01-24 18:10:38 +0700957 const struct ref *ref;
SZEDER Gábor3e42cb32018-11-14 11:46:18 +0100958 struct strbuf key = STRBUF_INIT;
Patrick Steinhardt199f44c2024-02-27 15:27:44 +0100959 struct strbuf buf = STRBUF_INIT;
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100960 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
Shawn O. Pearce1db4a752008-07-08 04:46:06 +0000961 struct transport *transport = NULL;
Nguyễn Thái Ngọc Duy9e585042012-01-16 16:46:13 +0700962 const char *src_ref_prefix = "refs/heads/";
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700963 struct remote *remote;
Nguyễn Thái Ngọc Duy90498162012-01-24 18:10:38 +0700964 int err = 0, complete_refs_before_fetch = 1;
Jeff King72c5f882016-09-22 01:24:46 -0400965 int submodule_progress;
Josh Steadmonf05da2b2022-02-04 21:00:49 -0800966 int filter_submodules = 0;
Junio C Hamano8b214c22023-04-05 14:15:33 -0700967 int hash_algo;
Patrick Steinhardt5ed860f2023-12-29 08:27:09 +0100968 unsigned int ref_storage_format = REF_STORAGE_FORMAT_UNKNOWN;
Elijah Newrenfc817352023-05-16 06:33:43 +0000969 const int do_not_override_repo_unix_permissions = -1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400970
Jonathan Tan39835402021-02-05 12:48:48 -0800971 struct transport_ls_refs_options transport_ls_refs_options =
972 TRANSPORT_LS_REFS_OPTIONS_INIT;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400973
Jeff Kingbbc30f92011-02-24 09:30:19 -0500974 packet_trace_identity("clone");
Sean Barag552955e2020-10-01 03:46:11 +0000975
976 git_config(git_clone_config, NULL);
977
Stephen Boyd37782922009-05-23 11:53:12 -0700978 argc = parse_options(argc, argv, prefix, builtin_clone_options,
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400979 builtin_clone_usage, 0);
980
Jonathan Niederd52dc4b2009-10-29 03:10:30 -0500981 if (argc > 2)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000982 usage_msg_opt(_("Too many arguments."),
Jonathan Niederd52dc4b2009-10-29 03:10:30 -0500983 builtin_clone_usage, builtin_clone_options);
984
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400985 if (argc == 0)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000986 usage_msg_opt(_("You must specify a repository to clone."),
Jonathan Niederd52dc4b2009-10-29 03:10:30 -0500987 builtin_clone_usage, builtin_clone_options);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400988
Nguyễn Thái Ngọc Duy859e5df2016-06-12 17:54:05 +0700989 if (option_depth || option_since || option_not.nr)
Nguyễn Thái Ngọc Duy994c2aa2016-06-12 17:54:00 +0700990 deepen = 1;
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700991 if (option_single_branch == -1)
Nguyễn Thái Ngọc Duy994c2aa2016-06-12 17:54:00 +0700992 option_single_branch = deepen ? 1 : 0;
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700993
Patrick Steinhardt5ed860f2023-12-29 08:27:09 +0100994 if (ref_format) {
995 ref_storage_format = ref_storage_format_by_name(ref_format);
996 if (ref_storage_format == REF_STORAGE_FORMAT_UNKNOWN)
997 die(_("unknown ref storage format '%s'"), ref_format);
998 }
999
Johannes Schindelinbc699af2008-08-02 21:38:56 +02001000 if (option_mirror)
1001 option_bare = 1;
1002
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001003 if (option_bare) {
Nguyễn Thái Ngọc Duy95b63f12013-01-11 10:09:59 +07001004 if (real_git_dir)
Jean-Noël Avila12909b62022-01-05 20:02:16 +00001005 die(_("options '%s' and '%s' cannot be used together"), "--bare", "--separate-git-dir");
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001006 option_no_checkout = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001007 }
1008
Derrick Stoleee21e6632022-08-09 13:11:43 +00001009 if (bundle_uri && deepen)
René Scharfe7854bf42023-11-26 12:57:43 +01001010 die(_("options '%s' and '%s' cannot be used together"),
1011 "--bundle-uri",
1012 "--depth/--shallow-since/--shallow-exclude");
Derrick Stoleee21e6632022-08-09 13:11:43 +00001013
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001014 repo_name = argv[0];
1015
1016 path = get_repo_path(repo_name, &is_bundle);
Andrzej Hunt0c454272021-03-14 18:47:36 +00001017 if (path) {
1018 FREE_AND_NULL(path);
Ævar Arnfjörð Bjarmason81e5c392023-02-07 00:07:39 +01001019 repo = repo_to_free = absolute_pathdup(repo_name);
Andrzej Hunt0c454272021-03-14 18:47:36 +00001020 } else if (strchr(repo_name, ':')) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001021 repo = repo_name;
Johannes Schindelin46da2952020-06-04 20:08:29 +00001022 display_repo = transport_anonymize_url(repo);
1023 } else
1024 die(_("repository '%s' does not exist"), repo_name);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001025
Nguyễn Thái Ngọc Duy5594bca2013-12-05 10:31:11 +07001026 /* no need to be strict, transport_set_option() will validate it again */
1027 if (option_depth && atoi(option_depth) < 1)
1028 die(_("depth %s is not a positive number"), option_depth);
1029
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001030 if (argc == 2)
1031 dir = xstrdup(argv[1]);
1032 else
Atharva Raykared863012021-08-10 17:16:36 +05301033 dir = git_url_basename(repo_name, is_bundle, option_bare);
1034 strip_dir_trailing_slashes(dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001035
Miriam Rubio6c020422019-10-28 17:55:23 +01001036 dest_exists = path_exists(dir);
Alexander Potashev55892d22009-01-11 15:19:12 +03001037 if (dest_exists && !is_empty_dir(dir))
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +00001038 die(_("destination path '%s' already exists and is not "
1039 "an empty directory."), dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001040
Ben Wijendfaa2092020-07-10 10:47:32 +02001041 if (real_git_dir) {
1042 real_dest_exists = path_exists(real_git_dir);
1043 if (real_dest_exists && !is_empty_dir(real_git_dir))
1044 die(_("repository path '%s' already exists and is not "
1045 "an empty directory."), real_git_dir);
1046 }
1047
1048
Johannes Schindelin46da2952020-06-04 20:08:29 +00001049 strbuf_addf(&reflog_msg, "clone: from %s",
1050 display_repo ? display_repo : repo);
1051 free(display_repo);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001052
1053 if (option_bare)
1054 work_tree = NULL;
1055 else {
1056 work_tree = getenv("GIT_WORK_TREE");
Miriam Rubio6c020422019-10-28 17:55:23 +01001057 if (work_tree && path_exists(work_tree))
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +00001058 die(_("working tree '%s' already exists."), work_tree);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001059 }
1060
1061 if (option_bare || work_tree)
1062 git_dir = xstrdup(dir);
1063 else {
1064 work_tree = dir;
Ramsay Jones4e2d0942012-09-04 18:31:14 +01001065 git_dir = mkpathdup("%s/.git", dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001066 }
1067
Jeff Kingee0e3872015-03-18 14:55:32 -04001068 atexit(remove_junk);
1069 sigchain_push_common(remove_junk_on_signal);
1070
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001071 if (!option_bare) {
Jeff King8e21d632008-06-25 01:41:34 -04001072 if (safe_create_leading_directories_const(work_tree) < 0)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +00001073 die_errno(_("could not create leading directories of '%s'"),
Thomas Rastd824cbb2009-06-27 17:58:46 +02001074 work_tree);
Jeff Kingd45420c2018-01-02 16:11:39 -05001075 if (dest_exists)
1076 junk_work_tree_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1077 else if (mkdir(work_tree, 0777))
Jeff King16eff6c2015-03-18 15:02:01 -04001078 die_errno(_("could not create work tree dir '%s'"),
Thomas Rastd824cbb2009-06-27 17:58:46 +02001079 work_tree);
Jeff Kingee0e3872015-03-18 14:55:32 -04001080 junk_work_tree = work_tree;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001081 set_git_work_tree(work_tree);
1082 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001083
Jeff Kingd45420c2018-01-02 16:11:39 -05001084 if (real_git_dir) {
Ben Wijendfaa2092020-07-10 10:47:32 +02001085 if (real_dest_exists)
Jeff Kingd45420c2018-01-02 16:11:39 -05001086 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1087 junk_git_dir = real_git_dir;
1088 } else {
1089 if (dest_exists)
1090 junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL;
1091 junk_git_dir = git_dir;
1092 }
Jeff King8e21d632008-06-25 01:41:34 -04001093 if (safe_create_leading_directories_const(git_dir) < 0)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +00001094 die(_("could not create leading directories of '%s'"), git_dir);
Nguyễn Thái Ngọc Duyb57fb802011-03-19 22:16:56 +07001095
Ævar Arnfjörð Bjarmason3781fcc2011-02-22 23:41:27 +00001096 if (0 <= option_verbosity) {
1097 if (option_bare)
Jeff King68b939b2013-09-18 16:05:13 -04001098 fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
Ævar Arnfjörð Bjarmason3781fcc2011-02-22 23:41:27 +00001099 else
Jeff King68b939b2013-09-18 16:05:13 -04001100 fprintf(stderr, _("Cloning into '%s'...\n"), dir);
Ævar Arnfjörð Bjarmason3781fcc2011-02-22 23:41:27 +00001101 }
Stefan Beller31224cb2016-08-17 15:45:35 -07001102
Brandon Williamsbb62e0a2017-03-17 15:38:03 -07001103 if (option_recurse_submodules.nr > 0) {
1104 struct string_list_item *item;
1105 struct strbuf sb = STRBUF_INIT;
Mahi Kolla48072e32021-08-14 01:09:56 +00001106 int val;
Brandon Williamsbb62e0a2017-03-17 15:38:03 -07001107
1108 /* remove duplicates */
1109 string_list_sort(&option_recurse_submodules);
1110 string_list_remove_duplicates(&option_recurse_submodules, 0);
1111
1112 /*
1113 * NEEDSWORK: In a multi-working-tree world, this needs to be
1114 * set in the per-worktree config.
1115 */
1116 for_each_string_list_item(item, &option_recurse_submodules) {
1117 strbuf_addf(&sb, "submodule.active=%s",
1118 item->string);
1119 string_list_append(&option_config,
1120 strbuf_detach(&sb, NULL));
1121 }
1122
Mahi Kolla48072e32021-08-14 01:09:56 +00001123 if (!git_config_get_bool("submodule.stickyRecursiveClone", &val) &&
1124 val)
1125 string_list_append(&option_config, "submodule.recurse=true");
1126
Stefan Beller31224cb2016-08-17 15:45:35 -07001127 if (option_required_reference.nr &&
1128 option_optional_reference.nr)
1129 die(_("clone --recursive is not compatible with "
1130 "both --reference and --reference-if-able"));
1131 else if (option_required_reference.nr) {
1132 string_list_append(&option_config,
1133 "submodule.alternateLocation=superproject");
1134 string_list_append(&option_config,
1135 "submodule.alternateErrorStrategy=die");
1136 } else if (option_optional_reference.nr) {
1137 string_list_append(&option_config,
1138 "submodule.alternateLocation=superproject");
1139 string_list_append(&option_config,
1140 "submodule.alternateErrorStrategy=info");
1141 }
1142 }
1143
Patrick Steinhardt18c9cb72023-12-12 08:01:07 +01001144 /*
1145 * Initialize the repository, but skip initializing the reference
1146 * database. We do not yet know about the object format of the
1147 * repository, and reference backends may persist that information into
1148 * their on-disk data structures.
1149 */
Junio C Hamano863c0ed2024-05-24 16:58:35 -07001150 init_db(git_dir, real_git_dir, option_template, GIT_HASH_UNKNOWN,
Patrick Steinhardt5ed860f2023-12-29 08:27:09 +01001151 ref_storage_format, NULL,
Patrick Steinhardt18c9cb72023-12-12 08:01:07 +01001152 do_not_override_repo_unix_permissions, INIT_DB_QUIET | INIT_DB_SKIP_REFDB);
Nguyễn Thái Ngọc Duy33158702016-09-25 10:14:37 +07001153
Ævar Arnfjörð Bjarmason27ff1fb2021-10-22 10:55:42 +02001154 if (real_git_dir) {
1155 free((char *)git_dir);
Nguyễn Thái Ngọc Duy33158702016-09-25 10:14:37 +07001156 git_dir = real_git_dir;
Ævar Arnfjörð Bjarmason27ff1fb2021-10-22 10:55:42 +02001157 }
Nguyễn Thái Ngọc Duy33158702016-09-25 10:14:37 +07001158
Sean Barag552955e2020-10-01 03:46:11 +00001159 /*
Patrick Steinhardt199f44c2024-02-27 15:27:44 +01001160 * We have a chicken-and-egg situation between initializing the refdb
1161 * and spawning transport helpers:
1162 *
1163 * - Initializing the refdb requires us to know about the object
1164 * format. We thus have to spawn the transport helper to learn
1165 * about it.
1166 *
1167 * - The transport helper may want to access the Git repository. But
1168 * because the refdb has not been initialized, we don't have "HEAD"
1169 * or "refs/". Thus, the helper cannot find the Git repository.
1170 *
1171 * Ideally, we would have structured the helper protocol such that it's
1172 * mandatory for the helper to first announce its capabilities without
1173 * yet assuming a fully initialized repository. Like that, we could
1174 * have added a "lazy-refdb-init" capability that announces whether the
1175 * helper is ready to handle not-yet-initialized refdbs. If any helper
1176 * didn't support them, we would have fully initialized the refdb with
1177 * the SHA1 object format, but later on bailed out if we found out that
1178 * the remote repository used a different object format.
1179 *
1180 * But we didn't, and thus we use the following workaround to partially
1181 * initialize the repository's refdb such that it can be discovered by
1182 * Git commands. To do so, we:
1183 *
1184 * - Create an invalid HEAD ref pointing at "refs/heads/.invalid".
1185 *
1186 * - Create the "refs/" directory.
1187 *
1188 * - Set up the ref storage format and repository version as
1189 * required.
1190 *
1191 * This is sufficient for Git commands to discover the Git directory.
1192 */
1193 initialize_repository_version(GIT_HASH_UNKNOWN,
1194 the_repository->ref_storage_format, 1);
1195
1196 strbuf_addf(&buf, "%s/HEAD", git_dir);
1197 write_file(buf.buf, "ref: refs/heads/.invalid");
1198
1199 strbuf_reset(&buf);
1200 strbuf_addf(&buf, "%s/refs", git_dir);
1201 safe_create_dir(buf.buf, 1);
1202
1203 /*
Sean Barag552955e2020-10-01 03:46:11 +00001204 * additional config can be injected with -c, make sure it's included
1205 * after init_db, which clears the entire config environment.
1206 */
Jeff King84054f72011-06-09 16:56:19 -04001207 write_config(&option_config);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001208
Sean Barag552955e2020-10-01 03:46:11 +00001209 /*
1210 * re-read config after init_db and write_config to pick up any config
1211 * injected by --template and --config, respectively.
1212 */
1213 git_config(git_clone_config, NULL);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001214
Sean Baragde9ed3e2020-10-01 03:46:16 +00001215 /*
Li Linchao4fe788b2021-04-01 10:46:59 +00001216 * If option_reject_shallow is specified from CLI option,
1217 * ignore config_reject_shallow from git_clone_config.
1218 */
1219 if (config_reject_shallow != -1)
1220 reject_shallow = config_reject_shallow;
1221 if (option_reject_shallow != -1)
1222 reject_shallow = option_reject_shallow;
1223
1224 /*
Josh Steadmonf05da2b2022-02-04 21:00:49 -08001225 * If option_filter_submodules is specified from CLI option,
1226 * ignore config_filter_submodules from git_clone_config.
1227 */
1228 if (config_filter_submodules != -1)
1229 filter_submodules = config_filter_submodules;
1230 if (option_filter_submodules != -1)
1231 filter_submodules = option_filter_submodules;
1232
1233 /*
1234 * Exit if the user seems to be doing something silly with submodule
1235 * filter flags (but not with filter configs, as those should be
1236 * set-and-forget).
1237 */
1238 if (option_filter_submodules > 0 && !filter_options.choice)
1239 die(_("the option '%s' requires '%s'"),
1240 "--also-filter-submodules", "--filter");
1241 if (option_filter_submodules > 0 && !option_recurse_submodules.nr)
1242 die(_("the option '%s' requires '%s'"),
1243 "--also-filter-submodules", "--recurse-submodules");
1244
1245 /*
Sean Baragde9ed3e2020-10-01 03:46:16 +00001246 * apply the remote name provided by --origin only after this second
1247 * call to git_config, to ensure it overrides all config-based values.
1248 */
Junio C Hamano538dc452022-05-20 15:26:59 -07001249 if (option_origin) {
Junio C Hamano6dfadc82022-04-30 22:17:15 -07001250 free(remote_name);
Sean Baragde9ed3e2020-10-01 03:46:16 +00001251 remote_name = xstrdup(option_origin);
Junio C Hamano6dfadc82022-04-30 22:17:15 -07001252 }
Sean Baragde9ed3e2020-10-01 03:46:16 +00001253
Junio C Hamanoafe8a902022-05-02 09:50:37 -07001254 if (!remote_name)
Sean Baragde9ed3e2020-10-01 03:46:16 +00001255 remote_name = xstrdup("origin");
1256
1257 if (!valid_remote_name(remote_name))
1258 die(_("'%s' is not a valid remote name"), remote_name);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001259
1260 if (option_bare) {
Johannes Schindelinbc699af2008-08-02 21:38:56 +02001261 if (option_mirror)
1262 src_ref_prefix = "refs/";
Miklos Vajnab5ff37a2008-11-21 01:45:01 +01001263 strbuf_addstr(&branch_top, src_ref_prefix);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001264
1265 git_config_set("core.bare", "true");
1266 } else {
Sean Barag75ca3902020-10-01 03:46:15 +00001267 strbuf_addf(&branch_top, "refs/remotes/%s/", remote_name);
Johannes Schindelinbc699af2008-08-02 21:38:56 +02001268 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001269
Sean Barag75ca3902020-10-01 03:46:15 +00001270 strbuf_addf(&key, "remote.%s.url", remote_name);
Sverre Rabbelierdf61c882010-03-29 11:48:24 -05001271 git_config_set(key.buf, repo);
1272 strbuf_reset(&key);
1273
Ævar Arnfjörð Bjarmason0dab2462017-04-26 23:12:33 +00001274 if (option_no_tags) {
Sean Barag75ca3902020-10-01 03:46:15 +00001275 strbuf_addf(&key, "remote.%s.tagOpt", remote_name);
Ævar Arnfjörð Bjarmason0dab2462017-04-26 23:12:33 +00001276 git_config_set(key.buf, "--no-tags");
1277 strbuf_reset(&key);
1278 }
1279
Stefan Bellerf7415b42016-08-15 14:53:26 -07001280 if (option_required_reference.nr || option_optional_reference.nr)
Junio C Hamanodbc92b02011-08-22 18:05:15 -07001281 setup_reference();
Sverre Rabbelier766ac6a2010-03-29 11:48:23 -05001282
Patrick Steinhardt3c8f60c2023-12-12 08:01:03 +01001283 remote = remote_get_early(remote_name);
SZEDER Gábor515be832018-11-14 11:46:19 +01001284
René Scharfe1af8b8c2020-09-05 16:49:30 +02001285 refspec_appendf(&remote->fetch, "+%s*:%s*", src_ref_prefix,
1286 branch_top.buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001287
Michael Barabanovf38aa832014-07-17 00:09:32 -07001288 path = get_repo_path(remote->url[0], &is_bundle);
1289 is_local = option_local != 0 && path && !is_bundle;
1290 if (is_local) {
1291 if (option_depth)
1292 warning(_("--depth is ignored in local clones; use file:// instead."));
Nguyễn Thái Ngọc Duy994c2aa2016-06-12 17:54:00 +07001293 if (option_since)
1294 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
Nguyễn Thái Ngọc Duy859e5df2016-06-12 17:54:05 +07001295 if (option_not.nr)
1296 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
Jonathan Tan548719f2017-12-08 15:58:46 +00001297 if (filter_options.choice)
1298 warning(_("--filter is ignored in local clones; use file:// instead."));
Michael Barabanovf38aa832014-07-17 00:09:32 -07001299 if (!access(mkpath("%s/shallow", path), F_OK)) {
Li Linchao4fe788b2021-04-01 10:46:59 +00001300 if (reject_shallow)
1301 die(_("source repository is shallow, reject to clone."));
Michael Barabanovf38aa832014-07-17 00:09:32 -07001302 if (option_local > 0)
1303 warning(_("source repository is shallow, ignoring --local"));
1304 is_local = 0;
1305 }
1306 }
1307 if (option_local > 0 && !is_local)
1308 warning(_("--local is ignored"));
Taylor Blaucf8f6ce2023-01-24 19:43:48 -05001309
1310 transport = transport_get(remote, path ? path : remote->url[0]);
1311 transport_set_verbosity(transport, option_verbosity, option_progress);
1312 transport->family = family;
Nguyễn Thái Ngọc Duybeea4152013-12-05 20:02:39 +07001313 transport->cloning = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001314
Derrick Stolee86fdd942022-03-09 16:01:43 +00001315 if (is_bundle) {
1316 struct bundle_header header = BUNDLE_HEADER_INIT;
1317 int fd = read_bundle_header(path, &header);
1318 int has_filter = header.filter.choice != LOFC_DISABLED;
1319
1320 if (fd > 0)
1321 close(fd);
1322 bundle_header_release(&header);
1323 if (has_filter)
1324 die(_("cannot clone from filtered bundle"));
1325 }
1326
Jeff King643f9182013-09-18 16:35:13 -04001327 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001328
Li Linchao4fe788b2021-04-01 10:46:59 +00001329 if (reject_shallow)
1330 transport_set_option(transport, TRANS_OPT_REJECT_SHALLOW, "1");
Jeff King643f9182013-09-18 16:35:13 -04001331 if (option_depth)
1332 transport_set_option(transport, TRANS_OPT_DEPTH,
1333 option_depth);
Nguyễn Thái Ngọc Duy994c2aa2016-06-12 17:54:00 +07001334 if (option_since)
1335 transport_set_option(transport, TRANS_OPT_DEEPEN_SINCE,
1336 option_since);
Nguyễn Thái Ngọc Duy859e5df2016-06-12 17:54:05 +07001337 if (option_not.nr)
1338 transport_set_option(transport, TRANS_OPT_DEEPEN_NOT,
1339 (const char *)&option_not);
Jeff King643f9182013-09-18 16:35:13 -04001340 if (option_single_branch)
1341 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001342
Jeff King643f9182013-09-18 16:35:13 -04001343 if (option_upload_pack)
1344 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
1345 option_upload_pack);
Nguyễn Thái Ngọc Duyc6807a42013-05-26 08:16:17 +07001346
Jonathan Tan6e983052019-04-12 12:51:22 -07001347 if (server_options.nr)
1348 transport->server_options = &server_options;
1349
Jonathan Tan548719f2017-12-08 15:58:46 +00001350 if (filter_options.choice) {
Matthew DeVorecf9ceb52019-06-27 15:54:10 -07001351 const char *spec =
1352 expand_list_objects_filter_spec(&filter_options);
Jonathan Tan548719f2017-12-08 15:58:46 +00001353 transport_set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER,
Matthew DeVorecf9ceb52019-06-27 15:54:10 -07001354 spec);
Jonathan Tan548719f2017-12-08 15:58:46 +00001355 transport_set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
1356 }
1357
1358 if (transport->smart_options && !deepen && !filter_options.choice)
Jeff King643f9182013-09-18 16:35:13 -04001359 transport->smart_options->check_self_contained_and_connected = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001360
Patrick Steinhardt91590292023-12-12 08:00:54 +01001361 strvec_push(&transport_ls_refs_options.ref_prefixes, "HEAD");
1362 refspec_ref_prefixes(&remote->fetch,
1363 &transport_ls_refs_options.ref_prefixes);
1364 if (option_branch)
1365 expand_ref_prefix(&transport_ls_refs_options.ref_prefixes,
1366 option_branch);
1367 if (!option_no_tags)
1368 strvec_push(&transport_ls_refs_options.ref_prefixes,
1369 "refs/tags/");
1370
1371 refs = transport_get_remote_refs(transport, &transport_ls_refs_options);
1372
1373 /*
1374 * Now that we know what algorithm the remote side is using, let's set
1375 * ours to the same thing.
1376 */
1377 hash_algo = hash_algo_by_ptr(transport_get_hash_algo(transport));
Patrick Steinhardtd7497a42023-12-29 08:26:47 +01001378 initialize_repository_version(hash_algo, the_repository->ref_storage_format, 1);
Patrick Steinhardt91590292023-12-12 08:00:54 +01001379 repo_set_hash_algo(the_repository, hash_algo);
Patrick Steinhardt173761e2023-12-29 08:26:39 +01001380 create_reference_database(the_repository->ref_storage_format, NULL, 1);
Patrick Steinhardt91590292023-12-12 08:00:54 +01001381
Derrick Stolee55568912022-08-09 13:11:41 +00001382 /*
1383 * Before fetching from the remote, download and install bundle
1384 * data from the --bundle-uri option.
1385 */
1386 if (bundle_uri) {
Derrick Stolee4074d3c2023-01-31 13:29:15 +00001387 int has_heuristic = 0;
1388
Derrick Stolee55568912022-08-09 13:11:41 +00001389 /* At this point, we need the_repository to match the cloned repo. */
Derrick Stolee65da9382022-08-23 10:05:13 -04001390 if (repo_init(the_repository, git_dir, work_tree))
1391 warning(_("failed to initialize the repo, skipping bundle URI"));
Derrick Stolee4074d3c2023-01-31 13:29:15 +00001392 else if (fetch_bundle_uri(the_repository, bundle_uri, &has_heuristic))
Derrick Stolee55568912022-08-09 13:11:41 +00001393 warning(_("failed to fetch objects from bundle URI '%s'"),
1394 bundle_uri);
Derrick Stolee4074d3c2023-01-31 13:29:15 +00001395 else if (has_heuristic)
1396 git_config_set_gently("fetch.bundleuri", bundle_uri);
Patrick Steinhardt91590292023-12-12 08:00:54 +01001397 } else {
Derrick Stolee876094a2022-12-22 15:14:17 +00001398 /*
1399 * Populate transport->got_remote_bundle_uri and
1400 * transport->bundle_uri. We might get nothing.
1401 */
1402 transport_get_remote_bundle_uri(transport);
1403
1404 if (transport->bundles &&
1405 hashmap_get_size(&transport->bundles->bundles)) {
1406 /* At this point, we need the_repository to match the cloned repo. */
1407 if (repo_init(the_repository, git_dir, work_tree))
1408 warning(_("failed to initialize the repo, skipping bundle URI"));
1409 else if (fetch_bundle_list(the_repository,
1410 transport->bundles))
1411 warning(_("failed to fetch advertised bundles"));
1412 } else {
1413 clear_bundle_list(transport->bundles);
1414 FREE_AND_NULL(transport->bundles);
1415 }
1416 }
Ævar Arnfjörð Bjarmason0cfde742022-12-22 15:14:09 +00001417
Patrick Steinhardt91590292023-12-12 08:00:54 +01001418 if (refs)
1419 mapped_refs = wanted_peer_refs(refs, &remote->fetch);
Junio C Hamano8b214c22023-04-05 14:15:33 -07001420
1421 if (mapped_refs) {
Michael Haggerty5b057952012-02-11 07:20:56 +01001422 /*
1423 * transport_get_remote_refs() may return refs with null sha-1
1424 * in mapped_refs (see struct transport->get_refs_list
1425 * comment). In that case we need fetch it early because
1426 * remote_head code below relies on it.
1427 *
1428 * for normal clones, transport_get_remote_refs() should
1429 * return reliable ref set, we can delay cloning until after
1430 * remote HEAD check.
1431 */
1432 for (ref = refs; ref; ref = ref->next)
brian m. carlsonf4e54d02015-11-10 02:22:20 +00001433 if (is_null_oid(&ref->old_oid)) {
Michael Haggerty5b057952012-02-11 07:20:56 +01001434 complete_refs_before_fetch = 0;
1435 break;
1436 }
1437
Taylor Blauaab179d2020-12-03 13:55:13 -05001438 if (!is_local && !complete_refs_before_fetch) {
Jeff King6aacb7d2021-05-19 07:17:15 -04001439 if (transport_fetch_refs(transport, mapped_refs))
1440 die(_("remote transport reported error"));
Taylor Blauaab179d2020-12-03 13:55:13 -05001441 }
Sverre Rabbelier86ac7512009-01-23 01:07:32 +01001442 }
Jeff King6b58df52021-09-20 15:04:10 -04001443
Jeff King3d8314f2022-07-07 19:57:45 -04001444 remote_head = find_ref_by_name(refs, "HEAD");
1445 remote_head_points_at = guess_remote_head(remote_head, mapped_refs, 0);
1446
1447 if (option_branch) {
1448 our_head_points_at = find_remote_branch(mapped_refs, option_branch);
1449 if (!our_head_points_at)
Ralf Thielowa3552ab2013-10-11 18:49:02 +02001450 die(_("Remote branch %s not found in upstream %s"),
Jeff King3d8314f2022-07-07 19:57:45 -04001451 option_branch, remote_name);
1452 } else if (remote_head_points_at) {
1453 our_head_points_at = remote_head_points_at;
1454 } else if (remote_head) {
Jeff King7a4ee282009-08-26 15:05:08 -04001455 our_head_points_at = NULL;
Jeff King3d8314f2022-07-07 19:57:45 -04001456 } else {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001457 const char *branch;
Sverre Rabbelier86ac7512009-01-23 01:07:32 +01001458
Jeff King3d8314f2022-07-07 19:57:45 -04001459 if (!mapped_refs) {
1460 warning(_("You appear to have cloned an empty repository."));
1461 option_no_checkout = 1;
1462 }
Jonathan Tan4f37d452021-02-05 12:48:49 -08001463
Jeff King6b58df52021-09-20 15:04:10 -04001464 if (transport_ls_refs_options.unborn_head_target &&
1465 skip_prefix(transport_ls_refs_options.unborn_head_target,
1466 "refs/heads/", &branch)) {
Jeff Kingdaf78982022-07-11 05:21:52 -04001467 unborn_head = xstrdup(transport_ls_refs_options.unborn_head_target);
Jeff King6b58df52021-09-20 15:04:10 -04001468 } else {
1469 branch = git_default_branch_name(0);
Jeff Kingdaf78982022-07-11 05:21:52 -04001470 unborn_head = xstrfmt("refs/heads/%s", branch);
Johannes Schindelin0cc1b472020-06-24 14:46:34 +00001471 }
Jeff King6b58df52021-09-20 15:04:10 -04001472
Jeff Kingcc8fcd12022-07-07 19:59:35 -04001473 /*
1474 * We may have selected a local default branch name "foo",
1475 * and even though the remote's HEAD does not point there,
1476 * it may still have a "foo" branch. If so, set it up so
1477 * that we can follow the usual checkout code later.
1478 *
1479 * Note that for an empty repo we'll already have set
1480 * option_no_checkout above, which would work against us here.
1481 * But for an empty repo, find_remote_branch() can never find
1482 * a match.
1483 */
1484 our_head_points_at = find_remote_branch(mapped_refs, branch);
Sverre Rabbelier86ac7512009-01-23 01:07:32 +01001485 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001486
Ralf Thielow31b808a2012-09-20 20:04:08 +02001487 write_refspec_config(src_ref_prefix, our_head_points_at,
1488 remote_head_points_at, &branch_top);
1489
Jonathan Tan548719f2017-12-08 15:58:46 +00001490 if (filter_options.choice)
Sean Barag75ca3902020-10-01 03:46:15 +00001491 partial_clone_register(remote_name, &filter_options);
Jonathan Tan548719f2017-12-08 15:58:46 +00001492
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +07001493 if (is_local)
1494 clone_local(path, git_dir);
Jonathan Tandccea602022-01-24 10:09:09 -08001495 else if (mapped_refs && complete_refs_before_fetch) {
Jeff King6aacb7d2021-05-19 07:17:15 -04001496 if (transport_fetch_refs(transport, mapped_refs))
1497 die(_("remote transport reported error"));
Taylor Blauaab179d2020-12-03 13:55:13 -05001498 }
Jeff King7a4ee282009-08-26 15:05:08 -04001499
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +07001500 update_remote_refs(refs, mapped_refs, remote_head_points_at,
Jonathan Tan548719f2017-12-08 15:58:46 +00001501 branch_top.buf, reflog_msg.buf, transport,
Jonathan Tan2b984782020-03-20 15:00:45 -07001502 !is_local);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001503
Jeff Kingdaf78982022-07-11 05:21:52 -04001504 update_head(our_head_points_at, remote_head, unborn_head, reflog_msg.buf);
Shawn O. Pearce1db4a752008-07-08 04:46:06 +00001505
Jeff King72c5f882016-09-22 01:24:46 -04001506 /*
1507 * We want to show progress for recursive submodule clones iff
1508 * we did so for the main clone. But only the transport knows
1509 * the final decision for this flag, so we need to rescue the value
1510 * before we free the transport.
1511 */
1512 submodule_progress = transport->progress;
1513
Patrick Steinhardt58d4d7f2022-01-07 11:55:47 +01001514 transport_unlock_pack(transport, 0);
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +07001515 transport_disconnect(transport);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001516
Johannes Schindelin786b1502015-10-06 15:18:47 +02001517 if (option_dissociate) {
Derrick Stolee2d511cf2019-05-17 11:41:49 -07001518 close_object_store(the_repository->objects);
Junio C Hamanofb1d6da2014-10-14 12:38:52 -07001519 dissociate_from_references();
Johannes Schindelin786b1502015-10-06 15:18:47 +02001520 }
Junio C Hamanofb1d6da2014-10-14 12:38:52 -07001521
Patrick Steinhardt360822a2023-12-12 08:00:59 +01001522 if (option_sparse_checkout && git_sparse_checkout_init(dir))
1523 return 1;
1524
Jeff Kingd3b34622013-03-26 18:22:09 -04001525 junk_mode = JUNK_LEAVE_REPO;
Josh Steadmonf05da2b2022-02-04 21:00:49 -08001526 err = checkout(submodule_progress, filter_submodules);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001527
Sean Baragde9ed3e2020-10-01 03:46:16 +00001528 free(remote_name);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001529 strbuf_release(&reflog_msg);
Miklos Vajnab5ff37a2008-11-21 01:45:01 +01001530 strbuf_release(&branch_top);
Patrick Steinhardt199f44c2024-02-27 15:27:44 +01001531 strbuf_release(&buf);
Miklos Vajnab5ff37a2008-11-21 01:45:01 +01001532 strbuf_release(&key);
Andrzej Hunt0c454272021-03-14 18:47:36 +00001533 free_refs(mapped_refs);
1534 free_refs(remote_head_points_at);
Jeff Kingdaf78982022-07-11 05:21:52 -04001535 free(unborn_head);
Andrzej Hunt0c454272021-03-14 18:47:36 +00001536 free(dir);
1537 free(path);
Ævar Arnfjörð Bjarmason81e5c392023-02-07 00:07:39 +01001538 free(repo_to_free);
Andrzej Hunt0c454272021-03-14 18:47:36 +00001539 UNLEAK(repo);
Jeff Kingd3b34622013-03-26 18:22:09 -04001540 junk_mode = JUNK_LEAVE_ALL;
Stefan Beller50b67732014-08-10 15:57:56 +02001541
Ævar Arnfjörð Bjarmasonf36d4f82022-02-05 01:08:14 +01001542 transport_ls_refs_options_release(&transport_ls_refs_options);
Jeff Kingdfa7a6c2009-03-03 00:37:51 -05001543 return err;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001544}