blob: bbd169ceb49b2e09197e469aeb572e9aa54d4b85 [file] [log] [blame]
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001/*
2 * Builtin "git clone"
3 *
4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>,
5 * 2008 Daniel Barkalow <barkalow@iabervon.org>
6 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
7 *
8 * Clone a repository into a different directory that does not yet exist.
9 */
10
Stephen Boydc2e86ad2011-03-22 00:51:05 -070011#include "builtin.h"
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040012#include "parse-options.h"
13#include "fetch-pack.h"
14#include "refs.h"
15#include "tree.h"
16#include "tree-walk.h"
17#include "unpack-trees.h"
18#include "transport.h"
19#include "strbuf.h"
20#include "dir.h"
Jeff King4a16d072009-01-22 01:02:35 -050021#include "sigchain.h"
Junio C Hamanoa9f2c132009-03-03 22:29:55 -080022#include "branch.h"
Jay Soffian8ef51732009-02-25 03:32:13 -050023#include "remote.h"
Jeff Kingdfa7a6c2009-03-03 00:37:51 -050024#include "run-command.h"
Jeff King0433ad12013-03-25 16:26:27 -040025#include "connected.h"
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040026
27/*
28 * Overall FIXMEs:
29 * - respect DB_ENVIRONMENT for .git/objects.
30 *
31 * Implementation notes:
32 * - dropping use-separate-remote and no-separate-remote compatibility
33 *
34 */
35static const char * const builtin_clone_usage[] = {
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +070036 N_("git clone [options] [--] <repo> [<dir>]"),
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040037 NULL
38};
39
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +070040static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
Jeff King189260b2012-05-30 07:10:16 -040041static int option_local = -1, option_no_hardlinks, option_shared, option_recursive;
Junio C Hamanodbc92b02011-08-22 18:05:15 -070042static char *option_template, *option_depth;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040043static char *option_origin = NULL;
Jeff King7a4ee282009-08-26 15:05:08 -040044static char *option_branch = NULL;
Nguyễn Thái Ngọc Duyb57fb802011-03-19 22:16:56 +070045static const char *real_git_dir;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040046static char *option_upload_pack = "git-upload-pack";
Tay Ray Chuan5bd631b2010-02-24 20:50:25 +080047static int option_verbosity;
Clemens Buchacher01fdc212012-02-13 21:17:15 +010048static int option_progress = -1;
Jeff King84054f72011-06-09 16:56:19 -040049static struct string_list option_config;
Junio C Hamanodbc92b02011-08-22 18:05:15 -070050static struct string_list option_reference;
51
52static int opt_parse_reference(const struct option *opt, const char *arg, int unset)
53{
54 struct string_list *option_reference = opt->value;
55 if (!arg)
56 return -1;
57 string_list_append(option_reference, arg);
58 return 0;
59}
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040060
61static struct option builtin_clone_options[] = {
Tay Ray Chuan5bd631b2010-02-24 20:50:25 +080062 OPT__VERBOSITY(&option_verbosity),
Clemens Buchacher01fdc212012-02-13 21:17:15 +010063 OPT_BOOL(0, "progress", &option_progress,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +070064 N_("force progress reporting")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +020065 OPT_BOOL('n', "no-checkout", &option_no_checkout,
66 N_("don't create a checkout")),
Stefan Beller4741edd2013-08-03 13:51:18 +020067 OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")),
68 OPT_HIDDEN_BOOL(0, "naked", &option_bare,
69 N_("create a bare repository")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +020070 OPT_BOOL(0, "mirror", &option_mirror,
71 N_("create a mirror repository (implies bare)")),
Jeff King189260b2012-05-30 07:10:16 -040072 OPT_BOOL('l', "local", &option_local,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +070073 N_("to clone from a local repository")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +020074 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +070075 N_("don't use local hardlinks, always copy")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +020076 OPT_BOOL('s', "shared", &option_shared,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +070077 N_("setup as shared repository")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +020078 OPT_BOOL(0, "recursive", &option_recursive,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +070079 N_("initialize submodules in the clone")),
Stefan Bellerd5d09d42013-08-03 13:51:19 +020080 OPT_BOOL(0, "recurse-submodules", &option_recursive,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +070081 N_("initialize submodules in the clone")),
82 OPT_STRING(0, "template", &option_template, N_("template-directory"),
83 N_("directory from which templates will be used")),
84 OPT_CALLBACK(0 , "reference", &option_reference, N_("repo"),
85 N_("reference repository"), &opt_parse_reference),
86 OPT_STRING('o', "origin", &option_origin, N_("name"),
87 N_("use <name> instead of 'origin' to track upstream")),
88 OPT_STRING('b', "branch", &option_branch, N_("branch"),
89 N_("checkout <branch> instead of the remote's HEAD")),
90 OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
91 N_("path to git-upload-pack on the remote")),
92 OPT_STRING(0, "depth", &option_depth, N_("depth"),
93 N_("create a shallow clone of that depth")),
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +070094 OPT_BOOL(0, "single-branch", &option_single_branch,
Nguyễn Thái Ngọc Duy32b77ad2012-08-20 19:32:02 +070095 N_("clone only one branch, HEAD or --branch")),
96 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
97 N_("separate git dir from working tree")),
98 OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
99 N_("set config inside the new repository")),
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400100 OPT_END()
101};
102
Johan Herlande7fed182009-08-20 01:07:43 +0200103static const char *argv_submodule[] = {
104 "submodule", "update", "--init", "--recursive", NULL
105};
106
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400107static char *get_repo_path(const char *repo, int *is_bundle)
108{
Jeff Kingb3256eb2012-02-02 16:59:13 -0500109 static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400110 static char *bundle_suffix[] = { ".bundle", "" };
111 struct stat st;
112 int i;
113
114 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
115 const char *path;
116 path = mkpath("%s%s", repo, suffix[i]);
Nguyễn Thái Ngọc Duy9b0ebc72011-08-21 18:58:09 +0700117 if (stat(path, &st))
118 continue;
Jeff Kingb3256eb2012-02-02 16:59:13 -0500119 if (S_ISDIR(st.st_mode) && is_git_directory(path)) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400120 *is_bundle = 0;
Carlos Martín Nietoe2a57aa2011-03-17 12:26:46 +0100121 return xstrdup(absolute_path(path));
Nguyễn Thái Ngọc Duy9b0ebc72011-08-21 18:58:09 +0700122 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
123 /* Is it a "gitfile"? */
124 char signature[8];
125 int len, fd = open(path, O_RDONLY);
126 if (fd < 0)
127 continue;
128 len = read_in_full(fd, signature, 8);
129 close(fd);
130 if (len != 8 || strncmp(signature, "gitdir: ", 8))
131 continue;
132 path = read_gitfile(path);
133 if (path) {
134 *is_bundle = 0;
135 return xstrdup(absolute_path(path));
136 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400137 }
138 }
139
140 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
141 const char *path;
142 path = mkpath("%s%s", repo, bundle_suffix[i]);
143 if (!stat(path, &st) && S_ISREG(st.st_mode)) {
144 *is_bundle = 1;
Carlos Martín Nietoe2a57aa2011-03-17 12:26:46 +0100145 return xstrdup(absolute_path(path));
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400146 }
147 }
148
149 return NULL;
150}
151
Johannes Schindelin6612f872008-08-01 16:01:36 +0200152static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400153{
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200154 const char *end = repo + strlen(repo), *start;
Alex Riesen8a94bc72009-05-13 18:32:06 +0200155 char *dir;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400156
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200157 /*
Alex Riesen8a94bc72009-05-13 18:32:06 +0200158 * Strip trailing spaces, slashes and /.git
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200159 */
Alex Riesen8a94bc72009-05-13 18:32:06 +0200160 while (repo < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200161 end--;
162 if (end - repo > 5 && is_dir_sep(end[-5]) &&
163 !strncmp(end - 4, ".git", 4)) {
164 end -= 5;
165 while (repo < end && is_dir_sep(end[-1]))
166 end--;
167 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400168
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200169 /*
170 * Find last component, but be prepared that repo could have
171 * the form "remote.example.com:foo.git", i.e. no slash
172 * in the directory part.
173 */
174 start = end;
175 while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
176 start--;
177
178 /*
179 * Strip .{bundle,git}.
180 */
181 if (is_bundle) {
182 if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
183 end -= 7;
184 } else {
185 if (end - start > 4 && !strncmp(end - 4, ".git", 4))
186 end -= 4;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400187 }
188
Johannes Schindelin6612f872008-08-01 16:01:36 +0200189 if (is_bare) {
Miklos Vajna32716a22008-11-21 01:44:59 +0100190 struct strbuf result = STRBUF_INIT;
191 strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
Linus Torvalds2af202b2009-06-18 10:28:43 -0700192 dir = strbuf_detach(&result, NULL);
Alex Riesen8a94bc72009-05-13 18:32:06 +0200193 } else
194 dir = xstrndup(start, end - start);
195 /*
196 * Replace sequences of 'control' characters and whitespace
197 * with one ascii space, remove leading and trailing spaces.
198 */
199 if (*dir) {
200 char *out = dir;
201 int prev_space = 1 /* strip leading whitespace */;
202 for (end = dir; *end; ++end) {
203 char ch = *end;
204 if ((unsigned char)ch < '\x20')
205 ch = '\x20';
206 if (isspace(ch)) {
207 if (prev_space)
208 continue;
209 prev_space = 1;
210 } else
211 prev_space = 0;
212 *out++ = ch;
213 }
214 *out = '\0';
215 if (out > dir && prev_space)
216 out[-1] = '\0';
Johannes Schindelin6612f872008-08-01 16:01:36 +0200217 }
Alex Riesen8a94bc72009-05-13 18:32:06 +0200218 return dir;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400219}
220
Clemens Buchacher44a68fd2008-09-03 20:55:55 +0200221static void strip_trailing_slashes(char *dir)
222{
223 char *end = dir + strlen(dir);
224
225 while (dir < end - 1 && is_dir_sep(end[-1]))
226 end--;
227 *end = '\0';
228}
229
Junio C Hamanodbc92b02011-08-22 18:05:15 -0700230static int add_one_reference(struct string_list_item *item, void *cb_data)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400231{
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700232 char *ref_git;
Aaron Schrabb552b562013-04-09 18:22:00 -0400233 const char *repo;
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700234 struct strbuf alternate = STRBUF_INIT;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400235
Aaron Schrabb552b562013-04-09 18:22:00 -0400236 /* Beware: read_gitfile(), real_path() and mkpath() return static buffer */
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700237 ref_git = xstrdup(real_path(item->string));
Aaron Schrabb552b562013-04-09 18:22:00 -0400238
239 repo = read_gitfile(ref_git);
240 if (!repo)
241 repo = read_gitfile(mkpath("%s/.git", ref_git));
242 if (repo) {
243 free(ref_git);
244 ref_git = xstrdup(repo);
245 }
246
247 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
Ramsay Jones4e2d0942012-09-04 18:31:14 +0100248 char *ref_git_git = mkpathdup("%s/.git", ref_git);
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700249 free(ref_git);
250 ref_git = ref_git_git;
251 } else if (!is_directory(mkpath("%s/objects", ref_git)))
Aaron Schrab06585692013-04-08 18:46:39 -0400252 die(_("reference repository '%s' is not a local repository."),
Junio C Hamanodbc92b02011-08-22 18:05:15 -0700253 item->string);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400254
Nguyễn Thái Ngọc Duy606e4352013-12-05 20:02:31 +0700255 if (!access(mkpath("%s/shallow", ref_git), F_OK))
256 die(_("reference repository '%s' is shallow"), item->string);
257
258 if (!access(mkpath("%s/info/grafts", ref_git), F_OK))
259 die(_("reference repository '%s' is grafted"), item->string);
260
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700261 strbuf_addf(&alternate, "%s/objects", ref_git);
262 add_to_alternates_file(alternate.buf);
263 strbuf_release(&alternate);
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700264 free(ref_git);
Junio C Hamanodbc92b02011-08-22 18:05:15 -0700265 return 0;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400266}
267
Junio C Hamanodbc92b02011-08-22 18:05:15 -0700268static void setup_reference(void)
269{
270 for_each_string_list(&option_reference, add_one_reference, NULL);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400271}
272
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700273static void copy_alternates(struct strbuf *src, struct strbuf *dst,
274 const char *src_repo)
275{
276 /*
277 * Read from the source objects/info/alternates file
278 * and copy the entries to corresponding file in the
279 * destination repository with add_to_alternates_file().
280 * Both src and dst have "$path/objects/info/alternates".
281 *
282 * Instead of copying bit-for-bit from the original,
283 * we need to append to existing one so that the already
284 * created entry via "clone -s" is not lost, and also
285 * to turn entries with paths relative to the original
286 * absolute, so that they can be used in the new repository.
287 */
288 FILE *in = fopen(src->buf, "r");
289 struct strbuf line = STRBUF_INIT;
290
291 while (strbuf_getline(&line, in, '\n') != EOF) {
292 char *abs_path, abs_buf[PATH_MAX];
293 if (!line.len || line.buf[0] == '#')
294 continue;
295 if (is_absolute_path(line.buf)) {
296 add_to_alternates_file(line.buf);
297 continue;
298 }
299 abs_path = mkpath("%s/objects/%s", src_repo, line.buf);
300 normalize_path_copy(abs_buf, abs_path);
301 add_to_alternates_file(abs_buf);
302 }
303 strbuf_release(&line);
304 fclose(in);
305}
306
307static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
308 const char *src_repo, int src_baselen)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400309{
310 struct dirent *de;
311 struct stat buf;
312 int src_len, dest_len;
313 DIR *dir;
314
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100315 dir = opendir(src->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400316 if (!dir)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000317 die_errno(_("failed to open '%s'"), src->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400318
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100319 if (mkdir(dest->buf, 0777)) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400320 if (errno != EEXIST)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000321 die_errno(_("failed to create directory '%s'"), dest->buf);
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100322 else if (stat(dest->buf, &buf))
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000323 die_errno(_("failed to stat '%s'"), dest->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400324 else if (!S_ISDIR(buf.st_mode))
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000325 die(_("%s exists and is not a directory"), dest->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400326 }
327
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100328 strbuf_addch(src, '/');
329 src_len = src->len;
330 strbuf_addch(dest, '/');
331 dest_len = dest->len;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400332
333 while ((de = readdir(dir)) != NULL) {
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100334 strbuf_setlen(src, src_len);
335 strbuf_addstr(src, de->d_name);
336 strbuf_setlen(dest, dest_len);
337 strbuf_addstr(dest, de->d_name);
338 if (stat(src->buf, &buf)) {
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000339 warning (_("failed to stat %s\n"), src->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400340 continue;
341 }
342 if (S_ISDIR(buf.st_mode)) {
343 if (de->d_name[0] != '.')
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700344 copy_or_link_directory(src, dest,
345 src_repo, src_baselen);
346 continue;
347 }
348
349 /* Files that cannot be copied bit-for-bit... */
350 if (!strcmp(src->buf + src_baselen, "/info/alternates")) {
351 copy_alternates(src, dest, src_repo);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400352 continue;
353 }
354
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100355 if (unlink(dest->buf) && errno != ENOENT)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000356 die_errno(_("failed to unlink '%s'"), dest->buf);
Daniel Barkalowfdabc242008-05-20 14:15:14 -0400357 if (!option_no_hardlinks) {
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100358 if (!link(src->buf, dest->buf))
Daniel Barkalowfdabc242008-05-20 14:15:14 -0400359 continue;
Jeff King189260b2012-05-30 07:10:16 -0400360 if (option_local > 0)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000361 die_errno(_("failed to create link '%s'"), dest->buf);
Daniel Barkalowfdabc242008-05-20 14:15:14 -0400362 option_no_hardlinks = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400363 }
Clemens Buchacherf7835a22009-09-12 11:03:48 +0200364 if (copy_file_with_time(dest->buf, src->buf, 0666))
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000365 die_errno(_("failed to copy file to '%s'"), dest->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400366 }
Brandon Casey689ef4d2008-05-17 23:00:01 -0500367 closedir(dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400368}
369
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700370static void clone_local(const char *src_repo, const char *dest_repo)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400371{
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700372 if (option_shared) {
373 struct strbuf alt = STRBUF_INIT;
374 strbuf_addf(&alt, "%s/objects", src_repo);
375 add_to_alternates_file(alt.buf);
376 strbuf_release(&alt);
377 } else {
378 struct strbuf src = STRBUF_INIT;
379 struct strbuf dest = STRBUF_INIT;
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100380 strbuf_addf(&src, "%s/objects", src_repo);
381 strbuf_addf(&dest, "%s/objects", dest_repo);
Junio C Hamanoe6baf4a2011-08-22 18:05:16 -0700382 copy_or_link_directory(&src, &dest, src_repo, src.len);
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100383 strbuf_release(&src);
384 strbuf_release(&dest);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400385 }
386
Junio C Hamano28ba96a2010-04-23 14:37:22 +0200387 if (0 <= option_verbosity)
Jeff King68b939b2013-09-18 16:05:13 -0400388 fprintf(stderr, _("done.\n"));
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400389}
390
391static const char *junk_work_tree;
392static const char *junk_git_dir;
Ali Gholami Rudie161acd2009-04-01 12:34:44 +0430393static pid_t junk_pid;
Ramsay Jones85064632013-04-27 19:39:04 +0100394static enum {
Jeff Kingd3b34622013-03-26 18:22:09 -0400395 JUNK_LEAVE_NONE,
396 JUNK_LEAVE_REPO,
397 JUNK_LEAVE_ALL
398} junk_mode = JUNK_LEAVE_NONE;
399
400static const char junk_leave_repo_msg[] =
401N_("Clone succeeded, but checkout failed.\n"
402 "You can inspect what was checked out with 'git status'\n"
403 "and retry the checkout with 'git checkout -f HEAD'\n");
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400404
405static void remove_junk(void)
406{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500407 struct strbuf sb = STRBUF_INIT;
Jeff Kingd3b34622013-03-26 18:22:09 -0400408
409 switch (junk_mode) {
410 case JUNK_LEAVE_REPO:
411 warning("%s", _(junk_leave_repo_msg));
412 /* fall-through */
413 case JUNK_LEAVE_ALL:
414 return;
415 default:
416 /* proceed to removal */
417 break;
418 }
419
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400420 if (getpid() != junk_pid)
421 return;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400422 if (junk_git_dir) {
423 strbuf_addstr(&sb, junk_git_dir);
424 remove_dir_recursively(&sb, 0);
425 strbuf_reset(&sb);
426 }
427 if (junk_work_tree) {
428 strbuf_addstr(&sb, junk_work_tree);
429 remove_dir_recursively(&sb, 0);
430 strbuf_reset(&sb);
431 }
432}
433
434static void remove_junk_on_signal(int signo)
435{
436 remove_junk();
Jeff King4a16d072009-01-22 01:02:35 -0500437 sigchain_pop(signo);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400438 raise(signo);
439}
440
Nguyễn Thái Ngọc Duy9e585042012-01-16 16:46:13 +0700441static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
442{
443 struct ref *ref;
444 struct strbuf head = STRBUF_INIT;
445 strbuf_addstr(&head, "refs/heads/");
446 strbuf_addstr(&head, branch);
447 ref = find_ref_by_name(refs, head.buf);
448 strbuf_release(&head);
Nguyễn Thái Ngọc Duy5a7d5b62012-01-16 16:46:15 +0700449
450 if (ref)
451 return ref;
452
453 strbuf_addstr(&head, "refs/tags/");
454 strbuf_addstr(&head, branch);
455 ref = find_ref_by_name(refs, head.buf);
456 strbuf_release(&head);
457
Nguyễn Thái Ngọc Duy9e585042012-01-16 16:46:13 +0700458 return ref;
459}
460
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400461static struct ref *wanted_peer_refs(const struct ref *refs,
462 struct refspec *refspec)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400463{
Jeff Kingc1921c12011-06-07 19:03:22 -0400464 struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
465 struct ref *local_refs = head;
466 struct ref **tail = head ? &head->next : &local_refs;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400467
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700468 if (option_single_branch) {
469 struct ref *remote_head = NULL;
470
471 if (!option_branch)
472 remote_head = guess_remote_head(head, refs, 0);
Nguyễn Thái Ngọc Duy0ec4b162012-06-22 16:35:47 +0700473 else {
474 local_refs = NULL;
475 tail = &local_refs;
476 remote_head = copy_ref(find_remote_branch(refs, option_branch));
477 }
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700478
479 if (!remote_head && option_branch)
480 warning(_("Could not find remote branch %s to clone."),
481 option_branch);
Nguyễn Thái Ngọc Duy5a7d5b62012-01-16 16:46:15 +0700482 else {
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700483 get_fetch_map(remote_head, refspec, &tail, 0);
Nguyễn Thái Ngọc Duy5a7d5b62012-01-16 16:46:15 +0700484
485 /* if --branch=tag, pull the requested tag explicitly */
486 get_fetch_map(remote_head, tag_refspec, &tail, 0);
487 }
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700488 } else
489 get_fetch_map(refs, refspec, &tail, 0);
490
491 if (!option_mirror && !option_single_branch)
Johannes Schindelin468386a2008-08-08 04:29:35 +0200492 get_fetch_map(refs, tag_refspec, &tail, 0);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400493
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400494 return local_refs;
495}
496
497static void write_remote_refs(const struct ref *local_refs)
498{
499 const struct ref *r;
500
Michael Haggerty9f69d292013-06-20 10:37:46 +0200501 lock_packed_refs(LOCK_DIE_ON_ERROR);
502
Jeff Kingc1921c12011-06-07 19:03:22 -0400503 for (r = local_refs; r; r = r->next) {
504 if (!r->peer_ref)
505 continue;
Michael Haggerty39ef7fa2012-01-17 06:50:34 +0100506 add_packed_ref(r->peer_ref->name, r->old_sha1);
Jeff Kingc1921c12011-06-07 19:03:22 -0400507 }
Johan Herland3e8aded2008-06-15 16:06:16 +0200508
Michael Haggerty9f69d292013-06-20 10:37:46 +0200509 if (commit_packed_refs())
510 die_errno("unable to overwrite old ref-pack file");
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400511}
512
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700513static void write_followtags(const struct ref *refs, const char *msg)
514{
515 const struct ref *ref;
516 for (ref = refs; ref; ref = ref->next) {
Christian Couder59556542013-11-30 21:55:40 +0100517 if (!starts_with(ref->name, "refs/tags/"))
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700518 continue;
Christian Couder59556542013-11-30 21:55:40 +0100519 if (ends_with(ref->name, "^{}"))
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700520 continue;
521 if (!has_sha1_file(ref->old_sha1))
522 continue;
523 update_ref(msg, ref->name, ref->old_sha1,
Michael Haggertyf4124112014-04-07 15:47:56 +0200524 NULL, 0, UPDATE_REFS_DIE_ON_ERR);
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700525 }
526}
527
Jeff King0433ad12013-03-25 16:26:27 -0400528static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
529{
530 struct ref **rm = cb_data;
531 struct ref *ref = *rm;
532
533 /*
534 * Skip anything missing a peer_ref, which we are not
535 * actually going to write a ref for.
536 */
537 while (ref && !ref->peer_ref)
538 ref = ref->next;
539 /* Returning -1 notes "end of list" to the caller. */
540 if (!ref)
541 return -1;
542
543 hashcpy(sha1, ref->old_sha1);
544 *rm = ref->next;
545 return 0;
546}
547
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700548static void update_remote_refs(const struct ref *refs,
549 const struct ref *mapped_refs,
550 const struct ref *remote_head_points_at,
551 const char *branch_top,
Nguyễn Thái Ngọc Duyc6807a42013-05-26 08:16:17 +0700552 const char *msg,
Junio C Hamano45ed4af2013-07-18 12:48:28 -0700553 struct transport *transport,
Jeff King125a05f2013-07-08 03:30:41 -0400554 int check_connectivity)
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700555{
Jeff King0433ad12013-03-25 16:26:27 -0400556 const struct ref *rm = mapped_refs;
557
Jeff King125a05f2013-07-08 03:30:41 -0400558 if (check_connectivity) {
Jeff King2856cbf2013-09-18 16:06:50 -0400559 if (transport->progress)
Jeff King68b939b2013-09-18 16:05:13 -0400560 fprintf(stderr, _("Checking connectivity... "));
Junio C Hamano45ed4af2013-07-18 12:48:28 -0700561 if (check_everything_connected_with_transport(iterate_ref_map,
562 0, &rm, transport))
Jeff King125a05f2013-07-08 03:30:41 -0400563 die(_("remote did not send all necessary objects"));
Jeff King2856cbf2013-09-18 16:06:50 -0400564 if (transport->progress)
Junio C Hamanof94a84c2013-10-18 13:49:51 -0700565 fprintf(stderr, _("done.\n"));
Jeff King125a05f2013-07-08 03:30:41 -0400566 }
Jeff King0433ad12013-03-25 16:26:27 -0400567
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700568 if (refs) {
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700569 write_remote_refs(mapped_refs);
570 if (option_single_branch)
571 write_followtags(refs, msg);
572 }
573
574 if (remote_head_points_at && !option_bare) {
575 struct strbuf head_ref = STRBUF_INIT;
576 strbuf_addstr(&head_ref, branch_top);
577 strbuf_addstr(&head_ref, "HEAD");
578 create_symref(head_ref.buf,
579 remote_head_points_at->peer_ref->name,
580 msg);
581 }
582}
583
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700584static void update_head(const struct ref *our, const struct ref *remote,
585 const char *msg)
586{
Jeff Kingcf4fff52014-06-18 15:44:19 -0400587 const char *head;
588 if (our && skip_prefix(our->name, "refs/heads/", &head)) {
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700589 /* Local default branch link */
590 create_symref("HEAD", our->name, NULL);
591 if (!option_bare) {
Michael Haggertyf4124112014-04-07 15:47:56 +0200592 update_ref(msg, "HEAD", our->old_sha1, NULL, 0,
593 UPDATE_REFS_DIE_ON_ERR);
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700594 install_branch_config(0, head, option_origin, our->name);
595 }
Nguyễn Thái Ngọc Duy5a7d5b62012-01-16 16:46:15 +0700596 } else if (our) {
597 struct commit *c = lookup_commit_reference(our->old_sha1);
598 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
599 update_ref(msg, "HEAD", c->object.sha1,
Michael Haggertyf4124112014-04-07 15:47:56 +0200600 NULL, REF_NODEREF, UPDATE_REFS_DIE_ON_ERR);
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700601 } else if (remote) {
602 /*
603 * We know remote HEAD points to a non-branch, or
Nguyễn Thái Ngọc Duy920b6912012-01-16 16:46:14 +0700604 * HEAD points to a branch but we don't know which one.
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700605 * Detach HEAD in all these cases.
606 */
607 update_ref(msg, "HEAD", remote->old_sha1,
Michael Haggertyf4124112014-04-07 15:47:56 +0200608 NULL, REF_NODEREF, UPDATE_REFS_DIE_ON_ERR);
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700609 }
610}
611
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700612static int checkout(void)
613{
614 unsigned char sha1[20];
615 char *head;
616 struct lock_file *lock_file;
617 struct unpack_trees_options opts;
618 struct tree *tree;
619 struct tree_desc t;
Nguyễn Thái Ngọc Duy03b86642014-06-13 19:19:23 +0700620 int err = 0;
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700621
622 if (option_no_checkout)
623 return 0;
624
625 head = resolve_refdup("HEAD", sha1, 1, NULL);
626 if (!head) {
627 warning(_("remote HEAD refers to nonexistent ref, "
628 "unable to checkout.\n"));
629 return 0;
630 }
Nguyễn Thái Ngọc Duy28570932012-01-16 16:46:16 +0700631 if (!strcmp(head, "HEAD")) {
632 if (advice_detached_head)
633 detach_advice(sha1_to_hex(sha1));
634 } else {
Christian Couder59556542013-11-30 21:55:40 +0100635 if (!starts_with(head, "refs/heads/"))
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700636 die(_("HEAD not found below refs/heads!"));
637 }
638 free(head);
639
640 /* We need to be in the new work tree for the checkout */
641 setup_work_tree();
642
643 lock_file = xcalloc(1, sizeof(struct lock_file));
Nguyễn Thái Ngọc Duy03b86642014-06-13 19:19:23 +0700644 hold_locked_index(lock_file, 1);
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700645
646 memset(&opts, 0, sizeof opts);
647 opts.update = 1;
648 opts.merge = 1;
649 opts.fn = oneway_merge;
Junio C Hamano8f63da12012-05-07 12:35:36 -0700650 opts.verbose_update = (option_verbosity >= 0);
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700651 opts.src_index = &the_index;
652 opts.dst_index = &the_index;
653
654 tree = parse_tree_indirect(sha1);
655 parse_tree(tree);
656 init_tree_desc(&t, tree->buffer, tree->size);
Jeff King0aac7bb2013-03-25 16:23:59 -0400657 if (unpack_trees(1, &t, &opts) < 0)
658 die(_("unable to checkout working tree"));
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700659
Nguyễn Thái Ngọc Duy03b86642014-06-13 19:19:23 +0700660 if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700661 die(_("unable to write new index file"));
662
Benoit Pierre15048f82014-03-18 11:00:53 +0100663 err |= run_hook_le(NULL, "post-checkout", sha1_to_hex(null_sha1),
664 sha1_to_hex(sha1), "1", NULL);
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +0700665
666 if (!err && option_recursive)
667 err = run_command_v_opt(argv_submodule, RUN_GIT_CMD);
668
669 return err;
670}
671
Jeff King84054f72011-06-09 16:56:19 -0400672static int write_one_config(const char *key, const char *value, void *data)
673{
674 return git_config_set_multivar(key, value ? value : "true", "^$", 0);
675}
676
677static void write_config(struct string_list *config)
678{
679 int i;
680
681 for (i = 0; i < config->nr; i++) {
682 if (git_config_parse_parameter(config->items[i].string,
683 write_one_config, NULL) < 0)
684 die("unable to write parameters to config file");
685 }
686}
687
Ralf Thielow31b808a2012-09-20 20:04:08 +0200688static void write_refspec_config(const char* src_ref_prefix,
689 const struct ref* our_head_points_at,
690 const struct ref* remote_head_points_at, struct strbuf* branch_top)
691{
692 struct strbuf key = STRBUF_INIT;
693 struct strbuf value = STRBUF_INIT;
694
695 if (option_mirror || !option_bare) {
696 if (option_single_branch && !option_mirror) {
697 if (option_branch) {
Junio C Hamano60a5f5f2014-06-23 14:27:36 -0700698 if (starts_with(our_head_points_at->name, "refs/tags/"))
Ralf Thielow31b808a2012-09-20 20:04:08 +0200699 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
700 our_head_points_at->name);
701 else
702 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
703 branch_top->buf, option_branch);
704 } else if (remote_head_points_at) {
Jeff Kingcf4fff52014-06-18 15:44:19 -0400705 const char *head = remote_head_points_at->name;
706 if (!skip_prefix(head, "refs/heads/", &head))
707 die("BUG: remote HEAD points at non-head?");
708
Ralf Thielow31b808a2012-09-20 20:04:08 +0200709 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
Jeff Kingcf4fff52014-06-18 15:44:19 -0400710 branch_top->buf, head);
Ralf Thielow31b808a2012-09-20 20:04:08 +0200711 }
712 /*
713 * otherwise, the next "git fetch" will
714 * simply fetch from HEAD without updating
Michael Schubertd6ac1d22013-07-03 11:12:34 +0200715 * any remote-tracking branch, which is what
Ralf Thielow31b808a2012-09-20 20:04:08 +0200716 * we want.
717 */
718 } else {
719 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
720 }
721 /* Configure the remote */
722 if (value.len) {
723 strbuf_addf(&key, "remote.%s.fetch", option_origin);
724 git_config_set_multivar(key.buf, value.buf, "^$", 0);
725 strbuf_reset(&key);
726
727 if (option_mirror) {
728 strbuf_addf(&key, "remote.%s.mirror", option_origin);
729 git_config_set(key.buf, "true");
730 strbuf_reset(&key);
731 }
732 }
733 }
734
735 strbuf_release(&key);
736 strbuf_release(&value);
737}
738
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400739int cmd_clone(int argc, const char **argv, const char *prefix)
740{
Nguyễn Thái Ngọc Duy24c61c42010-08-23 22:08:22 +1000741 int is_bundle = 0, is_local;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400742 struct stat buf;
743 const char *repo_name, *repo, *work_tree, *git_dir;
744 char *path, *dir;
Alexander Potashev55892d22009-01-11 15:19:12 +0300745 int dest_exists;
Daniel Barkalow37148312009-11-18 02:42:24 +0100746 const struct ref *refs, *remote_head;
Jeff King7a4ee282009-08-26 15:05:08 -0400747 const struct ref *remote_head_points_at;
748 const struct ref *our_head_points_at;
Daniel Barkalow37148312009-11-18 02:42:24 +0100749 struct ref *mapped_refs;
Nguyễn Thái Ngọc Duy90498162012-01-24 18:10:38 +0700750 const struct ref *ref;
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100751 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
752 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
Shawn O. Pearce1db4a752008-07-08 04:46:06 +0000753 struct transport *transport = NULL;
Nguyễn Thái Ngọc Duy9e585042012-01-16 16:46:13 +0700754 const char *src_ref_prefix = "refs/heads/";
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700755 struct remote *remote;
Nguyễn Thái Ngọc Duy90498162012-01-24 18:10:38 +0700756 int err = 0, complete_refs_before_fetch = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400757
Daniel Barkalow689f0392009-03-05 23:56:16 -0500758 struct refspec *refspec;
759 const char *fetch_pattern;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400760
761 junk_pid = getpid();
762
Jeff Kingbbc30f92011-02-24 09:30:19 -0500763 packet_trace_identity("clone");
Stephen Boyd37782922009-05-23 11:53:12 -0700764 argc = parse_options(argc, argv, prefix, builtin_clone_options,
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400765 builtin_clone_usage, 0);
766
Jonathan Niederd52dc4b2009-10-29 03:10:30 -0500767 if (argc > 2)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000768 usage_msg_opt(_("Too many arguments."),
Jonathan Niederd52dc4b2009-10-29 03:10:30 -0500769 builtin_clone_usage, builtin_clone_options);
770
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400771 if (argc == 0)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000772 usage_msg_opt(_("You must specify a repository to clone."),
Jonathan Niederd52dc4b2009-10-29 03:10:30 -0500773 builtin_clone_usage, builtin_clone_options);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400774
Nguyễn Thái Ngọc Duy3e6e0ed2012-01-07 21:45:59 +0700775 if (option_single_branch == -1)
776 option_single_branch = option_depth ? 1 : 0;
777
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200778 if (option_mirror)
779 option_bare = 1;
780
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400781 if (option_bare) {
782 if (option_origin)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000783 die(_("--bare and --origin %s options are incompatible."),
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400784 option_origin);
Nguyễn Thái Ngọc Duy95b63f12013-01-11 10:09:59 +0700785 if (real_git_dir)
786 die(_("--bare and --separate-git-dir are incompatible."));
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400787 option_no_checkout = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400788 }
789
790 if (!option_origin)
791 option_origin = "origin";
792
793 repo_name = argv[0];
794
795 path = get_repo_path(repo_name, &is_bundle);
796 if (path)
Carlos Martín Nietoe2a57aa2011-03-17 12:26:46 +0100797 repo = xstrdup(absolute_path(repo_name));
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400798 else if (!strchr(repo_name, ':'))
Ævar Arnfjörð Bjarmasond3e1ddf2011-04-10 19:34:06 +0000799 die(_("repository '%s' does not exist"), repo_name);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400800 else
801 repo = repo_name;
802
Nguyễn Thái Ngọc Duy5594bca2013-12-05 10:31:11 +0700803 /* no need to be strict, transport_set_option() will validate it again */
804 if (option_depth && atoi(option_depth) < 1)
805 die(_("depth %s is not a positive number"), option_depth);
806
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400807 if (argc == 2)
808 dir = xstrdup(argv[1]);
809 else
Johannes Schindelin6612f872008-08-01 16:01:36 +0200810 dir = guess_dir_name(repo_name, is_bundle, option_bare);
Clemens Buchacher44a68fd2008-09-03 20:55:55 +0200811 strip_trailing_slashes(dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400812
Alexander Potashev55892d22009-01-11 15:19:12 +0300813 dest_exists = !stat(dir, &buf);
814 if (dest_exists && !is_empty_dir(dir))
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000815 die(_("destination path '%s' already exists and is not "
816 "an empty directory."), dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400817
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400818 strbuf_addf(&reflog_msg, "clone: from %s", repo);
819
820 if (option_bare)
821 work_tree = NULL;
822 else {
823 work_tree = getenv("GIT_WORK_TREE");
824 if (work_tree && !stat(work_tree, &buf))
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000825 die(_("working tree '%s' already exists."), work_tree);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400826 }
827
828 if (option_bare || work_tree)
829 git_dir = xstrdup(dir);
830 else {
831 work_tree = dir;
Ramsay Jones4e2d0942012-09-04 18:31:14 +0100832 git_dir = mkpathdup("%s/.git", dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400833 }
834
835 if (!option_bare) {
836 junk_work_tree = work_tree;
Jeff King8e21d632008-06-25 01:41:34 -0400837 if (safe_create_leading_directories_const(work_tree) < 0)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000838 die_errno(_("could not create leading directories of '%s'"),
Thomas Rastd824cbb2009-06-27 17:58:46 +0200839 work_tree);
Alex Riesen45d4fdc2012-07-07 23:50:30 +0200840 if (!dest_exists && mkdir(work_tree, 0777))
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000841 die_errno(_("could not create work tree dir '%s'."),
Thomas Rastd824cbb2009-06-27 17:58:46 +0200842 work_tree);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400843 set_git_work_tree(work_tree);
844 }
845 junk_git_dir = git_dir;
846 atexit(remove_junk);
Jeff King57b235a2009-01-22 01:03:08 -0500847 sigchain_push_common(remove_junk_on_signal);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400848
Jeff King8e21d632008-06-25 01:41:34 -0400849 if (safe_create_leading_directories_const(git_dir) < 0)
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000850 die(_("could not create leading directories of '%s'"), git_dir);
Nguyễn Thái Ngọc Duyb57fb802011-03-19 22:16:56 +0700851
852 set_git_dir_init(git_dir, real_git_dir, 0);
Jens Lehmann9be19802013-01-05 21:17:04 +0100853 if (real_git_dir) {
Nguyễn Thái Ngọc Duyb57fb802011-03-19 22:16:56 +0700854 git_dir = real_git_dir;
Jens Lehmann9be19802013-01-05 21:17:04 +0100855 junk_git_dir = real_git_dir;
856 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400857
Ævar Arnfjörð Bjarmason3781fcc2011-02-22 23:41:27 +0000858 if (0 <= option_verbosity) {
859 if (option_bare)
Jeff King68b939b2013-09-18 16:05:13 -0400860 fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
Ævar Arnfjörð Bjarmason3781fcc2011-02-22 23:41:27 +0000861 else
Jeff King68b939b2013-09-18 16:05:13 -0400862 fprintf(stderr, _("Cloning into '%s'...\n"), dir);
Ævar Arnfjörð Bjarmason3781fcc2011-02-22 23:41:27 +0000863 }
Junio C Hamano28ba96a2010-04-23 14:37:22 +0200864 init_db(option_template, INIT_DB_QUIET);
Jeff King84054f72011-06-09 16:56:19 -0400865 write_config(&option_config);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400866
Junio C Hamano9bd81e42008-05-25 14:25:02 -0700867 git_config(git_default_config, NULL);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400868
869 if (option_bare) {
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200870 if (option_mirror)
871 src_ref_prefix = "refs/";
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100872 strbuf_addstr(&branch_top, src_ref_prefix);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400873
874 git_config_set("core.bare", "true");
875 } else {
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100876 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200877 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400878
Daniel Barkalow689f0392009-03-05 23:56:16 -0500879 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
Sverre Rabbelierdf61c882010-03-29 11:48:24 -0500880 strbuf_addf(&key, "remote.%s.url", option_origin);
881 git_config_set(key.buf, repo);
882 strbuf_reset(&key);
883
Junio C Hamanodbc92b02011-08-22 18:05:15 -0700884 if (option_reference.nr)
885 setup_reference();
Sverre Rabbelier766ac6a2010-03-29 11:48:23 -0500886
Daniel Barkalow689f0392009-03-05 23:56:16 -0500887 fetch_pattern = value.buf;
888 refspec = parse_fetch_refspec(1, &fetch_pattern);
889
890 strbuf_reset(&value);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400891
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700892 remote = remote_get(option_origin);
893 transport = transport_get(remote, remote->url[0]);
Michael Barabanovf38aa832014-07-17 00:09:32 -0700894 path = get_repo_path(remote->url[0], &is_bundle);
895 is_local = option_local != 0 && path && !is_bundle;
896 if (is_local) {
897 if (option_depth)
898 warning(_("--depth is ignored in local clones; use file:// instead."));
899 if (!access(mkpath("%s/shallow", path), F_OK)) {
900 if (option_local > 0)
901 warning(_("source repository is shallow, ignoring --local"));
902 is_local = 0;
903 }
904 }
905 if (option_local > 0 && !is_local)
906 warning(_("--local is ignored"));
Nguyễn Thái Ngọc Duybeea4152013-12-05 20:02:39 +0700907 transport->cloning = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400908
Jeff King643f9182013-09-18 16:35:13 -0400909 if (!transport->get_refs_list || (!is_local && !transport->fetch))
910 die(_("Don't know how to clone %s"), transport->url);
Jeff King37b78c22008-05-27 10:28:43 -0400911
Jeff King643f9182013-09-18 16:35:13 -0400912 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400913
Jeff King643f9182013-09-18 16:35:13 -0400914 if (option_depth)
915 transport_set_option(transport, TRANS_OPT_DEPTH,
916 option_depth);
917 if (option_single_branch)
918 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400919
Jeff King643f9182013-09-18 16:35:13 -0400920 transport_set_verbosity(transport, option_verbosity, option_progress);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400921
Jeff King643f9182013-09-18 16:35:13 -0400922 if (option_upload_pack)
923 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
924 option_upload_pack);
Nguyễn Thái Ngọc Duyc6807a42013-05-26 08:16:17 +0700925
Jeff King643f9182013-09-18 16:35:13 -0400926 if (transport->smart_options && !option_depth)
927 transport->smart_options->check_self_contained_and_connected = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400928
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700929 refs = transport_get_remote_refs(transport);
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700930
Sverre Rabbelier86ac7512009-01-23 01:07:32 +0100931 if (refs) {
Michael Haggerty5b057952012-02-11 07:20:56 +0100932 mapped_refs = wanted_peer_refs(refs, refspec);
933 /*
934 * transport_get_remote_refs() may return refs with null sha-1
935 * in mapped_refs (see struct transport->get_refs_list
936 * comment). In that case we need fetch it early because
937 * remote_head code below relies on it.
938 *
939 * for normal clones, transport_get_remote_refs() should
940 * return reliable ref set, we can delay cloning until after
941 * remote HEAD check.
942 */
943 for (ref = refs; ref; ref = ref->next)
944 if (is_null_sha1(ref->old_sha1)) {
945 complete_refs_before_fetch = 0;
946 break;
947 }
948
949 if (!is_local && !complete_refs_before_fetch)
950 transport_fetch_refs(transport, mapped_refs);
951
Jay Soffian6cb4e6c2009-02-25 03:32:14 -0500952 remote_head = find_ref_by_name(refs, "HEAD");
Jeff King7a4ee282009-08-26 15:05:08 -0400953 remote_head_points_at =
954 guess_remote_head(remote_head, mapped_refs, 0);
955
956 if (option_branch) {
Jeff King7a4ee282009-08-26 15:05:08 -0400957 our_head_points_at =
Nguyễn Thái Ngọc Duy9e585042012-01-16 16:46:13 +0700958 find_remote_branch(mapped_refs, option_branch);
Jeff King7a4ee282009-08-26 15:05:08 -0400959
Nguyễn Thái Ngọc Duy920b6912012-01-16 16:46:14 +0700960 if (!our_head_points_at)
961 die(_("Remote branch %s not found in upstream %s"),
962 option_branch, option_origin);
Jeff King7a4ee282009-08-26 15:05:08 -0400963 }
964 else
965 our_head_points_at = remote_head_points_at;
Sverre Rabbelier86ac7512009-01-23 01:07:32 +0100966 }
967 else {
Ralf Thielowa3552ab2013-10-11 18:49:02 +0200968 if (option_branch)
969 die(_("Remote branch %s not found in upstream %s"),
970 option_branch, option_origin);
971
Ævar Arnfjörð Bjarmasone84d7b72011-02-22 23:41:26 +0000972 warning(_("You appear to have cloned an empty repository."));
Michael Haggerty5b057952012-02-11 07:20:56 +0100973 mapped_refs = NULL;
Jeff King7a4ee282009-08-26 15:05:08 -0400974 our_head_points_at = NULL;
975 remote_head_points_at = NULL;
Sverre Rabbelier86ac7512009-01-23 01:07:32 +0100976 remote_head = NULL;
977 option_no_checkout = 1;
Junio C Hamano5cd12b82009-02-11 22:42:27 -0800978 if (!option_bare)
Junio C Hamanoa9f2c132009-03-03 22:29:55 -0800979 install_branch_config(0, "master", option_origin,
Junio C Hamano5cd12b82009-02-11 22:42:27 -0800980 "refs/heads/master");
Sverre Rabbelier86ac7512009-01-23 01:07:32 +0100981 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400982
Ralf Thielow31b808a2012-09-20 20:04:08 +0200983 write_refspec_config(src_ref_prefix, our_head_points_at,
984 remote_head_points_at, &branch_top);
985
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700986 if (is_local)
987 clone_local(path, git_dir);
Nguyễn Thái Ngọc Duy90498162012-01-24 18:10:38 +0700988 else if (refs && complete_refs_before_fetch)
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700989 transport_fetch_refs(transport, mapped_refs);
Jeff King7a4ee282009-08-26 15:05:08 -0400990
Nguyễn Thái Ngọc Duy960b7d12012-01-16 16:46:11 +0700991 update_remote_refs(refs, mapped_refs, remote_head_points_at,
Junio C Hamano45ed4af2013-07-18 12:48:28 -0700992 branch_top.buf, reflog_msg.buf, transport, !is_local);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400993
Nguyễn Thái Ngọc Duyf034d352012-01-16 16:46:10 +0700994 update_head(our_head_points_at, remote_head, reflog_msg.buf);
Shawn O. Pearce1db4a752008-07-08 04:46:06 +0000995
Nguyễn Thái Ngọc Duy6f48d392012-01-16 16:46:12 +0700996 transport_unlock_pack(transport);
997 transport_disconnect(transport);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400998
Jeff Kingd3b34622013-03-26 18:22:09 -0400999 junk_mode = JUNK_LEAVE_REPO;
Nguyễn Thái Ngọc Duyc39852c2012-01-16 16:46:09 +07001000 err = checkout();
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001001
1002 strbuf_release(&reflog_msg);
Miklos Vajnab5ff37a2008-11-21 01:45:01 +01001003 strbuf_release(&branch_top);
1004 strbuf_release(&key);
1005 strbuf_release(&value);
Jeff Kingd3b34622013-03-26 18:22:09 -04001006 junk_mode = JUNK_LEAVE_ALL;
Jeff Kingdfa7a6c2009-03-03 00:37:51 -05001007 return err;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001008}