Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 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 | |
Ævar Arnfjörð Bjarmason | 07047d6 | 2022-11-19 14:07:38 +0100 | [diff] [blame] | 11 | #define USE_THE_INDEX_VARIABLE |
Stephen Boyd | c2e86ad | 2011-03-22 00:51:05 -0700 | [diff] [blame] | 12 | #include "builtin.h" |
Brandon Williams | b2141fc | 2017-06-14 11:07:36 -0700 | [diff] [blame] | 13 | #include "config.h" |
Elijah Newren | f394e09 | 2023-03-21 06:25:54 +0000 | [diff] [blame] | 14 | #include "gettext.h" |
Elijah Newren | 41771fa | 2023-02-24 00:09:27 +0000 | [diff] [blame] | 15 | #include "hex.h" |
Michael Haggerty | 697cc8e | 2014-10-01 12:28:42 +0200 | [diff] [blame] | 16 | #include "lockfile.h" |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 17 | #include "parse-options.h" |
| 18 | #include "fetch-pack.h" |
| 19 | #include "refs.h" |
Brandon Williams | ec0cb49 | 2018-05-16 15:57:48 -0700 | [diff] [blame] | 20 | #include "refspec.h" |
Stefan Beller | cbd53a2 | 2018-05-15 16:42:15 -0700 | [diff] [blame] | 21 | #include "object-store.h" |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 22 | #include "tree.h" |
| 23 | #include "tree-walk.h" |
| 24 | #include "unpack-trees.h" |
| 25 | #include "transport.h" |
| 26 | #include "strbuf.h" |
| 27 | #include "dir.h" |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 28 | #include "dir-iterator.h" |
| 29 | #include "iterator.h" |
Jeff King | 4a16d07 | 2009-01-22 01:02:35 -0500 | [diff] [blame] | 30 | #include "sigchain.h" |
Junio C Hamano | a9f2c13 | 2009-03-03 22:29:55 -0800 | [diff] [blame] | 31 | #include "branch.h" |
Jay Soffian | 8ef5173 | 2009-02-25 03:32:13 -0500 | [diff] [blame] | 32 | #include "remote.h" |
Jeff King | dfa7a6c | 2009-03-03 00:37:51 -0500 | [diff] [blame] | 33 | #include "run-command.h" |
Jeff King | 0433ad1 | 2013-03-25 16:26:27 -0400 | [diff] [blame] | 34 | #include "connected.h" |
Jonathan Tan | 3836d88 | 2017-08-18 15:20:21 -0700 | [diff] [blame] | 35 | #include "packfile.h" |
Jonathan Tan | 548719f | 2017-12-08 15:58:46 +0000 | [diff] [blame] | 36 | #include "list-objects-filter-options.h" |
Emily Shaffer | 72ddf34 | 2021-12-22 04:59:35 +0100 | [diff] [blame] | 37 | #include "hook.h" |
Derrick Stolee | 86fdd94 | 2022-03-09 16:01:43 +0000 | [diff] [blame] | 38 | #include "bundle.h" |
Derrick Stolee | 5556891 | 2022-08-09 13:11:41 +0000 | [diff] [blame] | 39 | #include "bundle-uri.h" |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * Overall FIXMEs: |
| 43 | * - respect DB_ENVIRONMENT for .git/objects. |
| 44 | * |
| 45 | * Implementation notes: |
| 46 | * - dropping use-separate-remote and no-separate-remote compatibility |
| 47 | * |
| 48 | */ |
| 49 | static const char * const builtin_clone_usage[] = { |
Alex Henrie | 9c9b4f2 | 2015-01-13 00:44:47 -0700 | [diff] [blame] | 50 | N_("git clone [<options>] [--] <repo> [<dir>]"), |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 51 | NULL |
| 52 | }; |
| 53 | |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 54 | static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1; |
Brandon Williams | bb62e0a | 2017-03-17 15:38:03 -0700 | [diff] [blame] | 55 | static int option_local = -1, option_no_hardlinks, option_shared; |
Ævar Arnfjörð Bjarmason | 0dab246 | 2017-04-26 23:12:33 +0000 | [diff] [blame] | 56 | static int option_no_tags; |
Junio C Hamano | 18a74a0 | 2016-06-19 13:51:56 -0700 | [diff] [blame] | 57 | static int option_shallow_submodules; |
Li Linchao | 4fe788b | 2021-04-01 10:46:59 +0000 | [diff] [blame] | 58 | static int option_reject_shallow = -1; /* unspecified */ |
| 59 | static int config_reject_shallow = -1; /* unspecified */ |
Nguyễn Thái Ngọc Duy | 994c2aa | 2016-06-12 17:54:00 +0700 | [diff] [blame] | 60 | static int deepen; |
| 61 | static char *option_template, *option_depth, *option_since; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 62 | static char *option_origin = NULL; |
Sean Barag | de9ed3e | 2020-10-01 03:46:16 +0000 | [diff] [blame] | 63 | static char *remote_name = NULL; |
Jeff King | 7a4ee28 | 2009-08-26 15:05:08 -0400 | [diff] [blame] | 64 | static char *option_branch = NULL; |
Nguyễn Thái Ngọc Duy | 859e5df | 2016-06-12 17:54:05 +0700 | [diff] [blame] | 65 | static struct string_list option_not = STRING_LIST_INIT_NODUP; |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 66 | static const char *real_git_dir; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 67 | static char *option_upload_pack = "git-upload-pack"; |
Tay Ray Chuan | 5bd631b | 2010-02-24 20:50:25 +0800 | [diff] [blame] | 68 | static int option_verbosity; |
Clemens Buchacher | 01fdc21 | 2012-02-13 21:17:15 +0100 | [diff] [blame] | 69 | static int option_progress = -1; |
Derrick Stolee | d89f09c | 2019-11-21 22:04:35 +0000 | [diff] [blame] | 70 | static int option_sparse_checkout; |
Eric Wong | c915f11 | 2016-02-03 04:09:14 +0000 | [diff] [blame] | 71 | static enum transport_family family; |
Jeff King | 2721ce2 | 2016-06-13 06:04:20 -0400 | [diff] [blame] | 72 | static struct string_list option_config = STRING_LIST_INIT_NODUP; |
Stefan Beller | 5e40800 | 2016-08-15 14:53:25 -0700 | [diff] [blame] | 73 | static struct string_list option_required_reference = STRING_LIST_INIT_NODUP; |
Stefan Beller | f7415b4 | 2016-08-15 14:53:26 -0700 | [diff] [blame] | 74 | static struct string_list option_optional_reference = STRING_LIST_INIT_NODUP; |
Junio C Hamano | fb1d6da | 2014-10-14 12:38:52 -0700 | [diff] [blame] | 75 | static int option_dissociate; |
Stefan Beller | 72290d6 | 2016-02-29 18:07:20 -0800 | [diff] [blame] | 76 | static int max_jobs = -1; |
Brandon Williams | bb62e0a | 2017-03-17 15:38:03 -0700 | [diff] [blame] | 77 | static struct string_list option_recurse_submodules = STRING_LIST_INIT_NODUP; |
Jeff King | 2a01bde | 2022-09-11 01:03:07 -0400 | [diff] [blame] | 78 | static struct list_objects_filter_options filter_options = LIST_OBJECTS_FILTER_INIT; |
Josh Steadmon | f05da2b | 2022-02-04 21:00:49 -0800 | [diff] [blame] | 79 | static int option_filter_submodules = -1; /* unspecified */ |
| 80 | static int config_filter_submodules = -1; /* unspecified */ |
Jonathan Tan | 6e98305 | 2019-04-12 12:51:22 -0700 | [diff] [blame] | 81 | static struct string_list server_options = STRING_LIST_INIT_NODUP; |
Ben Avison | 4c69101 | 2019-05-19 15:26:49 +0100 | [diff] [blame] | 82 | static int option_remote_submodules; |
Derrick Stolee | 5556891 | 2022-08-09 13:11:41 +0000 | [diff] [blame] | 83 | static const char *bundle_uri; |
Brandon Williams | bb62e0a | 2017-03-17 15:38:03 -0700 | [diff] [blame] | 84 | |
| 85 | static int recurse_submodules_cb(const struct option *opt, |
| 86 | const char *arg, int unset) |
| 87 | { |
| 88 | if (unset) |
| 89 | string_list_clear((struct string_list *)opt->value, 0); |
| 90 | else if (arg) |
| 91 | string_list_append((struct string_list *)opt->value, arg); |
| 92 | else |
| 93 | string_list_append((struct string_list *)opt->value, |
| 94 | (const char *)opt->defval); |
| 95 | |
| 96 | return 0; |
| 97 | } |
Junio C Hamano | dbc92b0 | 2011-08-22 18:05:15 -0700 | [diff] [blame] | 98 | |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 99 | static struct option builtin_clone_options[] = { |
Tay Ray Chuan | 5bd631b | 2010-02-24 20:50:25 +0800 | [diff] [blame] | 100 | OPT__VERBOSITY(&option_verbosity), |
Clemens Buchacher | 01fdc21 | 2012-02-13 21:17:15 +0100 | [diff] [blame] | 101 | OPT_BOOL(0, "progress", &option_progress, |
Nguyễn Thái Ngọc Duy | 32b77ad | 2012-08-20 19:32:02 +0700 | [diff] [blame] | 102 | N_("force progress reporting")), |
Li Linchao | 4fe788b | 2021-04-01 10:46:59 +0000 | [diff] [blame] | 103 | OPT_BOOL(0, "reject-shallow", &option_reject_shallow, |
| 104 | N_("don't clone shallow repository")), |
Stefan Beller | d5d09d4 | 2013-08-03 13:51:19 +0200 | [diff] [blame] | 105 | OPT_BOOL('n', "no-checkout", &option_no_checkout, |
| 106 | N_("don't create a checkout")), |
Stefan Beller | 4741edd | 2013-08-03 13:51:18 +0200 | [diff] [blame] | 107 | OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")), |
| 108 | OPT_HIDDEN_BOOL(0, "naked", &option_bare, |
| 109 | N_("create a bare repository")), |
Stefan Beller | d5d09d4 | 2013-08-03 13:51:19 +0200 | [diff] [blame] | 110 | OPT_BOOL(0, "mirror", &option_mirror, |
| 111 | N_("create a mirror repository (implies bare)")), |
Jeff King | 189260b | 2012-05-30 07:10:16 -0400 | [diff] [blame] | 112 | OPT_BOOL('l', "local", &option_local, |
Nguyễn Thái Ngọc Duy | 32b77ad | 2012-08-20 19:32:02 +0700 | [diff] [blame] | 113 | N_("to clone from a local repository")), |
Stefan Beller | d5d09d4 | 2013-08-03 13:51:19 +0200 | [diff] [blame] | 114 | OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks, |
Nguyễn Thái Ngọc Duy | 32b77ad | 2012-08-20 19:32:02 +0700 | [diff] [blame] | 115 | N_("don't use local hardlinks, always copy")), |
Stefan Beller | d5d09d4 | 2013-08-03 13:51:19 +0200 | [diff] [blame] | 116 | OPT_BOOL('s', "shared", &option_shared, |
Nguyễn Thái Ngọc Duy | 32b77ad | 2012-08-20 19:32:02 +0700 | [diff] [blame] | 117 | N_("setup as shared repository")), |
Brandon Williams | bb62e0a | 2017-03-17 15:38:03 -0700 | [diff] [blame] | 118 | { OPTION_CALLBACK, 0, "recurse-submodules", &option_recurse_submodules, |
| 119 | N_("pathspec"), N_("initialize submodules in the clone"), |
| 120 | PARSE_OPT_OPTARG, recurse_submodules_cb, (intptr_t)"." }, |
Junio C Hamano | c28b036 | 2020-03-16 13:27:43 -0700 | [diff] [blame] | 121 | OPT_ALIAS(0, "recursive", "recurse-submodules"), |
Stefan Beller | 72290d6 | 2016-02-29 18:07:20 -0800 | [diff] [blame] | 122 | OPT_INTEGER('j', "jobs", &max_jobs, |
| 123 | N_("number of submodules cloned in parallel")), |
Nguyễn Thái Ngọc Duy | 32b77ad | 2012-08-20 19:32:02 +0700 | [diff] [blame] | 124 | OPT_STRING(0, "template", &option_template, N_("template-directory"), |
| 125 | N_("directory from which templates will be used")), |
Stefan Beller | 5e40800 | 2016-08-15 14:53:25 -0700 | [diff] [blame] | 126 | OPT_STRING_LIST(0, "reference", &option_required_reference, N_("repo"), |
Jeff King | 8ade009 | 2015-05-21 00:15:19 -0400 | [diff] [blame] | 127 | N_("reference repository")), |
Stefan Beller | f7415b4 | 2016-08-15 14:53:26 -0700 | [diff] [blame] | 128 | OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference, |
| 129 | N_("repo"), N_("reference repository")), |
Jeff King | 14f8b9b | 2015-05-21 00:16:04 -0400 | [diff] [blame] | 130 | OPT_BOOL(0, "dissociate", &option_dissociate, |
| 131 | N_("use --reference only while cloning")), |
Nguyễn Thái Ngọc Duy | 32b77ad | 2012-08-20 19:32:02 +0700 | [diff] [blame] | 132 | OPT_STRING('o', "origin", &option_origin, N_("name"), |
| 133 | N_("use <name> instead of 'origin' to track upstream")), |
| 134 | OPT_STRING('b', "branch", &option_branch, N_("branch"), |
| 135 | N_("checkout <branch> instead of the remote's HEAD")), |
| 136 | OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"), |
| 137 | N_("path to git-upload-pack on the remote")), |
| 138 | OPT_STRING(0, "depth", &option_depth, N_("depth"), |
| 139 | N_("create a shallow clone of that depth")), |
Nguyễn Thái Ngọc Duy | 994c2aa | 2016-06-12 17:54:00 +0700 | [diff] [blame] | 140 | OPT_STRING(0, "shallow-since", &option_since, N_("time"), |
| 141 | N_("create a shallow clone since a specific time")), |
Nguyễn Thái Ngọc Duy | 859e5df | 2016-06-12 17:54:05 +0700 | [diff] [blame] | 142 | OPT_STRING_LIST(0, "shallow-exclude", &option_not, N_("revision"), |
Alex Henrie | 6d87386 | 2016-12-04 15:03:59 -0700 | [diff] [blame] | 143 | N_("deepen history of shallow clone, excluding rev")), |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 144 | OPT_BOOL(0, "single-branch", &option_single_branch, |
Nguyễn Thái Ngọc Duy | 32b77ad | 2012-08-20 19:32:02 +0700 | [diff] [blame] | 145 | N_("clone only one branch, HEAD or --branch")), |
Ævar Arnfjörð Bjarmason | 0dab246 | 2017-04-26 23:12:33 +0000 | [diff] [blame] | 146 | OPT_BOOL(0, "no-tags", &option_no_tags, |
| 147 | N_("don't clone any tags, and make later fetches not to follow them")), |
Stefan Beller | d22eb04 | 2016-04-25 18:12:27 -0700 | [diff] [blame] | 148 | OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules, |
| 149 | N_("any cloned submodules will be shallow")), |
Nguyễn Thái Ngọc Duy | 32b77ad | 2012-08-20 19:32:02 +0700 | [diff] [blame] | 150 | OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"), |
| 151 | N_("separate git dir from working tree")), |
| 152 | OPT_STRING_LIST('c', "config", &option_config, N_("key=value"), |
| 153 | N_("set config inside the new repository")), |
Jonathan Tan | 6e98305 | 2019-04-12 12:51:22 -0700 | [diff] [blame] | 154 | OPT_STRING_LIST(0, "server-option", &server_options, |
| 155 | N_("server-specific"), N_("option to transmit")), |
Eric Wong | c915f11 | 2016-02-03 04:09:14 +0000 | [diff] [blame] | 156 | OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"), |
| 157 | TRANSPORT_FAMILY_IPV4), |
| 158 | OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"), |
| 159 | TRANSPORT_FAMILY_IPV6), |
Jonathan Tan | 548719f | 2017-12-08 15:58:46 +0000 | [diff] [blame] | 160 | OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options), |
Josh Steadmon | f05da2b | 2022-02-04 21:00:49 -0800 | [diff] [blame] | 161 | OPT_BOOL(0, "also-filter-submodules", &option_filter_submodules, |
| 162 | N_("apply partial clone filters to submodules")), |
Ben Avison | 4c69101 | 2019-05-19 15:26:49 +0100 | [diff] [blame] | 163 | OPT_BOOL(0, "remote-submodules", &option_remote_submodules, |
| 164 | N_("any cloned submodules will use their remote-tracking branch")), |
Derrick Stolee | d89f09c | 2019-11-21 22:04:35 +0000 | [diff] [blame] | 165 | OPT_BOOL(0, "sparse", &option_sparse_checkout, |
| 166 | N_("initialize sparse-checkout file to include only files at root")), |
Derrick Stolee | 5556891 | 2022-08-09 13:11:41 +0000 | [diff] [blame] | 167 | OPT_STRING(0, "bundle-uri", &bundle_uri, |
| 168 | N_("uri"), N_("a URI for downloading bundles before fetching from origin remote")), |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 169 | OPT_END() |
| 170 | }; |
| 171 | |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 172 | static const char *get_repo_path_1(struct strbuf *path, int *is_bundle) |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 173 | { |
Jeff King | b3256eb | 2012-02-02 16:59:13 -0500 | [diff] [blame] | 174 | static char *suffix[] = { "/.git", "", ".git/.git", ".git" }; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 175 | static char *bundle_suffix[] = { ".bundle", "" }; |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 176 | size_t baselen = path->len; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 177 | struct stat st; |
| 178 | int i; |
| 179 | |
| 180 | for (i = 0; i < ARRAY_SIZE(suffix); i++) { |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 181 | strbuf_setlen(path, baselen); |
| 182 | strbuf_addstr(path, suffix[i]); |
| 183 | if (stat(path->buf, &st)) |
Nguyễn Thái Ngọc Duy | 9b0ebc7 | 2011-08-21 18:58:09 +0700 | [diff] [blame] | 184 | continue; |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 185 | if (S_ISDIR(st.st_mode) && is_git_directory(path->buf)) { |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 186 | *is_bundle = 0; |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 187 | return path->buf; |
Nguyễn Thái Ngọc Duy | 9b0ebc7 | 2011-08-21 18:58:09 +0700 | [diff] [blame] | 188 | } else if (S_ISREG(st.st_mode) && st.st_size > 8) { |
| 189 | /* Is it a "gitfile"? */ |
| 190 | char signature[8]; |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 191 | const char *dst; |
| 192 | int len, fd = open(path->buf, O_RDONLY); |
Nguyễn Thái Ngọc Duy | 9b0ebc7 | 2011-08-21 18:58:09 +0700 | [diff] [blame] | 193 | if (fd < 0) |
| 194 | continue; |
| 195 | len = read_in_full(fd, signature, 8); |
| 196 | close(fd); |
| 197 | if (len != 8 || strncmp(signature, "gitdir: ", 8)) |
| 198 | continue; |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 199 | dst = read_gitfile(path->buf); |
| 200 | if (dst) { |
Nguyễn Thái Ngọc Duy | 9b0ebc7 | 2011-08-21 18:58:09 +0700 | [diff] [blame] | 201 | *is_bundle = 0; |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 202 | return dst; |
Nguyễn Thái Ngọc Duy | 9b0ebc7 | 2011-08-21 18:58:09 +0700 | [diff] [blame] | 203 | } |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 204 | } |
| 205 | } |
| 206 | |
| 207 | for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) { |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 208 | strbuf_setlen(path, baselen); |
| 209 | strbuf_addstr(path, bundle_suffix[i]); |
| 210 | if (!stat(path->buf, &st) && S_ISREG(st.st_mode)) { |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 211 | *is_bundle = 1; |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 212 | return path->buf; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 213 | } |
| 214 | } |
| 215 | |
| 216 | return NULL; |
| 217 | } |
| 218 | |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 219 | static char *get_repo_path(const char *repo, int *is_bundle) |
| 220 | { |
| 221 | struct strbuf path = STRBUF_INIT; |
| 222 | const char *raw; |
| 223 | char *canon; |
| 224 | |
| 225 | strbuf_addstr(&path, repo); |
| 226 | raw = get_repo_path_1(&path, is_bundle); |
René Scharfe | 0aaad41 | 2017-01-26 18:54:23 +0100 | [diff] [blame] | 227 | canon = raw ? absolute_pathdup(raw) : NULL; |
Jeff King | 0ea68e4 | 2015-08-10 05:37:55 -0400 | [diff] [blame] | 228 | strbuf_release(&path); |
| 229 | return canon; |
| 230 | } |
| 231 | |
Junio C Hamano | dbc92b0 | 2011-08-22 18:05:15 -0700 | [diff] [blame] | 232 | static int add_one_reference(struct string_list_item *item, void *cb_data) |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 233 | { |
Stefan Beller | 9eeea7d | 2016-08-15 14:53:24 -0700 | [diff] [blame] | 234 | struct strbuf err = STRBUF_INIT; |
Stefan Beller | f7415b4 | 2016-08-15 14:53:26 -0700 | [diff] [blame] | 235 | int *required = cb_data; |
Stefan Beller | 9eeea7d | 2016-08-15 14:53:24 -0700 | [diff] [blame] | 236 | char *ref_git = compute_alternate_path(item->string, &err); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 237 | |
Stefan Beller | f7415b4 | 2016-08-15 14:53:26 -0700 | [diff] [blame] | 238 | if (!ref_git) { |
| 239 | if (*required) |
| 240 | die("%s", err.buf); |
| 241 | else |
| 242 | fprintf(stderr, |
| 243 | _("info: Could not add alternate for '%s': %s\n"), |
| 244 | item->string, err.buf); |
| 245 | } else { |
| 246 | struct strbuf sb = STRBUF_INIT; |
| 247 | strbuf_addf(&sb, "%s/objects", ref_git); |
| 248 | add_to_alternates_file(sb.buf); |
| 249 | strbuf_release(&sb); |
| 250 | } |
Aaron Schrab | b552b56 | 2013-04-09 18:22:00 -0400 | [diff] [blame] | 251 | |
Stefan Beller | 9eeea7d | 2016-08-15 14:53:24 -0700 | [diff] [blame] | 252 | strbuf_release(&err); |
Stefan Beller | f7415b4 | 2016-08-15 14:53:26 -0700 | [diff] [blame] | 253 | free(ref_git); |
Junio C Hamano | dbc92b0 | 2011-08-22 18:05:15 -0700 | [diff] [blame] | 254 | return 0; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 255 | } |
| 256 | |
Junio C Hamano | dbc92b0 | 2011-08-22 18:05:15 -0700 | [diff] [blame] | 257 | static void setup_reference(void) |
| 258 | { |
Stefan Beller | f7415b4 | 2016-08-15 14:53:26 -0700 | [diff] [blame] | 259 | int required = 1; |
| 260 | for_each_string_list(&option_required_reference, |
| 261 | add_one_reference, &required); |
| 262 | required = 0; |
| 263 | for_each_string_list(&option_optional_reference, |
| 264 | add_one_reference, &required); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 265 | } |
| 266 | |
Jeff King | 3c1dce8 | 2019-05-09 17:29:22 -0400 | [diff] [blame] | 267 | static void copy_alternates(struct strbuf *src, const char *src_repo) |
Junio C Hamano | e6baf4a | 2011-08-22 18:05:16 -0700 | [diff] [blame] | 268 | { |
| 269 | /* |
| 270 | * Read from the source objects/info/alternates file |
| 271 | * and copy the entries to corresponding file in the |
| 272 | * destination repository with add_to_alternates_file(). |
| 273 | * Both src and dst have "$path/objects/info/alternates". |
| 274 | * |
| 275 | * Instead of copying bit-for-bit from the original, |
| 276 | * we need to append to existing one so that the already |
| 277 | * created entry via "clone -s" is not lost, and also |
| 278 | * to turn entries with paths relative to the original |
| 279 | * absolute, so that they can be used in the new repository. |
| 280 | */ |
Nguyễn Thái Ngọc Duy | 02912f4 | 2017-05-03 17:16:47 +0700 | [diff] [blame] | 281 | FILE *in = xfopen(src->buf, "r"); |
Junio C Hamano | e6baf4a | 2011-08-22 18:05:16 -0700 | [diff] [blame] | 282 | struct strbuf line = STRBUF_INIT; |
| 283 | |
Junio C Hamano | 3f16396 | 2015-10-28 13:29:24 -0700 | [diff] [blame] | 284 | while (strbuf_getline(&line, in) != EOF) { |
Nguyễn Thái Ngọc Duy | dcf6926 | 2014-11-30 15:24:27 +0700 | [diff] [blame] | 285 | char *abs_path; |
Junio C Hamano | e6baf4a | 2011-08-22 18:05:16 -0700 | [diff] [blame] | 286 | if (!line.len || line.buf[0] == '#') |
| 287 | continue; |
| 288 | if (is_absolute_path(line.buf)) { |
| 289 | add_to_alternates_file(line.buf); |
| 290 | continue; |
| 291 | } |
Nguyễn Thái Ngọc Duy | dcf6926 | 2014-11-30 15:24:27 +0700 | [diff] [blame] | 292 | abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf); |
Jeff King | 22d3b8d | 2016-10-05 10:29:29 -0400 | [diff] [blame] | 293 | if (!normalize_path_copy(abs_path, abs_path)) |
| 294 | add_to_alternates_file(abs_path); |
| 295 | else |
| 296 | warning("skipping invalid relative alternate: %s/%s", |
| 297 | src_repo, line.buf); |
Nguyễn Thái Ngọc Duy | dcf6926 | 2014-11-30 15:24:27 +0700 | [diff] [blame] | 298 | free(abs_path); |
Junio C Hamano | e6baf4a | 2011-08-22 18:05:16 -0700 | [diff] [blame] | 299 | } |
| 300 | strbuf_release(&line); |
| 301 | fclose(in); |
| 302 | } |
| 303 | |
Matheus Tavares | 14954b7 | 2019-07-10 20:59:02 -0300 | [diff] [blame] | 304 | static void mkdir_if_missing(const char *pathname, mode_t mode) |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 305 | { |
Matheus Tavares | 14954b7 | 2019-07-10 20:59:02 -0300 | [diff] [blame] | 306 | struct stat st; |
| 307 | |
| 308 | if (!mkdir(pathname, mode)) |
| 309 | return; |
| 310 | |
| 311 | if (errno != EEXIST) |
| 312 | die_errno(_("failed to create directory '%s'"), pathname); |
| 313 | else if (stat(pathname, &st)) |
| 314 | die_errno(_("failed to stat '%s'"), pathname); |
| 315 | else if (!S_ISDIR(st.st_mode)) |
| 316 | die(_("%s exists and is not a directory"), pathname); |
| 317 | } |
| 318 | |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 319 | static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest, |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 320 | const char *src_repo) |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 321 | { |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 322 | int src_len, dest_len; |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 323 | struct dir_iterator *iter; |
| 324 | int iter_status; |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 325 | struct strbuf realpath = STRBUF_INIT; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 326 | |
Matheus Tavares | 14954b7 | 2019-07-10 20:59:02 -0300 | [diff] [blame] | 327 | mkdir_if_missing(dest->buf, 0777); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 328 | |
Taylor Blau | 6f054f9 | 2022-07-28 17:35:17 -0400 | [diff] [blame] | 329 | iter = dir_iterator_begin(src->buf, DIR_ITERATOR_PEDANTIC); |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 330 | |
| 331 | if (!iter) |
| 332 | die_errno(_("failed to start iterator over '%s'"), src->buf); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 333 | |
Miklos Vajna | b9e125e | 2008-11-21 01:45:00 +0100 | [diff] [blame] | 334 | strbuf_addch(src, '/'); |
| 335 | src_len = src->len; |
| 336 | strbuf_addch(dest, '/'); |
| 337 | dest_len = dest->len; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 338 | |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 339 | while ((iter_status = dir_iterator_advance(iter)) == ITER_OK) { |
Miklos Vajna | b9e125e | 2008-11-21 01:45:00 +0100 | [diff] [blame] | 340 | strbuf_setlen(src, src_len); |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 341 | strbuf_addstr(src, iter->relative_path); |
Miklos Vajna | b9e125e | 2008-11-21 01:45:00 +0100 | [diff] [blame] | 342 | strbuf_setlen(dest, dest_len); |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 343 | strbuf_addstr(dest, iter->relative_path); |
| 344 | |
Taylor Blau | 6f054f9 | 2022-07-28 17:35:17 -0400 | [diff] [blame] | 345 | if (S_ISLNK(iter->st.st_mode)) |
| 346 | die(_("symlink '%s' exists, refusing to clone with --local"), |
| 347 | iter->relative_path); |
| 348 | |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 349 | if (S_ISDIR(iter->st.st_mode)) { |
| 350 | mkdir_if_missing(dest->buf, 0777); |
Junio C Hamano | e6baf4a | 2011-08-22 18:05:16 -0700 | [diff] [blame] | 351 | continue; |
| 352 | } |
| 353 | |
| 354 | /* Files that cannot be copied bit-for-bit... */ |
Matheus Tavares | c4d9c50 | 2019-07-10 20:59:04 -0300 | [diff] [blame] | 355 | if (!fspathcmp(iter->relative_path, "info/alternates")) { |
Jeff King | 3c1dce8 | 2019-05-09 17:29:22 -0400 | [diff] [blame] | 356 | copy_alternates(src, src_repo); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 357 | continue; |
| 358 | } |
| 359 | |
Miklos Vajna | b9e125e | 2008-11-21 01:45:00 +0100 | [diff] [blame] | 360 | if (unlink(dest->buf) && errno != ENOENT) |
Ævar Arnfjörð Bjarmason | e84d7b7 | 2011-02-22 23:41:26 +0000 | [diff] [blame] | 361 | die_errno(_("failed to unlink '%s'"), dest->buf); |
Daniel Barkalow | fdabc24 | 2008-05-20 14:15:14 -0400 | [diff] [blame] | 362 | if (!option_no_hardlinks) { |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 363 | strbuf_realpath(&realpath, src->buf, 1); |
| 364 | if (!link(realpath.buf, dest->buf)) |
Daniel Barkalow | fdabc24 | 2008-05-20 14:15:14 -0400 | [diff] [blame] | 365 | continue; |
Jeff King | 189260b | 2012-05-30 07:10:16 -0400 | [diff] [blame] | 366 | if (option_local > 0) |
Ævar Arnfjörð Bjarmason | e84d7b7 | 2011-02-22 23:41:26 +0000 | [diff] [blame] | 367 | die_errno(_("failed to create link '%s'"), dest->buf); |
Daniel Barkalow | fdabc24 | 2008-05-20 14:15:14 -0400 | [diff] [blame] | 368 | option_no_hardlinks = 1; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 369 | } |
Clemens Buchacher | f7835a2 | 2009-09-12 11:03:48 +0200 | [diff] [blame] | 370 | if (copy_file_with_time(dest->buf, src->buf, 0666)) |
Ævar Arnfjörð Bjarmason | e84d7b7 | 2011-02-22 23:41:26 +0000 | [diff] [blame] | 371 | die_errno(_("failed to copy file to '%s'"), dest->buf); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 372 | } |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 373 | |
| 374 | if (iter_status != ITER_DONE) { |
| 375 | strbuf_setlen(src, src_len); |
| 376 | die(_("failed to iterate over '%s'"), src->buf); |
| 377 | } |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 378 | |
| 379 | strbuf_release(&realpath); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 380 | } |
| 381 | |
Nguyễn Thái Ngọc Duy | 6f48d39 | 2012-01-16 16:46:12 +0700 | [diff] [blame] | 382 | static void clone_local(const char *src_repo, const char *dest_repo) |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 383 | { |
Junio C Hamano | e6baf4a | 2011-08-22 18:05:16 -0700 | [diff] [blame] | 384 | if (option_shared) { |
| 385 | struct strbuf alt = STRBUF_INIT; |
Eric Sunshine | b3b0597 | 2017-12-11 18:16:12 -0500 | [diff] [blame] | 386 | get_common_dir(&alt, src_repo); |
| 387 | strbuf_addstr(&alt, "/objects"); |
Junio C Hamano | e6baf4a | 2011-08-22 18:05:16 -0700 | [diff] [blame] | 388 | add_to_alternates_file(alt.buf); |
| 389 | strbuf_release(&alt); |
| 390 | } else { |
| 391 | struct strbuf src = STRBUF_INIT; |
| 392 | struct strbuf dest = STRBUF_INIT; |
Nguyễn Thái Ngọc Duy | 744e469 | 2015-09-28 20:06:15 +0700 | [diff] [blame] | 393 | get_common_dir(&src, src_repo); |
| 394 | get_common_dir(&dest, dest_repo); |
| 395 | strbuf_addstr(&src, "/objects"); |
| 396 | strbuf_addstr(&dest, "/objects"); |
Matheus Tavares | ff7ccc8 | 2019-07-10 20:59:03 -0300 | [diff] [blame] | 397 | copy_or_link_directory(&src, &dest, src_repo); |
Miklos Vajna | b9e125e | 2008-11-21 01:45:00 +0100 | [diff] [blame] | 398 | strbuf_release(&src); |
| 399 | strbuf_release(&dest); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 400 | } |
| 401 | |
Junio C Hamano | 28ba96a | 2010-04-23 14:37:22 +0200 | [diff] [blame] | 402 | if (0 <= option_verbosity) |
Jeff King | 68b939b | 2013-09-18 16:05:13 -0400 | [diff] [blame] | 403 | fprintf(stderr, _("done.\n")); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | static const char *junk_work_tree; |
Jeff King | d45420c | 2018-01-02 16:11:39 -0500 | [diff] [blame] | 407 | static int junk_work_tree_flags; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 408 | static const char *junk_git_dir; |
Jeff King | d45420c | 2018-01-02 16:11:39 -0500 | [diff] [blame] | 409 | static int junk_git_dir_flags; |
Ramsay Jones | 8506463 | 2013-04-27 19:39:04 +0100 | [diff] [blame] | 410 | static enum { |
Jeff King | d3b3462 | 2013-03-26 18:22:09 -0400 | [diff] [blame] | 411 | JUNK_LEAVE_NONE, |
| 412 | JUNK_LEAVE_REPO, |
| 413 | JUNK_LEAVE_ALL |
| 414 | } junk_mode = JUNK_LEAVE_NONE; |
| 415 | |
| 416 | static const char junk_leave_repo_msg[] = |
| 417 | N_("Clone succeeded, but checkout failed.\n" |
| 418 | "You can inspect what was checked out with 'git status'\n" |
Nguyễn Thái Ngọc Duy | 80f537f | 2019-04-25 16:45:58 +0700 | [diff] [blame] | 419 | "and retry with 'git restore --source=HEAD :/'\n"); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 420 | |
| 421 | static void remove_junk(void) |
| 422 | { |
Brandon Casey | f285a2d | 2008-10-09 14:12:12 -0500 | [diff] [blame] | 423 | struct strbuf sb = STRBUF_INIT; |
Jeff King | d3b3462 | 2013-03-26 18:22:09 -0400 | [diff] [blame] | 424 | |
| 425 | switch (junk_mode) { |
| 426 | case JUNK_LEAVE_REPO: |
| 427 | warning("%s", _(junk_leave_repo_msg)); |
| 428 | /* fall-through */ |
| 429 | case JUNK_LEAVE_ALL: |
| 430 | return; |
| 431 | default: |
| 432 | /* proceed to removal */ |
| 433 | break; |
| 434 | } |
| 435 | |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 436 | if (junk_git_dir) { |
| 437 | strbuf_addstr(&sb, junk_git_dir); |
Jeff King | d45420c | 2018-01-02 16:11:39 -0500 | [diff] [blame] | 438 | remove_dir_recursively(&sb, junk_git_dir_flags); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 439 | strbuf_reset(&sb); |
| 440 | } |
| 441 | if (junk_work_tree) { |
| 442 | strbuf_addstr(&sb, junk_work_tree); |
Jeff King | d45420c | 2018-01-02 16:11:39 -0500 | [diff] [blame] | 443 | remove_dir_recursively(&sb, junk_work_tree_flags); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 444 | } |
Rene Scharfe | 9c18b54 | 2017-08-30 19:49:37 +0200 | [diff] [blame] | 445 | strbuf_release(&sb); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | static void remove_junk_on_signal(int signo) |
| 449 | { |
| 450 | remove_junk(); |
Jeff King | 4a16d07 | 2009-01-22 01:02:35 -0500 | [diff] [blame] | 451 | sigchain_pop(signo); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 452 | raise(signo); |
| 453 | } |
| 454 | |
Nguyễn Thái Ngọc Duy | 9e58504 | 2012-01-16 16:46:13 +0700 | [diff] [blame] | 455 | static struct ref *find_remote_branch(const struct ref *refs, const char *branch) |
| 456 | { |
| 457 | struct ref *ref; |
| 458 | struct strbuf head = STRBUF_INIT; |
| 459 | strbuf_addstr(&head, "refs/heads/"); |
| 460 | strbuf_addstr(&head, branch); |
| 461 | ref = find_ref_by_name(refs, head.buf); |
| 462 | strbuf_release(&head); |
Nguyễn Thái Ngọc Duy | 5a7d5b6 | 2012-01-16 16:46:15 +0700 | [diff] [blame] | 463 | |
| 464 | if (ref) |
| 465 | return ref; |
| 466 | |
| 467 | strbuf_addstr(&head, "refs/tags/"); |
| 468 | strbuf_addstr(&head, branch); |
| 469 | ref = find_ref_by_name(refs, head.buf); |
| 470 | strbuf_release(&head); |
| 471 | |
Nguyễn Thái Ngọc Duy | 9e58504 | 2012-01-16 16:46:13 +0700 | [diff] [blame] | 472 | return ref; |
| 473 | } |
| 474 | |
Nicolas Pitre | 5bdc32d | 2009-09-25 23:54:42 -0400 | [diff] [blame] | 475 | static struct ref *wanted_peer_refs(const struct ref *refs, |
SZEDER Gábor | 515be83 | 2018-11-14 11:46:19 +0100 | [diff] [blame] | 476 | struct refspec *refspec) |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 477 | { |
Jeff King | c1921c1 | 2011-06-07 19:03:22 -0400 | [diff] [blame] | 478 | struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD")); |
| 479 | struct ref *local_refs = head; |
| 480 | struct ref **tail = head ? &head->next : &local_refs; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 481 | |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 482 | if (option_single_branch) { |
| 483 | struct ref *remote_head = NULL; |
| 484 | |
| 485 | if (!option_branch) |
| 486 | remote_head = guess_remote_head(head, refs, 0); |
Nguyễn Thái Ngọc Duy | 0ec4b16 | 2012-06-22 16:35:47 +0700 | [diff] [blame] | 487 | else { |
| 488 | local_refs = NULL; |
| 489 | tail = &local_refs; |
| 490 | remote_head = copy_ref(find_remote_branch(refs, option_branch)); |
| 491 | } |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 492 | |
| 493 | if (!remote_head && option_branch) |
| 494 | warning(_("Could not find remote branch %s to clone."), |
| 495 | option_branch); |
Nguyễn Thái Ngọc Duy | 5a7d5b6 | 2012-01-16 16:46:15 +0700 | [diff] [blame] | 496 | else { |
SZEDER Gábor | 515be83 | 2018-11-14 11:46:19 +0100 | [diff] [blame] | 497 | int i; |
| 498 | for (i = 0; i < refspec->nr; i++) |
| 499 | get_fetch_map(remote_head, &refspec->items[i], |
| 500 | &tail, 0); |
Nguyễn Thái Ngọc Duy | 5a7d5b6 | 2012-01-16 16:46:15 +0700 | [diff] [blame] | 501 | |
| 502 | /* if --branch=tag, pull the requested tag explicitly */ |
| 503 | get_fetch_map(remote_head, tag_refspec, &tail, 0); |
| 504 | } |
Ævar Arnfjörð Bjarmason | 74a06a9 | 2022-07-01 12:42:51 +0200 | [diff] [blame] | 505 | free_refs(remote_head); |
SZEDER Gábor | 515be83 | 2018-11-14 11:46:19 +0100 | [diff] [blame] | 506 | } else { |
| 507 | int i; |
| 508 | for (i = 0; i < refspec->nr; i++) |
| 509 | get_fetch_map(refs, &refspec->items[i], &tail, 0); |
| 510 | } |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 511 | |
Ævar Arnfjörð Bjarmason | 0dab246 | 2017-04-26 23:12:33 +0000 | [diff] [blame] | 512 | if (!option_mirror && !option_single_branch && !option_no_tags) |
Johannes Schindelin | 468386a | 2008-08-08 04:29:35 +0200 | [diff] [blame] | 513 | get_fetch_map(refs, tag_refspec, &tail, 0); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 514 | |
Nicolas Pitre | 5bdc32d | 2009-09-25 23:54:42 -0400 | [diff] [blame] | 515 | return local_refs; |
| 516 | } |
| 517 | |
| 518 | static void write_remote_refs(const struct ref *local_refs) |
| 519 | { |
| 520 | const struct ref *r; |
| 521 | |
Michael Haggerty | 58f233c | 2015-06-22 16:03:01 +0200 | [diff] [blame] | 522 | struct ref_transaction *t; |
| 523 | struct strbuf err = STRBUF_INIT; |
| 524 | |
| 525 | t = ref_transaction_begin(&err); |
| 526 | if (!t) |
| 527 | die("%s", err.buf); |
Michael Haggerty | 9f69d29 | 2013-06-20 10:37:46 +0200 | [diff] [blame] | 528 | |
Jeff King | c1921c1 | 2011-06-07 19:03:22 -0400 | [diff] [blame] | 529 | for (r = local_refs; r; r = r->next) { |
| 530 | if (!r->peer_ref) |
| 531 | continue; |
brian m. carlson | 89f3bbd | 2017-10-15 22:06:53 +0000 | [diff] [blame] | 532 | if (ref_transaction_create(t, r->peer_ref->name, &r->old_oid, |
Michael Haggerty | 58f233c | 2015-06-22 16:03:01 +0200 | [diff] [blame] | 533 | 0, NULL, &err)) |
| 534 | die("%s", err.buf); |
Jeff King | c1921c1 | 2011-06-07 19:03:22 -0400 | [diff] [blame] | 535 | } |
Johan Herland | 3e8aded | 2008-06-15 16:06:16 +0200 | [diff] [blame] | 536 | |
Michael Haggerty | 58f233c | 2015-06-22 16:03:01 +0200 | [diff] [blame] | 537 | if (initial_ref_transaction_commit(t, &err)) |
| 538 | die("%s", err.buf); |
| 539 | |
| 540 | strbuf_release(&err); |
| 541 | ref_transaction_free(t); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 542 | } |
| 543 | |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 544 | static void write_followtags(const struct ref *refs, const char *msg) |
| 545 | { |
| 546 | const struct ref *ref; |
| 547 | for (ref = refs; ref; ref = ref->next) { |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 548 | if (!starts_with(ref->name, "refs/tags/")) |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 549 | continue; |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 550 | if (ends_with(ref->name, "^{}")) |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 551 | continue; |
Jeff King | 167a575 | 2020-04-01 08:15:37 -0400 | [diff] [blame] | 552 | if (!has_object_file_with_flags(&ref->old_oid, |
| 553 | OBJECT_INFO_QUICK | |
| 554 | OBJECT_INFO_SKIP_FETCH_OBJECT)) |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 555 | continue; |
brian m. carlson | ae07777 | 2017-10-15 22:06:51 +0000 | [diff] [blame] | 556 | update_ref(msg, ref->name, &ref->old_oid, NULL, 0, |
| 557 | UPDATE_REFS_DIE_ON_ERR); |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 558 | } |
| 559 | } |
| 560 | |
Patrick Steinhardt | 9fec7b2 | 2021-09-01 15:09:50 +0200 | [diff] [blame] | 561 | static const struct object_id *iterate_ref_map(void *cb_data) |
Jeff King | 0433ad1 | 2013-03-25 16:26:27 -0400 | [diff] [blame] | 562 | { |
| 563 | struct ref **rm = cb_data; |
| 564 | struct ref *ref = *rm; |
| 565 | |
| 566 | /* |
| 567 | * Skip anything missing a peer_ref, which we are not |
| 568 | * actually going to write a ref for. |
| 569 | */ |
| 570 | while (ref && !ref->peer_ref) |
| 571 | ref = ref->next; |
Jeff King | 0433ad1 | 2013-03-25 16:26:27 -0400 | [diff] [blame] | 572 | if (!ref) |
Patrick Steinhardt | 9fec7b2 | 2021-09-01 15:09:50 +0200 | [diff] [blame] | 573 | return NULL; |
Jeff King | 0433ad1 | 2013-03-25 16:26:27 -0400 | [diff] [blame] | 574 | |
Jeff King | 0433ad1 | 2013-03-25 16:26:27 -0400 | [diff] [blame] | 575 | *rm = ref->next; |
Patrick Steinhardt | 9fec7b2 | 2021-09-01 15:09:50 +0200 | [diff] [blame] | 576 | return &ref->old_oid; |
Jeff King | 0433ad1 | 2013-03-25 16:26:27 -0400 | [diff] [blame] | 577 | } |
| 578 | |
Nguyễn Thái Ngọc Duy | 960b7d1 | 2012-01-16 16:46:11 +0700 | [diff] [blame] | 579 | static void update_remote_refs(const struct ref *refs, |
| 580 | const struct ref *mapped_refs, |
| 581 | const struct ref *remote_head_points_at, |
| 582 | const char *branch_top, |
Nguyễn Thái Ngọc Duy | c6807a4 | 2013-05-26 08:16:17 +0700 | [diff] [blame] | 583 | const char *msg, |
Junio C Hamano | 45ed4af | 2013-07-18 12:48:28 -0700 | [diff] [blame] | 584 | struct transport *transport, |
Jonathan Tan | 2b98478 | 2020-03-20 15:00:45 -0700 | [diff] [blame] | 585 | int check_connectivity) |
Nguyễn Thái Ngọc Duy | 960b7d1 | 2012-01-16 16:46:11 +0700 | [diff] [blame] | 586 | { |
Jeff King | 0433ad1 | 2013-03-25 16:26:27 -0400 | [diff] [blame] | 587 | const struct ref *rm = mapped_refs; |
| 588 | |
Jeff King | 125a05f | 2013-07-08 03:30:41 -0400 | [diff] [blame] | 589 | if (check_connectivity) { |
Jeff King | 7043c70 | 2016-07-15 06:30:40 -0400 | [diff] [blame] | 590 | struct check_connected_options opt = CHECK_CONNECTED_INIT; |
| 591 | |
| 592 | opt.transport = transport; |
Jeff King | 38e590e | 2016-07-15 06:33:18 -0400 | [diff] [blame] | 593 | opt.progress = transport->progress; |
Jeff King | 7043c70 | 2016-07-15 06:30:40 -0400 | [diff] [blame] | 594 | |
Jeff King | 7043c70 | 2016-07-15 06:30:40 -0400 | [diff] [blame] | 595 | if (check_connected(iterate_ref_map, &rm, &opt)) |
Jeff King | 125a05f | 2013-07-08 03:30:41 -0400 | [diff] [blame] | 596 | die(_("remote did not send all necessary objects")); |
| 597 | } |
Jeff King | 0433ad1 | 2013-03-25 16:26:27 -0400 | [diff] [blame] | 598 | |
Nguyễn Thái Ngọc Duy | 960b7d1 | 2012-01-16 16:46:11 +0700 | [diff] [blame] | 599 | if (refs) { |
Nguyễn Thái Ngọc Duy | 960b7d1 | 2012-01-16 16:46:11 +0700 | [diff] [blame] | 600 | write_remote_refs(mapped_refs); |
Ævar Arnfjörð Bjarmason | 0dab246 | 2017-04-26 23:12:33 +0000 | [diff] [blame] | 601 | if (option_single_branch && !option_no_tags) |
Nguyễn Thái Ngọc Duy | 960b7d1 | 2012-01-16 16:46:11 +0700 | [diff] [blame] | 602 | write_followtags(refs, msg); |
| 603 | } |
| 604 | |
| 605 | if (remote_head_points_at && !option_bare) { |
| 606 | struct strbuf head_ref = STRBUF_INIT; |
| 607 | strbuf_addstr(&head_ref, branch_top); |
| 608 | strbuf_addstr(&head_ref, "HEAD"); |
Jeff King | 4be49d7 | 2016-01-12 04:57:34 -0500 | [diff] [blame] | 609 | if (create_symref(head_ref.buf, |
| 610 | remote_head_points_at->peer_ref->name, |
| 611 | msg) < 0) |
Nguyễn Thái Ngọc Duy | 39ad4f3 | 2016-02-27 13:41:55 +0700 | [diff] [blame] | 612 | die(_("unable to update %s"), head_ref.buf); |
Jeff King | 4be49d7 | 2016-01-12 04:57:34 -0500 | [diff] [blame] | 613 | strbuf_release(&head_ref); |
Nguyễn Thái Ngọc Duy | 960b7d1 | 2012-01-16 16:46:11 +0700 | [diff] [blame] | 614 | } |
| 615 | } |
| 616 | |
Nguyễn Thái Ngọc Duy | f034d35 | 2012-01-16 16:46:10 +0700 | [diff] [blame] | 617 | static void update_head(const struct ref *our, const struct ref *remote, |
Jeff King | daf7898 | 2022-07-11 05:21:52 -0400 | [diff] [blame] | 618 | const char *unborn, const char *msg) |
Nguyễn Thái Ngọc Duy | f034d35 | 2012-01-16 16:46:10 +0700 | [diff] [blame] | 619 | { |
Jeff King | cf4fff5 | 2014-06-18 15:44:19 -0400 | [diff] [blame] | 620 | const char *head; |
| 621 | if (our && skip_prefix(our->name, "refs/heads/", &head)) { |
Nguyễn Thái Ngọc Duy | f034d35 | 2012-01-16 16:46:10 +0700 | [diff] [blame] | 622 | /* Local default branch link */ |
Jeff King | 4be49d7 | 2016-01-12 04:57:34 -0500 | [diff] [blame] | 623 | if (create_symref("HEAD", our->name, NULL) < 0) |
Nguyễn Thái Ngọc Duy | 39ad4f3 | 2016-02-27 13:41:55 +0700 | [diff] [blame] | 624 | die(_("unable to update HEAD")); |
Nguyễn Thái Ngọc Duy | f034d35 | 2012-01-16 16:46:10 +0700 | [diff] [blame] | 625 | if (!option_bare) { |
brian m. carlson | ae07777 | 2017-10-15 22:06:51 +0000 | [diff] [blame] | 626 | update_ref(msg, "HEAD", &our->old_oid, NULL, 0, |
Michael Haggerty | f412411 | 2014-04-07 15:47:56 +0200 | [diff] [blame] | 627 | UPDATE_REFS_DIE_ON_ERR); |
Sean Barag | 75ca390 | 2020-10-01 03:46:15 +0000 | [diff] [blame] | 628 | install_branch_config(0, head, remote_name, our->name); |
Nguyễn Thái Ngọc Duy | f034d35 | 2012-01-16 16:46:10 +0700 | [diff] [blame] | 629 | } |
Nguyễn Thái Ngọc Duy | 5a7d5b6 | 2012-01-16 16:46:15 +0700 | [diff] [blame] | 630 | } else if (our) { |
Stefan Beller | 2122f67 | 2018-06-28 18:21:58 -0700 | [diff] [blame] | 631 | struct commit *c = lookup_commit_reference(the_repository, |
| 632 | &our->old_oid); |
Nguyễn Thái Ngọc Duy | 5a7d5b6 | 2012-01-16 16:46:15 +0700 | [diff] [blame] | 633 | /* --branch specifies a non-branch (i.e. tags), detach HEAD */ |
Michael Haggerty | 91774af | 2017-11-05 09:42:06 +0100 | [diff] [blame] | 634 | update_ref(msg, "HEAD", &c->object.oid, NULL, REF_NO_DEREF, |
brian m. carlson | ae07777 | 2017-10-15 22:06:51 +0000 | [diff] [blame] | 635 | UPDATE_REFS_DIE_ON_ERR); |
Nguyễn Thái Ngọc Duy | f034d35 | 2012-01-16 16:46:10 +0700 | [diff] [blame] | 636 | } else if (remote) { |
| 637 | /* |
| 638 | * We know remote HEAD points to a non-branch, or |
Nguyễn Thái Ngọc Duy | 920b691 | 2012-01-16 16:46:14 +0700 | [diff] [blame] | 639 | * HEAD points to a branch but we don't know which one. |
Nguyễn Thái Ngọc Duy | f034d35 | 2012-01-16 16:46:10 +0700 | [diff] [blame] | 640 | * Detach HEAD in all these cases. |
| 641 | */ |
Michael Haggerty | 91774af | 2017-11-05 09:42:06 +0100 | [diff] [blame] | 642 | update_ref(msg, "HEAD", &remote->old_oid, NULL, REF_NO_DEREF, |
brian m. carlson | ae07777 | 2017-10-15 22:06:51 +0000 | [diff] [blame] | 643 | UPDATE_REFS_DIE_ON_ERR); |
Jeff King | daf7898 | 2022-07-11 05:21:52 -0400 | [diff] [blame] | 644 | } else if (unborn && skip_prefix(unborn, "refs/heads/", &head)) { |
| 645 | /* |
| 646 | * Unborn head from remote; same as "our" case above except |
| 647 | * that we have no ref to update. |
| 648 | */ |
| 649 | if (create_symref("HEAD", unborn, NULL) < 0) |
| 650 | die(_("unable to update HEAD")); |
| 651 | if (!option_bare) |
| 652 | install_branch_config(0, head, remote_name, unborn); |
Nguyễn Thái Ngọc Duy | f034d35 | 2012-01-16 16:46:10 +0700 | [diff] [blame] | 653 | } |
| 654 | } |
| 655 | |
Derrick Stolee | d89f09c | 2019-11-21 22:04:35 +0000 | [diff] [blame] | 656 | static int git_sparse_checkout_init(const char *repo) |
| 657 | { |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 658 | struct child_process cmd = CHILD_PROCESS_INIT; |
Derrick Stolee | d89f09c | 2019-11-21 22:04:35 +0000 | [diff] [blame] | 659 | int result = 0; |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 660 | strvec_pushl(&cmd.args, "-C", repo, "sparse-checkout", "set", NULL); |
Derrick Stolee | d89f09c | 2019-11-21 22:04:35 +0000 | [diff] [blame] | 661 | |
| 662 | /* |
| 663 | * We must apply the setting in the current process |
| 664 | * for the later checkout to use the sparse-checkout file. |
| 665 | */ |
| 666 | core_apply_sparse_checkout = 1; |
| 667 | |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 668 | cmd.git_cmd = 1; |
| 669 | if (run_command(&cmd)) { |
Derrick Stolee | d89f09c | 2019-11-21 22:04:35 +0000 | [diff] [blame] | 670 | error(_("failed to initialize sparse-checkout")); |
| 671 | result = 1; |
| 672 | } |
| 673 | |
Derrick Stolee | d89f09c | 2019-11-21 22:04:35 +0000 | [diff] [blame] | 674 | return result; |
| 675 | } |
| 676 | |
Josh Steadmon | f05da2b | 2022-02-04 21:00:49 -0800 | [diff] [blame] | 677 | static int checkout(int submodule_progress, int filter_submodules) |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 678 | { |
brian m. carlson | ddc2cc6 | 2017-02-21 23:47:27 +0000 | [diff] [blame] | 679 | struct object_id oid; |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 680 | char *head; |
Martin Ågren | 837e34e | 2017-10-05 22:32:04 +0200 | [diff] [blame] | 681 | struct lock_file lock_file = LOCK_INIT; |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 682 | struct unpack_trees_options opts; |
| 683 | struct tree *tree; |
| 684 | struct tree_desc t; |
Nguyễn Thái Ngọc Duy | 03b8664 | 2014-06-13 19:19:23 +0700 | [diff] [blame] | 685 | int err = 0; |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 686 | |
| 687 | if (option_no_checkout) |
| 688 | return 0; |
| 689 | |
brian m. carlson | 0f2dc72 | 2017-10-15 22:06:55 +0000 | [diff] [blame] | 690 | head = resolve_refdup("HEAD", RESOLVE_REF_READING, &oid, NULL); |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 691 | if (!head) { |
| 692 | warning(_("remote HEAD refers to nonexistent ref, " |
Jeff King | f77710c | 2022-07-07 19:54:51 -0400 | [diff] [blame] | 693 | "unable to checkout")); |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 694 | return 0; |
| 695 | } |
Nguyễn Thái Ngọc Duy | 2857093 | 2012-01-16 16:46:16 +0700 | [diff] [blame] | 696 | if (!strcmp(head, "HEAD")) { |
Ben Boeckel | ed9bff0 | 2021-08-23 12:44:00 +0200 | [diff] [blame] | 697 | if (advice_enabled(ADVICE_DETACHED_HEAD)) |
brian m. carlson | ddc2cc6 | 2017-02-21 23:47:27 +0000 | [diff] [blame] | 698 | detach_advice(oid_to_hex(&oid)); |
brian m. carlson | dfc8cdc | 2020-03-16 18:05:05 +0000 | [diff] [blame] | 699 | FREE_AND_NULL(head); |
Nguyễn Thái Ngọc Duy | 2857093 | 2012-01-16 16:46:16 +0700 | [diff] [blame] | 700 | } else { |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 701 | if (!starts_with(head, "refs/heads/")) |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 702 | die(_("HEAD not found below refs/heads!")); |
| 703 | } |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 704 | |
| 705 | /* We need to be in the new work tree for the checkout */ |
| 706 | setup_work_tree(); |
| 707 | |
Ævar Arnfjörð Bjarmason | 07047d6 | 2022-11-19 14:07:38 +0100 | [diff] [blame] | 708 | repo_hold_locked_index(the_repository, &lock_file, LOCK_DIE_ON_ERROR); |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 709 | |
| 710 | memset(&opts, 0, sizeof opts); |
| 711 | opts.update = 1; |
| 712 | opts.merge = 1; |
Duy Nguyen | b878579 | 2018-08-17 20:00:39 +0200 | [diff] [blame] | 713 | opts.clone = 1; |
Elijah Newren | 1b5f373 | 2021-09-27 16:33:43 +0000 | [diff] [blame] | 714 | opts.preserve_ignored = 0; |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 715 | opts.fn = oneway_merge; |
Junio C Hamano | 8f63da1 | 2012-05-07 12:35:36 -0700 | [diff] [blame] | 716 | opts.verbose_update = (option_verbosity >= 0); |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 717 | opts.src_index = &the_index; |
| 718 | opts.dst_index = &the_index; |
brian m. carlson | dfc8cdc | 2020-03-16 18:05:05 +0000 | [diff] [blame] | 719 | init_checkout_metadata(&opts.meta, head, &oid, NULL); |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 720 | |
brian m. carlson | a9dbc17 | 2017-05-06 22:10:37 +0000 | [diff] [blame] | 721 | tree = parse_tree_indirect(&oid); |
Glen Choo | 8d2eaf6 | 2022-03-01 16:36:13 -0800 | [diff] [blame] | 722 | if (!tree) |
| 723 | die(_("unable to parse commit %s"), oid_to_hex(&oid)); |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 724 | parse_tree(tree); |
| 725 | init_tree_desc(&t, tree->buffer, tree->size); |
Jeff King | 0aac7bb | 2013-03-25 16:23:59 -0400 | [diff] [blame] | 726 | if (unpack_trees(1, &t, &opts) < 0) |
| 727 | die(_("unable to checkout working tree")); |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 728 | |
brian m. carlson | dfc8cdc | 2020-03-16 18:05:05 +0000 | [diff] [blame] | 729 | free(head); |
| 730 | |
Martin Ågren | 837e34e | 2017-10-05 22:32:04 +0200 | [diff] [blame] | 731 | if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK)) |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 732 | die(_("unable to write new index file")); |
| 733 | |
Emily Shaffer | 72ddf34 | 2021-12-22 04:59:35 +0100 | [diff] [blame] | 734 | err |= run_hooks_l("post-checkout", oid_to_hex(null_oid()), |
brian m. carlson | ddc2cc6 | 2017-02-21 23:47:27 +0000 | [diff] [blame] | 735 | oid_to_hex(&oid), "1", NULL); |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 736 | |
Brandon Williams | bb62e0a | 2017-03-17 15:38:03 -0700 | [diff] [blame] | 737 | if (!err && (option_recurse_submodules.nr > 0)) { |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 738 | struct child_process cmd = CHILD_PROCESS_INIT; |
| 739 | strvec_pushl(&cmd.args, "submodule", "update", "--require-init", |
| 740 | "--recursive", NULL); |
Stefan Beller | 72290d6 | 2016-02-29 18:07:20 -0800 | [diff] [blame] | 741 | |
Junio C Hamano | 18a74a0 | 2016-06-19 13:51:56 -0700 | [diff] [blame] | 742 | if (option_shallow_submodules == 1) |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 743 | strvec_push(&cmd.args, "--depth=1"); |
Stefan Beller | d22eb04 | 2016-04-25 18:12:27 -0700 | [diff] [blame] | 744 | |
Stefan Beller | 72290d6 | 2016-02-29 18:07:20 -0800 | [diff] [blame] | 745 | if (max_jobs != -1) |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 746 | strvec_pushf(&cmd.args, "--jobs=%d", max_jobs); |
Stefan Beller | 72290d6 | 2016-02-29 18:07:20 -0800 | [diff] [blame] | 747 | |
Jeff King | 72c5f88 | 2016-09-22 01:24:46 -0400 | [diff] [blame] | 748 | if (submodule_progress) |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 749 | strvec_push(&cmd.args, "--progress"); |
Jeff King | 72c5f88 | 2016-09-22 01:24:46 -0400 | [diff] [blame] | 750 | |
Brandon Williams | 03c004c | 2017-08-03 15:25:44 -0700 | [diff] [blame] | 751 | if (option_verbosity < 0) |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 752 | strvec_push(&cmd.args, "--quiet"); |
Brandon Williams | 03c004c | 2017-08-03 15:25:44 -0700 | [diff] [blame] | 753 | |
Ben Avison | 4c69101 | 2019-05-19 15:26:49 +0100 | [diff] [blame] | 754 | if (option_remote_submodules) { |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 755 | strvec_push(&cmd.args, "--remote"); |
| 756 | strvec_push(&cmd.args, "--no-fetch"); |
Ben Avison | 4c69101 | 2019-05-19 15:26:49 +0100 | [diff] [blame] | 757 | } |
| 758 | |
Josh Steadmon | f05da2b | 2022-02-04 21:00:49 -0800 | [diff] [blame] | 759 | if (filter_submodules && filter_options.choice) |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 760 | strvec_pushf(&cmd.args, "--filter=%s", |
Josh Steadmon | f05da2b | 2022-02-04 21:00:49 -0800 | [diff] [blame] | 761 | expand_list_objects_filter_spec(&filter_options)); |
| 762 | |
Emily Shaffer | 132f600 | 2020-02-20 19:10:27 -0800 | [diff] [blame] | 763 | if (option_single_branch >= 0) |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 764 | strvec_push(&cmd.args, option_single_branch ? |
Emily Shaffer | 132f600 | 2020-02-20 19:10:27 -0800 | [diff] [blame] | 765 | "--single-branch" : |
| 766 | "--no-single-branch"); |
| 767 | |
René Scharfe | 0e90673 | 2022-10-30 12:51:14 +0100 | [diff] [blame] | 768 | cmd.git_cmd = 1; |
| 769 | err = run_command(&cmd); |
Stefan Beller | 72290d6 | 2016-02-29 18:07:20 -0800 | [diff] [blame] | 770 | } |
Nguyễn Thái Ngọc Duy | c39852c | 2012-01-16 16:46:09 +0700 | [diff] [blame] | 771 | |
| 772 | return err; |
| 773 | } |
| 774 | |
Sean Barag | 552955e | 2020-10-01 03:46:11 +0000 | [diff] [blame] | 775 | static int git_clone_config(const char *k, const char *v, void *cb) |
| 776 | { |
Sean Barag | de9ed3e | 2020-10-01 03:46:16 +0000 | [diff] [blame] | 777 | if (!strcmp(k, "clone.defaultremotename")) { |
| 778 | free(remote_name); |
| 779 | remote_name = xstrdup(v); |
| 780 | } |
Li Linchao | 4fe788b | 2021-04-01 10:46:59 +0000 | [diff] [blame] | 781 | if (!strcmp(k, "clone.rejectshallow")) |
| 782 | config_reject_shallow = git_config_bool(k, v); |
Josh Steadmon | f05da2b | 2022-02-04 21:00:49 -0800 | [diff] [blame] | 783 | if (!strcmp(k, "clone.filtersubmodules")) |
| 784 | config_filter_submodules = git_config_bool(k, v); |
Li Linchao | 4fe788b | 2021-04-01 10:46:59 +0000 | [diff] [blame] | 785 | |
Sean Barag | 552955e | 2020-10-01 03:46:11 +0000 | [diff] [blame] | 786 | return git_default_config(k, v, cb); |
| 787 | } |
| 788 | |
Jeff King | 84054f7 | 2011-06-09 16:56:19 -0400 | [diff] [blame] | 789 | static int write_one_config(const char *key, const char *value, void *data) |
| 790 | { |
Sean Barag | 552955e | 2020-10-01 03:46:11 +0000 | [diff] [blame] | 791 | /* |
| 792 | * give git_clone_config a chance to write config values back to the |
| 793 | * environment, since git_config_set_multivar_gently only deals with |
| 794 | * config-file writes |
| 795 | */ |
| 796 | int apply_failed = git_clone_config(key, value, data); |
| 797 | if (apply_failed) |
| 798 | return apply_failed; |
| 799 | |
Jonathan Nieder | db4eca1 | 2017-05-01 17:05:15 -0700 | [diff] [blame] | 800 | return git_config_set_multivar_gently(key, |
| 801 | value ? value : "true", |
| 802 | CONFIG_REGEX_NONE, 0); |
Jeff King | 84054f7 | 2011-06-09 16:56:19 -0400 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | static void write_config(struct string_list *config) |
| 806 | { |
| 807 | int i; |
| 808 | |
| 809 | for (i = 0; i < config->nr; i++) { |
| 810 | if (git_config_parse_parameter(config->items[i].string, |
| 811 | write_one_config, NULL) < 0) |
Nguyễn Thái Ngọc Duy | 39ad4f3 | 2016-02-27 13:41:55 +0700 | [diff] [blame] | 812 | die(_("unable to write parameters to config file")); |
Jeff King | 84054f7 | 2011-06-09 16:56:19 -0400 | [diff] [blame] | 813 | } |
| 814 | } |
| 815 | |
David Aguilar | 24d36f1 | 2014-08-31 13:11:31 -0700 | [diff] [blame] | 816 | static void write_refspec_config(const char *src_ref_prefix, |
| 817 | const struct ref *our_head_points_at, |
| 818 | const struct ref *remote_head_points_at, |
| 819 | struct strbuf *branch_top) |
Ralf Thielow | 31b808a | 2012-09-20 20:04:08 +0200 | [diff] [blame] | 820 | { |
| 821 | struct strbuf key = STRBUF_INIT; |
| 822 | struct strbuf value = STRBUF_INIT; |
| 823 | |
| 824 | if (option_mirror || !option_bare) { |
| 825 | if (option_single_branch && !option_mirror) { |
| 826 | if (option_branch) { |
Junio C Hamano | 60a5f5f | 2014-06-23 14:27:36 -0700 | [diff] [blame] | 827 | if (starts_with(our_head_points_at->name, "refs/tags/")) |
Ralf Thielow | 31b808a | 2012-09-20 20:04:08 +0200 | [diff] [blame] | 828 | strbuf_addf(&value, "+%s:%s", our_head_points_at->name, |
| 829 | our_head_points_at->name); |
| 830 | else |
| 831 | strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name, |
| 832 | branch_top->buf, option_branch); |
| 833 | } else if (remote_head_points_at) { |
Jeff King | cf4fff5 | 2014-06-18 15:44:19 -0400 | [diff] [blame] | 834 | const char *head = remote_head_points_at->name; |
| 835 | if (!skip_prefix(head, "refs/heads/", &head)) |
Johannes Schindelin | 033abf9 | 2018-05-02 11:38:39 +0200 | [diff] [blame] | 836 | BUG("remote HEAD points at non-head?"); |
Jeff King | cf4fff5 | 2014-06-18 15:44:19 -0400 | [diff] [blame] | 837 | |
Ralf Thielow | 31b808a | 2012-09-20 20:04:08 +0200 | [diff] [blame] | 838 | strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name, |
Jeff King | cf4fff5 | 2014-06-18 15:44:19 -0400 | [diff] [blame] | 839 | branch_top->buf, head); |
Ralf Thielow | 31b808a | 2012-09-20 20:04:08 +0200 | [diff] [blame] | 840 | } |
| 841 | /* |
| 842 | * otherwise, the next "git fetch" will |
| 843 | * simply fetch from HEAD without updating |
Michael Schubert | d6ac1d2 | 2013-07-03 11:12:34 +0200 | [diff] [blame] | 844 | * any remote-tracking branch, which is what |
Ralf Thielow | 31b808a | 2012-09-20 20:04:08 +0200 | [diff] [blame] | 845 | * we want. |
| 846 | */ |
| 847 | } else { |
| 848 | strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf); |
| 849 | } |
| 850 | /* Configure the remote */ |
| 851 | if (value.len) { |
Sean Barag | 75ca390 | 2020-10-01 03:46:15 +0000 | [diff] [blame] | 852 | strbuf_addf(&key, "remote.%s.fetch", remote_name); |
Ralf Thielow | 31b808a | 2012-09-20 20:04:08 +0200 | [diff] [blame] | 853 | git_config_set_multivar(key.buf, value.buf, "^$", 0); |
| 854 | strbuf_reset(&key); |
| 855 | |
| 856 | if (option_mirror) { |
Sean Barag | 75ca390 | 2020-10-01 03:46:15 +0000 | [diff] [blame] | 857 | strbuf_addf(&key, "remote.%s.mirror", remote_name); |
Ralf Thielow | 31b808a | 2012-09-20 20:04:08 +0200 | [diff] [blame] | 858 | git_config_set(key.buf, "true"); |
| 859 | strbuf_reset(&key); |
| 860 | } |
| 861 | } |
| 862 | } |
| 863 | |
| 864 | strbuf_release(&key); |
| 865 | strbuf_release(&value); |
| 866 | } |
| 867 | |
Junio C Hamano | fb1d6da | 2014-10-14 12:38:52 -0700 | [diff] [blame] | 868 | static void dissociate_from_references(void) |
| 869 | { |
Alex Riesen | 0181681 | 2015-10-22 18:41:17 +0200 | [diff] [blame] | 870 | char *alternates = git_pathdup("objects/info/alternates"); |
Junio C Hamano | fb1d6da | 2014-10-14 12:38:52 -0700 | [diff] [blame] | 871 | |
Alex Riesen | 0181681 | 2015-10-22 18:41:17 +0200 | [diff] [blame] | 872 | if (!access(alternates, F_OK)) { |
René Scharfe | ddbb47f | 2022-10-30 12:55:06 +0100 | [diff] [blame] | 873 | struct child_process cmd = CHILD_PROCESS_INIT; |
| 874 | |
| 875 | cmd.git_cmd = 1; |
| 876 | cmd.no_stdin = 1; |
| 877 | strvec_pushl(&cmd.args, "repack", "-a", "-d", NULL); |
| 878 | if (run_command(&cmd)) |
Alex Riesen | 0181681 | 2015-10-22 18:41:17 +0200 | [diff] [blame] | 879 | die(_("cannot repack to clean up")); |
| 880 | if (unlink(alternates) && errno != ENOENT) |
| 881 | die_errno(_("cannot unlink temporary alternates file")); |
| 882 | } |
| 883 | free(alternates); |
Junio C Hamano | fb1d6da | 2014-10-14 12:38:52 -0700 | [diff] [blame] | 884 | } |
| 885 | |
Miriam Rubio | 6c02042 | 2019-10-28 17:55:23 +0100 | [diff] [blame] | 886 | static int path_exists(const char *path) |
Jeff King | f9e377a | 2018-01-02 16:10:14 -0500 | [diff] [blame] | 887 | { |
| 888 | struct stat sb; |
| 889 | return !stat(path, &sb); |
| 890 | } |
| 891 | |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 892 | int cmd_clone(int argc, const char **argv, const char *prefix) |
| 893 | { |
Nguyễn Thái Ngọc Duy | 24c61c4 | 2010-08-23 22:08:22 +1000 | [diff] [blame] | 894 | int is_bundle = 0, is_local; |
Li Linchao | 4fe788b | 2021-04-01 10:46:59 +0000 | [diff] [blame] | 895 | int reject_shallow = 0; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 896 | const char *repo_name, *repo, *work_tree, *git_dir; |
Ævar Arnfjörð Bjarmason | 81e5c39 | 2023-02-07 00:07:39 +0100 | [diff] [blame] | 897 | char *repo_to_free = NULL; |
Andrzej Hunt | 0c45427 | 2021-03-14 18:47:36 +0000 | [diff] [blame] | 898 | char *path = NULL, *dir, *display_repo = NULL; |
Ben Wijen | dfaa209 | 2020-07-10 10:47:32 +0200 | [diff] [blame] | 899 | int dest_exists, real_dest_exists = 0; |
Daniel Barkalow | 3714831 | 2009-11-18 02:42:24 +0100 | [diff] [blame] | 900 | const struct ref *refs, *remote_head; |
Andrzej Hunt | 0c45427 | 2021-03-14 18:47:36 +0000 | [diff] [blame] | 901 | struct ref *remote_head_points_at = NULL; |
Jeff King | 7a4ee28 | 2009-08-26 15:05:08 -0400 | [diff] [blame] | 902 | const struct ref *our_head_points_at; |
Jeff King | daf7898 | 2022-07-11 05:21:52 -0400 | [diff] [blame] | 903 | char *unborn_head = NULL; |
Jonathan Tan | dccea60 | 2022-01-24 10:09:09 -0800 | [diff] [blame] | 904 | struct ref *mapped_refs = NULL; |
Nguyễn Thái Ngọc Duy | 9049816 | 2012-01-24 18:10:38 +0700 | [diff] [blame] | 905 | const struct ref *ref; |
SZEDER Gábor | 3e42cb3 | 2018-11-14 11:46:18 +0100 | [diff] [blame] | 906 | struct strbuf key = STRBUF_INIT; |
Miklos Vajna | b5ff37a | 2008-11-21 01:45:01 +0100 | [diff] [blame] | 907 | struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT; |
Shawn O. Pearce | 1db4a75 | 2008-07-08 04:46:06 +0000 | [diff] [blame] | 908 | struct transport *transport = NULL; |
Nguyễn Thái Ngọc Duy | 9e58504 | 2012-01-16 16:46:13 +0700 | [diff] [blame] | 909 | const char *src_ref_prefix = "refs/heads/"; |
Nguyễn Thái Ngọc Duy | 6f48d39 | 2012-01-16 16:46:12 +0700 | [diff] [blame] | 910 | struct remote *remote; |
Nguyễn Thái Ngọc Duy | 9049816 | 2012-01-24 18:10:38 +0700 | [diff] [blame] | 911 | int err = 0, complete_refs_before_fetch = 1; |
Jeff King | 72c5f88 | 2016-09-22 01:24:46 -0400 | [diff] [blame] | 912 | int submodule_progress; |
Josh Steadmon | f05da2b | 2022-02-04 21:00:49 -0800 | [diff] [blame] | 913 | int filter_submodules = 0; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 914 | |
Jonathan Tan | 3983540 | 2021-02-05 12:48:48 -0800 | [diff] [blame] | 915 | struct transport_ls_refs_options transport_ls_refs_options = |
| 916 | TRANSPORT_LS_REFS_OPTIONS_INIT; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 917 | |
Jeff King | bbc30f9 | 2011-02-24 09:30:19 -0500 | [diff] [blame] | 918 | packet_trace_identity("clone"); |
Sean Barag | 552955e | 2020-10-01 03:46:11 +0000 | [diff] [blame] | 919 | |
| 920 | git_config(git_clone_config, NULL); |
| 921 | |
Stephen Boyd | 3778292 | 2009-05-23 11:53:12 -0700 | [diff] [blame] | 922 | argc = parse_options(argc, argv, prefix, builtin_clone_options, |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 923 | builtin_clone_usage, 0); |
| 924 | |
Jonathan Nieder | d52dc4b | 2009-10-29 03:10:30 -0500 | [diff] [blame] | 925 | if (argc > 2) |
Ævar Arnfjörð Bjarmason | e84d7b7 | 2011-02-22 23:41:26 +0000 | [diff] [blame] | 926 | usage_msg_opt(_("Too many arguments."), |
Jonathan Nieder | d52dc4b | 2009-10-29 03:10:30 -0500 | [diff] [blame] | 927 | builtin_clone_usage, builtin_clone_options); |
| 928 | |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 929 | if (argc == 0) |
Ævar Arnfjörð Bjarmason | e84d7b7 | 2011-02-22 23:41:26 +0000 | [diff] [blame] | 930 | usage_msg_opt(_("You must specify a repository to clone."), |
Jonathan Nieder | d52dc4b | 2009-10-29 03:10:30 -0500 | [diff] [blame] | 931 | builtin_clone_usage, builtin_clone_options); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 932 | |
Nguyễn Thái Ngọc Duy | 859e5df | 2016-06-12 17:54:05 +0700 | [diff] [blame] | 933 | if (option_depth || option_since || option_not.nr) |
Nguyễn Thái Ngọc Duy | 994c2aa | 2016-06-12 17:54:00 +0700 | [diff] [blame] | 934 | deepen = 1; |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 935 | if (option_single_branch == -1) |
Nguyễn Thái Ngọc Duy | 994c2aa | 2016-06-12 17:54:00 +0700 | [diff] [blame] | 936 | option_single_branch = deepen ? 1 : 0; |
Nguyễn Thái Ngọc Duy | 3e6e0ed | 2012-01-07 21:45:59 +0700 | [diff] [blame] | 937 | |
Johannes Schindelin | bc699af | 2008-08-02 21:38:56 +0200 | [diff] [blame] | 938 | if (option_mirror) |
| 939 | option_bare = 1; |
| 940 | |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 941 | if (option_bare) { |
Nguyễn Thái Ngọc Duy | 95b63f1 | 2013-01-11 10:09:59 +0700 | [diff] [blame] | 942 | if (real_git_dir) |
Jean-Noël Avila | 12909b6 | 2022-01-05 20:02:16 +0000 | [diff] [blame] | 943 | die(_("options '%s' and '%s' cannot be used together"), "--bare", "--separate-git-dir"); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 944 | option_no_checkout = 1; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 945 | } |
| 946 | |
Derrick Stolee | e21e663 | 2022-08-09 13:11:43 +0000 | [diff] [blame] | 947 | if (bundle_uri && deepen) |
| 948 | die(_("--bundle-uri is incompatible with --depth, --shallow-since, and --shallow-exclude")); |
| 949 | |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 950 | repo_name = argv[0]; |
| 951 | |
| 952 | path = get_repo_path(repo_name, &is_bundle); |
Andrzej Hunt | 0c45427 | 2021-03-14 18:47:36 +0000 | [diff] [blame] | 953 | if (path) { |
| 954 | FREE_AND_NULL(path); |
Ævar Arnfjörð Bjarmason | 81e5c39 | 2023-02-07 00:07:39 +0100 | [diff] [blame] | 955 | repo = repo_to_free = absolute_pathdup(repo_name); |
Andrzej Hunt | 0c45427 | 2021-03-14 18:47:36 +0000 | [diff] [blame] | 956 | } else if (strchr(repo_name, ':')) { |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 957 | repo = repo_name; |
Johannes Schindelin | 46da295 | 2020-06-04 20:08:29 +0000 | [diff] [blame] | 958 | display_repo = transport_anonymize_url(repo); |
| 959 | } else |
| 960 | die(_("repository '%s' does not exist"), repo_name); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 961 | |
Nguyễn Thái Ngọc Duy | 5594bca | 2013-12-05 10:31:11 +0700 | [diff] [blame] | 962 | /* no need to be strict, transport_set_option() will validate it again */ |
| 963 | if (option_depth && atoi(option_depth) < 1) |
| 964 | die(_("depth %s is not a positive number"), option_depth); |
| 965 | |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 966 | if (argc == 2) |
| 967 | dir = xstrdup(argv[1]); |
| 968 | else |
Atharva Raykar | ed86301 | 2021-08-10 17:16:36 +0530 | [diff] [blame] | 969 | dir = git_url_basename(repo_name, is_bundle, option_bare); |
| 970 | strip_dir_trailing_slashes(dir); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 971 | |
Miriam Rubio | 6c02042 | 2019-10-28 17:55:23 +0100 | [diff] [blame] | 972 | dest_exists = path_exists(dir); |
Alexander Potashev | 55892d2 | 2009-01-11 15:19:12 +0300 | [diff] [blame] | 973 | if (dest_exists && !is_empty_dir(dir)) |
Ævar Arnfjörð Bjarmason | e84d7b7 | 2011-02-22 23:41:26 +0000 | [diff] [blame] | 974 | die(_("destination path '%s' already exists and is not " |
| 975 | "an empty directory."), dir); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 976 | |
Ben Wijen | dfaa209 | 2020-07-10 10:47:32 +0200 | [diff] [blame] | 977 | if (real_git_dir) { |
| 978 | real_dest_exists = path_exists(real_git_dir); |
| 979 | if (real_dest_exists && !is_empty_dir(real_git_dir)) |
| 980 | die(_("repository path '%s' already exists and is not " |
| 981 | "an empty directory."), real_git_dir); |
| 982 | } |
| 983 | |
| 984 | |
Johannes Schindelin | 46da295 | 2020-06-04 20:08:29 +0000 | [diff] [blame] | 985 | strbuf_addf(&reflog_msg, "clone: from %s", |
| 986 | display_repo ? display_repo : repo); |
| 987 | free(display_repo); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 988 | |
| 989 | if (option_bare) |
| 990 | work_tree = NULL; |
| 991 | else { |
| 992 | work_tree = getenv("GIT_WORK_TREE"); |
Miriam Rubio | 6c02042 | 2019-10-28 17:55:23 +0100 | [diff] [blame] | 993 | if (work_tree && path_exists(work_tree)) |
Ævar Arnfjörð Bjarmason | e84d7b7 | 2011-02-22 23:41:26 +0000 | [diff] [blame] | 994 | die(_("working tree '%s' already exists."), work_tree); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 995 | } |
| 996 | |
| 997 | if (option_bare || work_tree) |
| 998 | git_dir = xstrdup(dir); |
| 999 | else { |
| 1000 | work_tree = dir; |
Ramsay Jones | 4e2d094 | 2012-09-04 18:31:14 +0100 | [diff] [blame] | 1001 | git_dir = mkpathdup("%s/.git", dir); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1002 | } |
| 1003 | |
Jeff King | ee0e387 | 2015-03-18 14:55:32 -0400 | [diff] [blame] | 1004 | atexit(remove_junk); |
| 1005 | sigchain_push_common(remove_junk_on_signal); |
| 1006 | |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1007 | if (!option_bare) { |
Jeff King | 8e21d63 | 2008-06-25 01:41:34 -0400 | [diff] [blame] | 1008 | if (safe_create_leading_directories_const(work_tree) < 0) |
Ævar Arnfjörð Bjarmason | e84d7b7 | 2011-02-22 23:41:26 +0000 | [diff] [blame] | 1009 | die_errno(_("could not create leading directories of '%s'"), |
Thomas Rast | d824cbb | 2009-06-27 17:58:46 +0200 | [diff] [blame] | 1010 | work_tree); |
Jeff King | d45420c | 2018-01-02 16:11:39 -0500 | [diff] [blame] | 1011 | if (dest_exists) |
| 1012 | junk_work_tree_flags |= REMOVE_DIR_KEEP_TOPLEVEL; |
| 1013 | else if (mkdir(work_tree, 0777)) |
Jeff King | 16eff6c | 2015-03-18 15:02:01 -0400 | [diff] [blame] | 1014 | die_errno(_("could not create work tree dir '%s'"), |
Thomas Rast | d824cbb | 2009-06-27 17:58:46 +0200 | [diff] [blame] | 1015 | work_tree); |
Jeff King | ee0e387 | 2015-03-18 14:55:32 -0400 | [diff] [blame] | 1016 | junk_work_tree = work_tree; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1017 | set_git_work_tree(work_tree); |
| 1018 | } |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1019 | |
Jeff King | d45420c | 2018-01-02 16:11:39 -0500 | [diff] [blame] | 1020 | if (real_git_dir) { |
Ben Wijen | dfaa209 | 2020-07-10 10:47:32 +0200 | [diff] [blame] | 1021 | if (real_dest_exists) |
Jeff King | d45420c | 2018-01-02 16:11:39 -0500 | [diff] [blame] | 1022 | junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL; |
| 1023 | junk_git_dir = real_git_dir; |
| 1024 | } else { |
| 1025 | if (dest_exists) |
| 1026 | junk_git_dir_flags |= REMOVE_DIR_KEEP_TOPLEVEL; |
| 1027 | junk_git_dir = git_dir; |
| 1028 | } |
Jeff King | 8e21d63 | 2008-06-25 01:41:34 -0400 | [diff] [blame] | 1029 | if (safe_create_leading_directories_const(git_dir) < 0) |
Ævar Arnfjörð Bjarmason | e84d7b7 | 2011-02-22 23:41:26 +0000 | [diff] [blame] | 1030 | die(_("could not create leading directories of '%s'"), git_dir); |
Nguyễn Thái Ngọc Duy | b57fb80 | 2011-03-19 22:16:56 +0700 | [diff] [blame] | 1031 | |
Ævar Arnfjörð Bjarmason | 3781fcc | 2011-02-22 23:41:27 +0000 | [diff] [blame] | 1032 | if (0 <= option_verbosity) { |
| 1033 | if (option_bare) |
Jeff King | 68b939b | 2013-09-18 16:05:13 -0400 | [diff] [blame] | 1034 | fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir); |
Ævar Arnfjörð Bjarmason | 3781fcc | 2011-02-22 23:41:27 +0000 | [diff] [blame] | 1035 | else |
Jeff King | 68b939b | 2013-09-18 16:05:13 -0400 | [diff] [blame] | 1036 | fprintf(stderr, _("Cloning into '%s'...\n"), dir); |
Ævar Arnfjörð Bjarmason | 3781fcc | 2011-02-22 23:41:27 +0000 | [diff] [blame] | 1037 | } |
Stefan Beller | 31224cb | 2016-08-17 15:45:35 -0700 | [diff] [blame] | 1038 | |
Brandon Williams | bb62e0a | 2017-03-17 15:38:03 -0700 | [diff] [blame] | 1039 | if (option_recurse_submodules.nr > 0) { |
| 1040 | struct string_list_item *item; |
| 1041 | struct strbuf sb = STRBUF_INIT; |
Mahi Kolla | 48072e3 | 2021-08-14 01:09:56 +0000 | [diff] [blame] | 1042 | int val; |
Brandon Williams | bb62e0a | 2017-03-17 15:38:03 -0700 | [diff] [blame] | 1043 | |
| 1044 | /* remove duplicates */ |
| 1045 | string_list_sort(&option_recurse_submodules); |
| 1046 | string_list_remove_duplicates(&option_recurse_submodules, 0); |
| 1047 | |
| 1048 | /* |
| 1049 | * NEEDSWORK: In a multi-working-tree world, this needs to be |
| 1050 | * set in the per-worktree config. |
| 1051 | */ |
| 1052 | for_each_string_list_item(item, &option_recurse_submodules) { |
| 1053 | strbuf_addf(&sb, "submodule.active=%s", |
| 1054 | item->string); |
| 1055 | string_list_append(&option_config, |
| 1056 | strbuf_detach(&sb, NULL)); |
| 1057 | } |
| 1058 | |
Mahi Kolla | 48072e3 | 2021-08-14 01:09:56 +0000 | [diff] [blame] | 1059 | if (!git_config_get_bool("submodule.stickyRecursiveClone", &val) && |
| 1060 | val) |
| 1061 | string_list_append(&option_config, "submodule.recurse=true"); |
| 1062 | |
Stefan Beller | 31224cb | 2016-08-17 15:45:35 -0700 | [diff] [blame] | 1063 | if (option_required_reference.nr && |
| 1064 | option_optional_reference.nr) |
| 1065 | die(_("clone --recursive is not compatible with " |
| 1066 | "both --reference and --reference-if-able")); |
| 1067 | else if (option_required_reference.nr) { |
| 1068 | string_list_append(&option_config, |
| 1069 | "submodule.alternateLocation=superproject"); |
| 1070 | string_list_append(&option_config, |
| 1071 | "submodule.alternateErrorStrategy=die"); |
| 1072 | } else if (option_optional_reference.nr) { |
| 1073 | string_list_append(&option_config, |
| 1074 | "submodule.alternateLocation=superproject"); |
| 1075 | string_list_append(&option_config, |
| 1076 | "submodule.alternateErrorStrategy=info"); |
| 1077 | } |
| 1078 | } |
| 1079 | |
Johannes Schindelin | 32ba12d | 2020-06-24 14:46:32 +0000 | [diff] [blame] | 1080 | init_db(git_dir, real_git_dir, option_template, GIT_HASH_UNKNOWN, NULL, |
| 1081 | INIT_DB_QUIET); |
Nguyễn Thái Ngọc Duy | 3315870 | 2016-09-25 10:14:37 +0700 | [diff] [blame] | 1082 | |
Ævar Arnfjörð Bjarmason | 27ff1fb | 2021-10-22 10:55:42 +0200 | [diff] [blame] | 1083 | if (real_git_dir) { |
| 1084 | free((char *)git_dir); |
Nguyễn Thái Ngọc Duy | 3315870 | 2016-09-25 10:14:37 +0700 | [diff] [blame] | 1085 | git_dir = real_git_dir; |
Ævar Arnfjörð Bjarmason | 27ff1fb | 2021-10-22 10:55:42 +0200 | [diff] [blame] | 1086 | } |
Nguyễn Thái Ngọc Duy | 3315870 | 2016-09-25 10:14:37 +0700 | [diff] [blame] | 1087 | |
Sean Barag | 552955e | 2020-10-01 03:46:11 +0000 | [diff] [blame] | 1088 | /* |
| 1089 | * additional config can be injected with -c, make sure it's included |
| 1090 | * after init_db, which clears the entire config environment. |
| 1091 | */ |
Jeff King | 84054f7 | 2011-06-09 16:56:19 -0400 | [diff] [blame] | 1092 | write_config(&option_config); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1093 | |
Sean Barag | 552955e | 2020-10-01 03:46:11 +0000 | [diff] [blame] | 1094 | /* |
| 1095 | * re-read config after init_db and write_config to pick up any config |
| 1096 | * injected by --template and --config, respectively. |
| 1097 | */ |
| 1098 | git_config(git_clone_config, NULL); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1099 | |
Sean Barag | de9ed3e | 2020-10-01 03:46:16 +0000 | [diff] [blame] | 1100 | /* |
Li Linchao | 4fe788b | 2021-04-01 10:46:59 +0000 | [diff] [blame] | 1101 | * If option_reject_shallow is specified from CLI option, |
| 1102 | * ignore config_reject_shallow from git_clone_config. |
| 1103 | */ |
| 1104 | if (config_reject_shallow != -1) |
| 1105 | reject_shallow = config_reject_shallow; |
| 1106 | if (option_reject_shallow != -1) |
| 1107 | reject_shallow = option_reject_shallow; |
| 1108 | |
| 1109 | /* |
Josh Steadmon | f05da2b | 2022-02-04 21:00:49 -0800 | [diff] [blame] | 1110 | * If option_filter_submodules is specified from CLI option, |
| 1111 | * ignore config_filter_submodules from git_clone_config. |
| 1112 | */ |
| 1113 | if (config_filter_submodules != -1) |
| 1114 | filter_submodules = config_filter_submodules; |
| 1115 | if (option_filter_submodules != -1) |
| 1116 | filter_submodules = option_filter_submodules; |
| 1117 | |
| 1118 | /* |
| 1119 | * Exit if the user seems to be doing something silly with submodule |
| 1120 | * filter flags (but not with filter configs, as those should be |
| 1121 | * set-and-forget). |
| 1122 | */ |
| 1123 | if (option_filter_submodules > 0 && !filter_options.choice) |
| 1124 | die(_("the option '%s' requires '%s'"), |
| 1125 | "--also-filter-submodules", "--filter"); |
| 1126 | if (option_filter_submodules > 0 && !option_recurse_submodules.nr) |
| 1127 | die(_("the option '%s' requires '%s'"), |
| 1128 | "--also-filter-submodules", "--recurse-submodules"); |
| 1129 | |
| 1130 | /* |
Sean Barag | de9ed3e | 2020-10-01 03:46:16 +0000 | [diff] [blame] | 1131 | * apply the remote name provided by --origin only after this second |
| 1132 | * call to git_config, to ensure it overrides all config-based values. |
| 1133 | */ |
Junio C Hamano | 538dc45 | 2022-05-20 15:26:59 -0700 | [diff] [blame] | 1134 | if (option_origin) { |
Junio C Hamano | 6dfadc8 | 2022-04-30 22:17:15 -0700 | [diff] [blame] | 1135 | free(remote_name); |
Sean Barag | de9ed3e | 2020-10-01 03:46:16 +0000 | [diff] [blame] | 1136 | remote_name = xstrdup(option_origin); |
Junio C Hamano | 6dfadc8 | 2022-04-30 22:17:15 -0700 | [diff] [blame] | 1137 | } |
Sean Barag | de9ed3e | 2020-10-01 03:46:16 +0000 | [diff] [blame] | 1138 | |
Junio C Hamano | afe8a90 | 2022-05-02 09:50:37 -0700 | [diff] [blame] | 1139 | if (!remote_name) |
Sean Barag | de9ed3e | 2020-10-01 03:46:16 +0000 | [diff] [blame] | 1140 | remote_name = xstrdup("origin"); |
| 1141 | |
| 1142 | if (!valid_remote_name(remote_name)) |
| 1143 | die(_("'%s' is not a valid remote name"), remote_name); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1144 | |
| 1145 | if (option_bare) { |
Johannes Schindelin | bc699af | 2008-08-02 21:38:56 +0200 | [diff] [blame] | 1146 | if (option_mirror) |
| 1147 | src_ref_prefix = "refs/"; |
Miklos Vajna | b5ff37a | 2008-11-21 01:45:01 +0100 | [diff] [blame] | 1148 | strbuf_addstr(&branch_top, src_ref_prefix); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1149 | |
| 1150 | git_config_set("core.bare", "true"); |
| 1151 | } else { |
Sean Barag | 75ca390 | 2020-10-01 03:46:15 +0000 | [diff] [blame] | 1152 | strbuf_addf(&branch_top, "refs/remotes/%s/", remote_name); |
Johannes Schindelin | bc699af | 2008-08-02 21:38:56 +0200 | [diff] [blame] | 1153 | } |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1154 | |
Sean Barag | 75ca390 | 2020-10-01 03:46:15 +0000 | [diff] [blame] | 1155 | strbuf_addf(&key, "remote.%s.url", remote_name); |
Sverre Rabbelier | df61c88 | 2010-03-29 11:48:24 -0500 | [diff] [blame] | 1156 | git_config_set(key.buf, repo); |
| 1157 | strbuf_reset(&key); |
| 1158 | |
Ævar Arnfjörð Bjarmason | 0dab246 | 2017-04-26 23:12:33 +0000 | [diff] [blame] | 1159 | if (option_no_tags) { |
Sean Barag | 75ca390 | 2020-10-01 03:46:15 +0000 | [diff] [blame] | 1160 | strbuf_addf(&key, "remote.%s.tagOpt", remote_name); |
Ævar Arnfjörð Bjarmason | 0dab246 | 2017-04-26 23:12:33 +0000 | [diff] [blame] | 1161 | git_config_set(key.buf, "--no-tags"); |
| 1162 | strbuf_reset(&key); |
| 1163 | } |
| 1164 | |
Stefan Beller | f7415b4 | 2016-08-15 14:53:26 -0700 | [diff] [blame] | 1165 | if (option_required_reference.nr || option_optional_reference.nr) |
Junio C Hamano | dbc92b0 | 2011-08-22 18:05:15 -0700 | [diff] [blame] | 1166 | setup_reference(); |
Sverre Rabbelier | 766ac6a | 2010-03-29 11:48:23 -0500 | [diff] [blame] | 1167 | |
Derrick Stolee | 47dbf10 | 2020-01-24 21:19:34 +0000 | [diff] [blame] | 1168 | if (option_sparse_checkout && git_sparse_checkout_init(dir)) |
Derrick Stolee | d89f09c | 2019-11-21 22:04:35 +0000 | [diff] [blame] | 1169 | return 1; |
| 1170 | |
Sean Barag | 75ca390 | 2020-10-01 03:46:15 +0000 | [diff] [blame] | 1171 | remote = remote_get(remote_name); |
SZEDER Gábor | 515be83 | 2018-11-14 11:46:19 +0100 | [diff] [blame] | 1172 | |
René Scharfe | 1af8b8c | 2020-09-05 16:49:30 +0200 | [diff] [blame] | 1173 | refspec_appendf(&remote->fetch, "+%s*:%s*", src_ref_prefix, |
| 1174 | branch_top.buf); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1175 | |
Michael Barabanov | f38aa83 | 2014-07-17 00:09:32 -0700 | [diff] [blame] | 1176 | path = get_repo_path(remote->url[0], &is_bundle); |
| 1177 | is_local = option_local != 0 && path && !is_bundle; |
| 1178 | if (is_local) { |
| 1179 | if (option_depth) |
| 1180 | warning(_("--depth is ignored in local clones; use file:// instead.")); |
Nguyễn Thái Ngọc Duy | 994c2aa | 2016-06-12 17:54:00 +0700 | [diff] [blame] | 1181 | if (option_since) |
| 1182 | warning(_("--shallow-since is ignored in local clones; use file:// instead.")); |
Nguyễn Thái Ngọc Duy | 859e5df | 2016-06-12 17:54:05 +0700 | [diff] [blame] | 1183 | if (option_not.nr) |
| 1184 | warning(_("--shallow-exclude is ignored in local clones; use file:// instead.")); |
Jonathan Tan | 548719f | 2017-12-08 15:58:46 +0000 | [diff] [blame] | 1185 | if (filter_options.choice) |
| 1186 | warning(_("--filter is ignored in local clones; use file:// instead.")); |
Michael Barabanov | f38aa83 | 2014-07-17 00:09:32 -0700 | [diff] [blame] | 1187 | if (!access(mkpath("%s/shallow", path), F_OK)) { |
Li Linchao | 4fe788b | 2021-04-01 10:46:59 +0000 | [diff] [blame] | 1188 | if (reject_shallow) |
| 1189 | die(_("source repository is shallow, reject to clone.")); |
Michael Barabanov | f38aa83 | 2014-07-17 00:09:32 -0700 | [diff] [blame] | 1190 | if (option_local > 0) |
| 1191 | warning(_("source repository is shallow, ignoring --local")); |
| 1192 | is_local = 0; |
| 1193 | } |
| 1194 | } |
| 1195 | if (option_local > 0 && !is_local) |
| 1196 | warning(_("--local is ignored")); |
Taylor Blau | cf8f6ce | 2023-01-24 19:43:48 -0500 | [diff] [blame] | 1197 | |
| 1198 | transport = transport_get(remote, path ? path : remote->url[0]); |
| 1199 | transport_set_verbosity(transport, option_verbosity, option_progress); |
| 1200 | transport->family = family; |
Nguyễn Thái Ngọc Duy | beea415 | 2013-12-05 20:02:39 +0700 | [diff] [blame] | 1201 | transport->cloning = 1; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1202 | |
Derrick Stolee | 86fdd94 | 2022-03-09 16:01:43 +0000 | [diff] [blame] | 1203 | if (is_bundle) { |
| 1204 | struct bundle_header header = BUNDLE_HEADER_INIT; |
| 1205 | int fd = read_bundle_header(path, &header); |
| 1206 | int has_filter = header.filter.choice != LOFC_DISABLED; |
| 1207 | |
| 1208 | if (fd > 0) |
| 1209 | close(fd); |
| 1210 | bundle_header_release(&header); |
| 1211 | if (has_filter) |
| 1212 | die(_("cannot clone from filtered bundle")); |
| 1213 | } |
| 1214 | |
Jeff King | 643f918 | 2013-09-18 16:35:13 -0400 | [diff] [blame] | 1215 | transport_set_option(transport, TRANS_OPT_KEEP, "yes"); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1216 | |
Li Linchao | 4fe788b | 2021-04-01 10:46:59 +0000 | [diff] [blame] | 1217 | if (reject_shallow) |
| 1218 | transport_set_option(transport, TRANS_OPT_REJECT_SHALLOW, "1"); |
Jeff King | 643f918 | 2013-09-18 16:35:13 -0400 | [diff] [blame] | 1219 | if (option_depth) |
| 1220 | transport_set_option(transport, TRANS_OPT_DEPTH, |
| 1221 | option_depth); |
Nguyễn Thái Ngọc Duy | 994c2aa | 2016-06-12 17:54:00 +0700 | [diff] [blame] | 1222 | if (option_since) |
| 1223 | transport_set_option(transport, TRANS_OPT_DEEPEN_SINCE, |
| 1224 | option_since); |
Nguyễn Thái Ngọc Duy | 859e5df | 2016-06-12 17:54:05 +0700 | [diff] [blame] | 1225 | if (option_not.nr) |
| 1226 | transport_set_option(transport, TRANS_OPT_DEEPEN_NOT, |
| 1227 | (const char *)&option_not); |
Jeff King | 643f918 | 2013-09-18 16:35:13 -0400 | [diff] [blame] | 1228 | if (option_single_branch) |
| 1229 | transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1"); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1230 | |
Jeff King | 643f918 | 2013-09-18 16:35:13 -0400 | [diff] [blame] | 1231 | if (option_upload_pack) |
| 1232 | transport_set_option(transport, TRANS_OPT_UPLOADPACK, |
| 1233 | option_upload_pack); |
Nguyễn Thái Ngọc Duy | c6807a4 | 2013-05-26 08:16:17 +0700 | [diff] [blame] | 1234 | |
Jonathan Tan | 6e98305 | 2019-04-12 12:51:22 -0700 | [diff] [blame] | 1235 | if (server_options.nr) |
| 1236 | transport->server_options = &server_options; |
| 1237 | |
Jonathan Tan | 548719f | 2017-12-08 15:58:46 +0000 | [diff] [blame] | 1238 | if (filter_options.choice) { |
Matthew DeVore | cf9ceb5 | 2019-06-27 15:54:10 -0700 | [diff] [blame] | 1239 | const char *spec = |
| 1240 | expand_list_objects_filter_spec(&filter_options); |
Jonathan Tan | 548719f | 2017-12-08 15:58:46 +0000 | [diff] [blame] | 1241 | transport_set_option(transport, TRANS_OPT_LIST_OBJECTS_FILTER, |
Matthew DeVore | cf9ceb5 | 2019-06-27 15:54:10 -0700 | [diff] [blame] | 1242 | spec); |
Jonathan Tan | 548719f | 2017-12-08 15:58:46 +0000 | [diff] [blame] | 1243 | transport_set_option(transport, TRANS_OPT_FROM_PROMISOR, "1"); |
| 1244 | } |
| 1245 | |
| 1246 | if (transport->smart_options && !deepen && !filter_options.choice) |
Jeff King | 643f918 | 2013-09-18 16:35:13 -0400 | [diff] [blame] | 1247 | transport->smart_options->check_self_contained_and_connected = 1; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1248 | |
Derrick Stolee | 5556891 | 2022-08-09 13:11:41 +0000 | [diff] [blame] | 1249 | /* |
| 1250 | * Before fetching from the remote, download and install bundle |
| 1251 | * data from the --bundle-uri option. |
| 1252 | */ |
| 1253 | if (bundle_uri) { |
Derrick Stolee | 4074d3c | 2023-01-31 13:29:15 +0000 | [diff] [blame] | 1254 | int has_heuristic = 0; |
| 1255 | |
Derrick Stolee | 5556891 | 2022-08-09 13:11:41 +0000 | [diff] [blame] | 1256 | /* At this point, we need the_repository to match the cloned repo. */ |
Derrick Stolee | 65da938 | 2022-08-23 10:05:13 -0400 | [diff] [blame] | 1257 | if (repo_init(the_repository, git_dir, work_tree)) |
| 1258 | warning(_("failed to initialize the repo, skipping bundle URI")); |
Derrick Stolee | 4074d3c | 2023-01-31 13:29:15 +0000 | [diff] [blame] | 1259 | else if (fetch_bundle_uri(the_repository, bundle_uri, &has_heuristic)) |
Derrick Stolee | 5556891 | 2022-08-09 13:11:41 +0000 | [diff] [blame] | 1260 | warning(_("failed to fetch objects from bundle URI '%s'"), |
| 1261 | bundle_uri); |
Derrick Stolee | 4074d3c | 2023-01-31 13:29:15 +0000 | [diff] [blame] | 1262 | else if (has_heuristic) |
| 1263 | git_config_set_gently("fetch.bundleuri", bundle_uri); |
Derrick Stolee | 5556891 | 2022-08-09 13:11:41 +0000 | [diff] [blame] | 1264 | } |
Brandon Williams | 402c47d | 2018-07-20 15:07:54 -0700 | [diff] [blame] | 1265 | |
Jonathan Tan | 3983540 | 2021-02-05 12:48:48 -0800 | [diff] [blame] | 1266 | strvec_push(&transport_ls_refs_options.ref_prefixes, "HEAD"); |
| 1267 | refspec_ref_prefixes(&remote->fetch, |
| 1268 | &transport_ls_refs_options.ref_prefixes); |
Brandon Williams | 402c47d | 2018-07-20 15:07:54 -0700 | [diff] [blame] | 1269 | if (option_branch) |
Jonathan Tan | 3983540 | 2021-02-05 12:48:48 -0800 | [diff] [blame] | 1270 | expand_ref_prefix(&transport_ls_refs_options.ref_prefixes, |
| 1271 | option_branch); |
Brandon Williams | 402c47d | 2018-07-20 15:07:54 -0700 | [diff] [blame] | 1272 | if (!option_no_tags) |
Jonathan Tan | 3983540 | 2021-02-05 12:48:48 -0800 | [diff] [blame] | 1273 | strvec_push(&transport_ls_refs_options.ref_prefixes, |
| 1274 | "refs/tags/"); |
Brandon Williams | 402c47d | 2018-07-20 15:07:54 -0700 | [diff] [blame] | 1275 | |
Jonathan Tan | 3983540 | 2021-02-05 12:48:48 -0800 | [diff] [blame] | 1276 | refs = transport_get_remote_refs(transport, &transport_ls_refs_options); |
Nguyễn Thái Ngọc Duy | 6f48d39 | 2012-01-16 16:46:12 +0700 | [diff] [blame] | 1277 | |
Jonathan Tan | dccea60 | 2022-01-24 10:09:09 -0800 | [diff] [blame] | 1278 | if (refs) |
| 1279 | mapped_refs = wanted_peer_refs(refs, &remote->fetch); |
| 1280 | |
Derrick Stolee | 876094a | 2022-12-22 15:14:17 +0000 | [diff] [blame] | 1281 | if (!bundle_uri) { |
| 1282 | /* |
| 1283 | * Populate transport->got_remote_bundle_uri and |
| 1284 | * transport->bundle_uri. We might get nothing. |
| 1285 | */ |
| 1286 | transport_get_remote_bundle_uri(transport); |
| 1287 | |
| 1288 | if (transport->bundles && |
| 1289 | hashmap_get_size(&transport->bundles->bundles)) { |
| 1290 | /* At this point, we need the_repository to match the cloned repo. */ |
| 1291 | if (repo_init(the_repository, git_dir, work_tree)) |
| 1292 | warning(_("failed to initialize the repo, skipping bundle URI")); |
| 1293 | else if (fetch_bundle_list(the_repository, |
| 1294 | transport->bundles)) |
| 1295 | warning(_("failed to fetch advertised bundles")); |
| 1296 | } else { |
| 1297 | clear_bundle_list(transport->bundles); |
| 1298 | FREE_AND_NULL(transport->bundles); |
| 1299 | } |
| 1300 | } |
Ævar Arnfjörð Bjarmason | 0cfde74 | 2022-12-22 15:14:09 +0000 | [diff] [blame] | 1301 | |
Jonathan Tan | dccea60 | 2022-01-24 10:09:09 -0800 | [diff] [blame] | 1302 | if (mapped_refs) { |
brian m. carlson | b65dc2c | 2020-05-25 19:59:05 +0000 | [diff] [blame] | 1303 | int hash_algo = hash_algo_by_ptr(transport_get_hash_algo(transport)); |
| 1304 | |
| 1305 | /* |
| 1306 | * Now that we know what algorithm the remote side is using, |
| 1307 | * let's set ours to the same thing. |
| 1308 | */ |
brian m. carlson | 47ac970 | 2020-09-20 22:35:41 +0000 | [diff] [blame] | 1309 | initialize_repository_version(hash_algo, 1); |
brian m. carlson | b65dc2c | 2020-05-25 19:59:05 +0000 | [diff] [blame] | 1310 | repo_set_hash_algo(the_repository, hash_algo); |
Michael Haggerty | 5b05795 | 2012-02-11 07:20:56 +0100 | [diff] [blame] | 1311 | /* |
| 1312 | * transport_get_remote_refs() may return refs with null sha-1 |
| 1313 | * in mapped_refs (see struct transport->get_refs_list |
| 1314 | * comment). In that case we need fetch it early because |
| 1315 | * remote_head code below relies on it. |
| 1316 | * |
| 1317 | * for normal clones, transport_get_remote_refs() should |
| 1318 | * return reliable ref set, we can delay cloning until after |
| 1319 | * remote HEAD check. |
| 1320 | */ |
| 1321 | for (ref = refs; ref; ref = ref->next) |
brian m. carlson | f4e54d0 | 2015-11-10 02:22:20 +0000 | [diff] [blame] | 1322 | if (is_null_oid(&ref->old_oid)) { |
Michael Haggerty | 5b05795 | 2012-02-11 07:20:56 +0100 | [diff] [blame] | 1323 | complete_refs_before_fetch = 0; |
| 1324 | break; |
| 1325 | } |
| 1326 | |
Taylor Blau | aab179d | 2020-12-03 13:55:13 -0500 | [diff] [blame] | 1327 | if (!is_local && !complete_refs_before_fetch) { |
Jeff King | 6aacb7d | 2021-05-19 07:17:15 -0400 | [diff] [blame] | 1328 | if (transport_fetch_refs(transport, mapped_refs)) |
| 1329 | die(_("remote transport reported error")); |
Taylor Blau | aab179d | 2020-12-03 13:55:13 -0500 | [diff] [blame] | 1330 | } |
Sverre Rabbelier | 86ac751 | 2009-01-23 01:07:32 +0100 | [diff] [blame] | 1331 | } |
Jeff King | 6b58df5 | 2021-09-20 15:04:10 -0400 | [diff] [blame] | 1332 | |
Jeff King | 3d8314f | 2022-07-07 19:57:45 -0400 | [diff] [blame] | 1333 | remote_head = find_ref_by_name(refs, "HEAD"); |
| 1334 | remote_head_points_at = guess_remote_head(remote_head, mapped_refs, 0); |
| 1335 | |
| 1336 | if (option_branch) { |
| 1337 | our_head_points_at = find_remote_branch(mapped_refs, option_branch); |
| 1338 | if (!our_head_points_at) |
Ralf Thielow | a3552ab | 2013-10-11 18:49:02 +0200 | [diff] [blame] | 1339 | die(_("Remote branch %s not found in upstream %s"), |
Jeff King | 3d8314f | 2022-07-07 19:57:45 -0400 | [diff] [blame] | 1340 | option_branch, remote_name); |
| 1341 | } else if (remote_head_points_at) { |
| 1342 | our_head_points_at = remote_head_points_at; |
| 1343 | } else if (remote_head) { |
Jeff King | 7a4ee28 | 2009-08-26 15:05:08 -0400 | [diff] [blame] | 1344 | our_head_points_at = NULL; |
Jeff King | 3d8314f | 2022-07-07 19:57:45 -0400 | [diff] [blame] | 1345 | } else { |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1346 | const char *branch; |
Sverre Rabbelier | 86ac751 | 2009-01-23 01:07:32 +0100 | [diff] [blame] | 1347 | |
Jeff King | 3d8314f | 2022-07-07 19:57:45 -0400 | [diff] [blame] | 1348 | if (!mapped_refs) { |
| 1349 | warning(_("You appear to have cloned an empty repository.")); |
| 1350 | option_no_checkout = 1; |
| 1351 | } |
Jonathan Tan | 4f37d45 | 2021-02-05 12:48:49 -0800 | [diff] [blame] | 1352 | |
Jeff King | 6b58df5 | 2021-09-20 15:04:10 -0400 | [diff] [blame] | 1353 | if (transport_ls_refs_options.unborn_head_target && |
| 1354 | skip_prefix(transport_ls_refs_options.unborn_head_target, |
| 1355 | "refs/heads/", &branch)) { |
Jeff King | daf7898 | 2022-07-11 05:21:52 -0400 | [diff] [blame] | 1356 | unborn_head = xstrdup(transport_ls_refs_options.unborn_head_target); |
Jeff King | 6b58df5 | 2021-09-20 15:04:10 -0400 | [diff] [blame] | 1357 | } else { |
| 1358 | branch = git_default_branch_name(0); |
Jeff King | daf7898 | 2022-07-11 05:21:52 -0400 | [diff] [blame] | 1359 | unborn_head = xstrfmt("refs/heads/%s", branch); |
Johannes Schindelin | 0cc1b47 | 2020-06-24 14:46:34 +0000 | [diff] [blame] | 1360 | } |
Jeff King | 6b58df5 | 2021-09-20 15:04:10 -0400 | [diff] [blame] | 1361 | |
Jeff King | cc8fcd1 | 2022-07-07 19:59:35 -0400 | [diff] [blame] | 1362 | /* |
| 1363 | * We may have selected a local default branch name "foo", |
| 1364 | * and even though the remote's HEAD does not point there, |
| 1365 | * it may still have a "foo" branch. If so, set it up so |
| 1366 | * that we can follow the usual checkout code later. |
| 1367 | * |
| 1368 | * Note that for an empty repo we'll already have set |
| 1369 | * option_no_checkout above, which would work against us here. |
| 1370 | * But for an empty repo, find_remote_branch() can never find |
| 1371 | * a match. |
| 1372 | */ |
| 1373 | our_head_points_at = find_remote_branch(mapped_refs, branch); |
Sverre Rabbelier | 86ac751 | 2009-01-23 01:07:32 +0100 | [diff] [blame] | 1374 | } |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1375 | |
Ralf Thielow | 31b808a | 2012-09-20 20:04:08 +0200 | [diff] [blame] | 1376 | write_refspec_config(src_ref_prefix, our_head_points_at, |
| 1377 | remote_head_points_at, &branch_top); |
| 1378 | |
Jonathan Tan | 548719f | 2017-12-08 15:58:46 +0000 | [diff] [blame] | 1379 | if (filter_options.choice) |
Sean Barag | 75ca390 | 2020-10-01 03:46:15 +0000 | [diff] [blame] | 1380 | partial_clone_register(remote_name, &filter_options); |
Jonathan Tan | 548719f | 2017-12-08 15:58:46 +0000 | [diff] [blame] | 1381 | |
Nguyễn Thái Ngọc Duy | 6f48d39 | 2012-01-16 16:46:12 +0700 | [diff] [blame] | 1382 | if (is_local) |
| 1383 | clone_local(path, git_dir); |
Jonathan Tan | dccea60 | 2022-01-24 10:09:09 -0800 | [diff] [blame] | 1384 | else if (mapped_refs && complete_refs_before_fetch) { |
Jeff King | 6aacb7d | 2021-05-19 07:17:15 -0400 | [diff] [blame] | 1385 | if (transport_fetch_refs(transport, mapped_refs)) |
| 1386 | die(_("remote transport reported error")); |
Taylor Blau | aab179d | 2020-12-03 13:55:13 -0500 | [diff] [blame] | 1387 | } |
Jeff King | 7a4ee28 | 2009-08-26 15:05:08 -0400 | [diff] [blame] | 1388 | |
Nguyễn Thái Ngọc Duy | 960b7d1 | 2012-01-16 16:46:11 +0700 | [diff] [blame] | 1389 | update_remote_refs(refs, mapped_refs, remote_head_points_at, |
Jonathan Tan | 548719f | 2017-12-08 15:58:46 +0000 | [diff] [blame] | 1390 | branch_top.buf, reflog_msg.buf, transport, |
Jonathan Tan | 2b98478 | 2020-03-20 15:00:45 -0700 | [diff] [blame] | 1391 | !is_local); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1392 | |
Jeff King | daf7898 | 2022-07-11 05:21:52 -0400 | [diff] [blame] | 1393 | update_head(our_head_points_at, remote_head, unborn_head, reflog_msg.buf); |
Shawn O. Pearce | 1db4a75 | 2008-07-08 04:46:06 +0000 | [diff] [blame] | 1394 | |
Jeff King | 72c5f88 | 2016-09-22 01:24:46 -0400 | [diff] [blame] | 1395 | /* |
| 1396 | * We want to show progress for recursive submodule clones iff |
| 1397 | * we did so for the main clone. But only the transport knows |
| 1398 | * the final decision for this flag, so we need to rescue the value |
| 1399 | * before we free the transport. |
| 1400 | */ |
| 1401 | submodule_progress = transport->progress; |
| 1402 | |
Patrick Steinhardt | 58d4d7f | 2022-01-07 11:55:47 +0100 | [diff] [blame] | 1403 | transport_unlock_pack(transport, 0); |
Nguyễn Thái Ngọc Duy | 6f48d39 | 2012-01-16 16:46:12 +0700 | [diff] [blame] | 1404 | transport_disconnect(transport); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1405 | |
Johannes Schindelin | 786b150 | 2015-10-06 15:18:47 +0200 | [diff] [blame] | 1406 | if (option_dissociate) { |
Derrick Stolee | 2d511cf | 2019-05-17 11:41:49 -0700 | [diff] [blame] | 1407 | close_object_store(the_repository->objects); |
Junio C Hamano | fb1d6da | 2014-10-14 12:38:52 -0700 | [diff] [blame] | 1408 | dissociate_from_references(); |
Johannes Schindelin | 786b150 | 2015-10-06 15:18:47 +0200 | [diff] [blame] | 1409 | } |
Junio C Hamano | fb1d6da | 2014-10-14 12:38:52 -0700 | [diff] [blame] | 1410 | |
Jeff King | d3b3462 | 2013-03-26 18:22:09 -0400 | [diff] [blame] | 1411 | junk_mode = JUNK_LEAVE_REPO; |
Josh Steadmon | f05da2b | 2022-02-04 21:00:49 -0800 | [diff] [blame] | 1412 | err = checkout(submodule_progress, filter_submodules); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1413 | |
Sean Barag | de9ed3e | 2020-10-01 03:46:16 +0000 | [diff] [blame] | 1414 | free(remote_name); |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1415 | strbuf_release(&reflog_msg); |
Miklos Vajna | b5ff37a | 2008-11-21 01:45:01 +0100 | [diff] [blame] | 1416 | strbuf_release(&branch_top); |
| 1417 | strbuf_release(&key); |
Andrzej Hunt | 0c45427 | 2021-03-14 18:47:36 +0000 | [diff] [blame] | 1418 | free_refs(mapped_refs); |
| 1419 | free_refs(remote_head_points_at); |
Jeff King | daf7898 | 2022-07-11 05:21:52 -0400 | [diff] [blame] | 1420 | free(unborn_head); |
Andrzej Hunt | 0c45427 | 2021-03-14 18:47:36 +0000 | [diff] [blame] | 1421 | free(dir); |
| 1422 | free(path); |
Ævar Arnfjörð Bjarmason | 81e5c39 | 2023-02-07 00:07:39 +0100 | [diff] [blame] | 1423 | free(repo_to_free); |
Jeff King | d3b3462 | 2013-03-26 18:22:09 -0400 | [diff] [blame] | 1424 | junk_mode = JUNK_LEAVE_ALL; |
Stefan Beller | 50b6773 | 2014-08-10 15:57:56 +0200 | [diff] [blame] | 1425 | |
Ævar Arnfjörð Bjarmason | f36d4f8 | 2022-02-05 01:08:14 +0100 | [diff] [blame] | 1426 | transport_ls_refs_options_release(&transport_ls_refs_options); |
Jeff King | dfa7a6c | 2009-03-03 00:37:51 -0500 | [diff] [blame] | 1427 | return err; |
Daniel Barkalow | 8434c2f | 2008-04-27 13:39:30 -0400 | [diff] [blame] | 1428 | } |