]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/clone.c
clone: handle empty config values in -c
[thirdparty/git.git] / builtin / clone.c
CommitLineData
8434c2f1
DB
1/*
2 * Builtin "git clone"
3 *
4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>,
5 * 2008 Daniel Barkalow <barkalow@iabervon.org>
6 * Based on git-commit.sh by Junio C Hamano and Linus Torvalds
7 *
8 * Clone a repository into a different directory that does not yet exist.
9 */
10
c2e86add 11#include "builtin.h"
697cc8ef 12#include "lockfile.h"
8434c2f1
DB
13#include "parse-options.h"
14#include "fetch-pack.h"
15#include "refs.h"
16#include "tree.h"
17#include "tree-walk.h"
18#include "unpack-trees.h"
19#include "transport.h"
20#include "strbuf.h"
21#include "dir.h"
4a16d072 22#include "sigchain.h"
a9f2c136 23#include "branch.h"
8ef51733 24#include "remote.h"
dfa7a6c5 25#include "run-command.h"
0433ad12 26#include "connected.h"
8434c2f1
DB
27
28/*
29 * Overall FIXMEs:
30 * - respect DB_ENVIRONMENT for .git/objects.
31 *
32 * Implementation notes:
33 * - dropping use-separate-remote and no-separate-remote compatibility
34 *
35 */
36static const char * const builtin_clone_usage[] = {
9c9b4f2f 37 N_("git clone [<options>] [--] <repo> [<dir>]"),
8434c2f1
DB
38 NULL
39};
40
3e6e0edd 41static int option_no_checkout, option_bare, option_mirror, option_single_branch = -1;
189260b1 42static int option_local = -1, option_no_hardlinks, option_shared, option_recursive;
18a74a09 43static int option_shallow_submodules;
994c2aaf
NTND
44static int deepen;
45static char *option_template, *option_depth, *option_since;
8434c2f1 46static char *option_origin = NULL;
7a4ee28f 47static char *option_branch = NULL;
859e5df9 48static struct string_list option_not = STRING_LIST_INIT_NODUP;
b57fb80a 49static const char *real_git_dir;
8434c2f1 50static char *option_upload_pack = "git-upload-pack";
5bd631b3 51static int option_verbosity;
01fdc21f 52static int option_progress = -1;
c915f11e 53static enum transport_family family;
2721ce21 54static struct string_list option_config = STRING_LIST_INIT_NODUP;
5e40800d 55static struct string_list option_required_reference = STRING_LIST_INIT_NODUP;
f7415b4d 56static struct string_list option_optional_reference = STRING_LIST_INIT_NODUP;
fb1d6dab 57static int option_dissociate;
72290d6a 58static int max_jobs = -1;
dbc92b07 59
8434c2f1 60static struct option builtin_clone_options[] = {
5bd631b3 61 OPT__VERBOSITY(&option_verbosity),
01fdc21f 62 OPT_BOOL(0, "progress", &option_progress,
32b77add 63 N_("force progress reporting")),
d5d09d47
SB
64 OPT_BOOL('n', "no-checkout", &option_no_checkout,
65 N_("don't create a checkout")),
4741edd5
SB
66 OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")),
67 OPT_HIDDEN_BOOL(0, "naked", &option_bare,
68 N_("create a bare repository")),
d5d09d47
SB
69 OPT_BOOL(0, "mirror", &option_mirror,
70 N_("create a mirror repository (implies bare)")),
189260b1 71 OPT_BOOL('l', "local", &option_local,
32b77add 72 N_("to clone from a local repository")),
d5d09d47 73 OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks,
32b77add 74 N_("don't use local hardlinks, always copy")),
d5d09d47 75 OPT_BOOL('s', "shared", &option_shared,
32b77add 76 N_("setup as shared repository")),
d5d09d47 77 OPT_BOOL(0, "recursive", &option_recursive,
32b77add 78 N_("initialize submodules in the clone")),
d5d09d47 79 OPT_BOOL(0, "recurse-submodules", &option_recursive,
32b77add 80 N_("initialize submodules in the clone")),
72290d6a
SB
81 OPT_INTEGER('j', "jobs", &max_jobs,
82 N_("number of submodules cloned in parallel")),
32b77add
NTND
83 OPT_STRING(0, "template", &option_template, N_("template-directory"),
84 N_("directory from which templates will be used")),
5e40800d 85 OPT_STRING_LIST(0, "reference", &option_required_reference, N_("repo"),
8ade009c 86 N_("reference repository")),
f7415b4d
SB
87 OPT_STRING_LIST(0, "reference-if-able", &option_optional_reference,
88 N_("repo"), N_("reference repository")),
14f8b9b4
JK
89 OPT_BOOL(0, "dissociate", &option_dissociate,
90 N_("use --reference only while cloning")),
32b77add
NTND
91 OPT_STRING('o', "origin", &option_origin, N_("name"),
92 N_("use <name> instead of 'origin' to track upstream")),
93 OPT_STRING('b', "branch", &option_branch, N_("branch"),
94 N_("checkout <branch> instead of the remote's HEAD")),
95 OPT_STRING('u', "upload-pack", &option_upload_pack, N_("path"),
96 N_("path to git-upload-pack on the remote")),
97 OPT_STRING(0, "depth", &option_depth, N_("depth"),
98 N_("create a shallow clone of that depth")),
994c2aaf
NTND
99 OPT_STRING(0, "shallow-since", &option_since, N_("time"),
100 N_("create a shallow clone since a specific time")),
859e5df9
NTND
101 OPT_STRING_LIST(0, "shallow-exclude", &option_not, N_("revision"),
102 N_("deepen history of shallow clone by excluding rev")),
3e6e0edd 103 OPT_BOOL(0, "single-branch", &option_single_branch,
32b77add 104 N_("clone only one branch, HEAD or --branch")),
d22eb044
SB
105 OPT_BOOL(0, "shallow-submodules", &option_shallow_submodules,
106 N_("any cloned submodules will be shallow")),
32b77add
NTND
107 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
108 N_("separate git dir from working tree")),
109 OPT_STRING_LIST('c', "config", &option_config, N_("key=value"),
110 N_("set config inside the new repository")),
c915f11e
EW
111 OPT_SET_INT('4', "ipv4", &family, N_("use IPv4 addresses only"),
112 TRANSPORT_FAMILY_IPV4),
113 OPT_SET_INT('6', "ipv6", &family, N_("use IPv6 addresses only"),
114 TRANSPORT_FAMILY_IPV6),
8434c2f1
DB
115 OPT_END()
116};
117
0ea68e42 118static const char *get_repo_path_1(struct strbuf *path, int *is_bundle)
8434c2f1 119{
b3256eb8 120 static char *suffix[] = { "/.git", "", ".git/.git", ".git" };
8434c2f1 121 static char *bundle_suffix[] = { ".bundle", "" };
0ea68e42 122 size_t baselen = path->len;
8434c2f1
DB
123 struct stat st;
124 int i;
125
126 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
0ea68e42
JK
127 strbuf_setlen(path, baselen);
128 strbuf_addstr(path, suffix[i]);
129 if (stat(path->buf, &st))
9b0ebc72 130 continue;
0ea68e42 131 if (S_ISDIR(st.st_mode) && is_git_directory(path->buf)) {
8434c2f1 132 *is_bundle = 0;
0ea68e42 133 return path->buf;
9b0ebc72
NTND
134 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
135 /* Is it a "gitfile"? */
136 char signature[8];
0ea68e42
JK
137 const char *dst;
138 int len, fd = open(path->buf, O_RDONLY);
9b0ebc72
NTND
139 if (fd < 0)
140 continue;
141 len = read_in_full(fd, signature, 8);
142 close(fd);
143 if (len != 8 || strncmp(signature, "gitdir: ", 8))
144 continue;
0ea68e42
JK
145 dst = read_gitfile(path->buf);
146 if (dst) {
9b0ebc72 147 *is_bundle = 0;
0ea68e42 148 return dst;
9b0ebc72 149 }
8434c2f1
DB
150 }
151 }
152
153 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
0ea68e42
JK
154 strbuf_setlen(path, baselen);
155 strbuf_addstr(path, bundle_suffix[i]);
156 if (!stat(path->buf, &st) && S_ISREG(st.st_mode)) {
8434c2f1 157 *is_bundle = 1;
0ea68e42 158 return path->buf;
8434c2f1
DB
159 }
160 }
161
162 return NULL;
163}
164
0ea68e42
JK
165static char *get_repo_path(const char *repo, int *is_bundle)
166{
167 struct strbuf path = STRBUF_INIT;
168 const char *raw;
169 char *canon;
170
171 strbuf_addstr(&path, repo);
172 raw = get_repo_path_1(&path, is_bundle);
173 canon = raw ? xstrdup(absolute_path(raw)) : NULL;
174 strbuf_release(&path);
175 return canon;
176}
177
6612f877 178static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
8434c2f1 179{
e8959867 180 const char *end = repo + strlen(repo), *start, *ptr;
7e837c64 181 size_t len;
8a94bc7b 182 char *dir;
b8c5db35 183
e8959867
PS
184 /*
185 * Skip scheme.
186 */
187 start = strstr(repo, "://");
188 if (start == NULL)
189 start = repo;
190 else
191 start += 3;
192
193 /*
194 * Skip authentication data. The stripping does happen
195 * greedily, such that we strip up to the last '@' inside
196 * the host part.
197 */
198 for (ptr = start; ptr < end && !is_dir_sep(*ptr); ptr++) {
199 if (*ptr == '@')
200 start = ptr + 1;
201 }
202
b8c5db35 203 /*
8a94bc7b 204 * Strip trailing spaces, slashes and /.git
b8c5db35 205 */
e8959867 206 while (start < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
b8c5db35 207 end--;
e8959867 208 if (end - start > 5 && is_dir_sep(end[-5]) &&
b8c5db35
JS
209 !strncmp(end - 4, ".git", 4)) {
210 end -= 5;
e8959867 211 while (start < end && is_dir_sep(end[-1]))
b8c5db35
JS
212 end--;
213 }
214
215 /*
92722efe
PS
216 * Strip trailing port number if we've got only a
217 * hostname (that is, there is no dir separator but a
218 * colon). This check is required such that we do not
219 * strip URI's like '/foo/bar:2222.git', which should
220 * result in a dir '2222' being guessed due to backwards
221 * compatibility.
222 */
223 if (memchr(start, '/', end - start) == NULL
224 && memchr(start, ':', end - start) != NULL) {
225 ptr = end;
226 while (start < ptr && isdigit(ptr[-1]) && ptr[-1] != ':')
227 ptr--;
228 if (start < ptr && ptr[-1] == ':')
229 end = ptr - 1;
230 }
231
b8c5db35 232 /*
e8959867
PS
233 * Find last component. To remain backwards compatible we
234 * also regard colons as path separators, such that
235 * cloning a repository 'foo:bar.git' would result in a
236 * directory 'bar' being guessed.
b8c5db35 237 */
e8959867
PS
238 ptr = end;
239 while (start < ptr && !is_dir_sep(ptr[-1]) && ptr[-1] != ':')
240 ptr--;
241 start = ptr;
b8c5db35
JS
242
243 /*
244 * Strip .{bundle,git}.
245 */
db2e2204
JK
246 len = end - start;
247 strip_suffix_mem(start, &len, is_bundle ? ".bundle" : ".git");
8434c2f1 248
adef9561 249 if (!len || (len == 1 && *start == '/'))
39ad4f39
NTND
250 die(_("No directory name could be guessed.\n"
251 "Please specify a directory on the command line"));
adef9561 252
7e837c64
SS
253 if (is_bare)
254 dir = xstrfmt("%.*s.git", (int)len, start);
255 else
256 dir = xstrndup(start, len);
8a94bc7b
AR
257 /*
258 * Replace sequences of 'control' characters and whitespace
259 * with one ascii space, remove leading and trailing spaces.
260 */
261 if (*dir) {
262 char *out = dir;
263 int prev_space = 1 /* strip leading whitespace */;
264 for (end = dir; *end; ++end) {
265 char ch = *end;
266 if ((unsigned char)ch < '\x20')
267 ch = '\x20';
268 if (isspace(ch)) {
269 if (prev_space)
270 continue;
271 prev_space = 1;
272 } else
273 prev_space = 0;
274 *out++ = ch;
275 }
276 *out = '\0';
277 if (out > dir && prev_space)
278 out[-1] = '\0';
6612f877 279 }
8a94bc7b 280 return dir;
8434c2f1
DB
281}
282
44a68fd5
CB
283static void strip_trailing_slashes(char *dir)
284{
285 char *end = dir + strlen(dir);
286
287 while (dir < end - 1 && is_dir_sep(end[-1]))
288 end--;
289 *end = '\0';
290}
291
dbc92b07 292static int add_one_reference(struct string_list_item *item, void *cb_data)
8434c2f1 293{
9eeea7d2 294 struct strbuf err = STRBUF_INIT;
f7415b4d 295 int *required = cb_data;
9eeea7d2 296 char *ref_git = compute_alternate_path(item->string, &err);
8434c2f1 297
f7415b4d
SB
298 if (!ref_git) {
299 if (*required)
300 die("%s", err.buf);
301 else
302 fprintf(stderr,
303 _("info: Could not add alternate for '%s': %s\n"),
304 item->string, err.buf);
305 } else {
306 struct strbuf sb = STRBUF_INIT;
307 strbuf_addf(&sb, "%s/objects", ref_git);
308 add_to_alternates_file(sb.buf);
309 strbuf_release(&sb);
310 }
606e435a 311
9eeea7d2 312 strbuf_release(&err);
f7415b4d 313 free(ref_git);
dbc92b07
JH
314 return 0;
315}
8434c2f1 316
dbc92b07
JH
317static void setup_reference(void)
318{
f7415b4d
SB
319 int required = 1;
320 for_each_string_list(&option_required_reference,
321 add_one_reference, &required);
322 required = 0;
323 for_each_string_list(&option_optional_reference,
324 add_one_reference, &required);
8434c2f1
DB
325}
326
e6baf4a1
JH
327static void copy_alternates(struct strbuf *src, struct strbuf *dst,
328 const char *src_repo)
329{
330 /*
331 * Read from the source objects/info/alternates file
332 * and copy the entries to corresponding file in the
333 * destination repository with add_to_alternates_file().
334 * Both src and dst have "$path/objects/info/alternates".
335 *
336 * Instead of copying bit-for-bit from the original,
337 * we need to append to existing one so that the already
338 * created entry via "clone -s" is not lost, and also
339 * to turn entries with paths relative to the original
340 * absolute, so that they can be used in the new repository.
341 */
342 FILE *in = fopen(src->buf, "r");
343 struct strbuf line = STRBUF_INIT;
344
3f163962 345 while (strbuf_getline(&line, in) != EOF) {
dcf69262 346 char *abs_path;
e6baf4a1
JH
347 if (!line.len || line.buf[0] == '#')
348 continue;
349 if (is_absolute_path(line.buf)) {
350 add_to_alternates_file(line.buf);
351 continue;
352 }
dcf69262 353 abs_path = mkpathdup("%s/objects/%s", src_repo, line.buf);
22d3b8de
JK
354 if (!normalize_path_copy(abs_path, abs_path))
355 add_to_alternates_file(abs_path);
356 else
357 warning("skipping invalid relative alternate: %s/%s",
358 src_repo, line.buf);
dcf69262 359 free(abs_path);
e6baf4a1
JH
360 }
361 strbuf_release(&line);
362 fclose(in);
363}
364
365static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
366 const char *src_repo, int src_baselen)
8434c2f1
DB
367{
368 struct dirent *de;
369 struct stat buf;
370 int src_len, dest_len;
371 DIR *dir;
372
b9e125e0 373 dir = opendir(src->buf);
8434c2f1 374 if (!dir)
e84d7b74 375 die_errno(_("failed to open '%s'"), src->buf);
8434c2f1 376
b9e125e0 377 if (mkdir(dest->buf, 0777)) {
8434c2f1 378 if (errno != EEXIST)
e84d7b74 379 die_errno(_("failed to create directory '%s'"), dest->buf);
b9e125e0 380 else if (stat(dest->buf, &buf))
e84d7b74 381 die_errno(_("failed to stat '%s'"), dest->buf);
8434c2f1 382 else if (!S_ISDIR(buf.st_mode))
e84d7b74 383 die(_("%s exists and is not a directory"), dest->buf);
8434c2f1
DB
384 }
385
b9e125e0
MV
386 strbuf_addch(src, '/');
387 src_len = src->len;
388 strbuf_addch(dest, '/');
389 dest_len = dest->len;
8434c2f1
DB
390
391 while ((de = readdir(dir)) != NULL) {
b9e125e0
MV
392 strbuf_setlen(src, src_len);
393 strbuf_addstr(src, de->d_name);
394 strbuf_setlen(dest, dest_len);
395 strbuf_addstr(dest, de->d_name);
396 if (stat(src->buf, &buf)) {
e84d7b74 397 warning (_("failed to stat %s\n"), src->buf);
8434c2f1
DB
398 continue;
399 }
400 if (S_ISDIR(buf.st_mode)) {
401 if (de->d_name[0] != '.')
e6baf4a1
JH
402 copy_or_link_directory(src, dest,
403 src_repo, src_baselen);
404 continue;
405 }
406
407 /* Files that cannot be copied bit-for-bit... */
408 if (!strcmp(src->buf + src_baselen, "/info/alternates")) {
409 copy_alternates(src, dest, src_repo);
8434c2f1
DB
410 continue;
411 }
412
b9e125e0 413 if (unlink(dest->buf) && errno != ENOENT)
e84d7b74 414 die_errno(_("failed to unlink '%s'"), dest->buf);
fdabc242 415 if (!option_no_hardlinks) {
b9e125e0 416 if (!link(src->buf, dest->buf))
fdabc242 417 continue;
189260b1 418 if (option_local > 0)
e84d7b74 419 die_errno(_("failed to create link '%s'"), dest->buf);
fdabc242 420 option_no_hardlinks = 1;
8434c2f1 421 }
f7835a25 422 if (copy_file_with_time(dest->buf, src->buf, 0666))
e84d7b74 423 die_errno(_("failed to copy file to '%s'"), dest->buf);
8434c2f1 424 }
689ef4d4 425 closedir(dir);
8434c2f1
DB
426}
427
6f48d39f 428static void clone_local(const char *src_repo, const char *dest_repo)
8434c2f1 429{
e6baf4a1
JH
430 if (option_shared) {
431 struct strbuf alt = STRBUF_INIT;
432 strbuf_addf(&alt, "%s/objects", src_repo);
433 add_to_alternates_file(alt.buf);
434 strbuf_release(&alt);
435 } else {
436 struct strbuf src = STRBUF_INIT;
437 struct strbuf dest = STRBUF_INIT;
744e4697
NTND
438 get_common_dir(&src, src_repo);
439 get_common_dir(&dest, dest_repo);
440 strbuf_addstr(&src, "/objects");
441 strbuf_addstr(&dest, "/objects");
e6baf4a1 442 copy_or_link_directory(&src, &dest, src_repo, src.len);
b9e125e0
MV
443 strbuf_release(&src);
444 strbuf_release(&dest);
8434c2f1
DB
445 }
446
28ba96ab 447 if (0 <= option_verbosity)
68b939b2 448 fprintf(stderr, _("done.\n"));
8434c2f1
DB
449}
450
451static const char *junk_work_tree;
452static const char *junk_git_dir;
85064630 453static enum {
d3b34622
JK
454 JUNK_LEAVE_NONE,
455 JUNK_LEAVE_REPO,
456 JUNK_LEAVE_ALL
457} junk_mode = JUNK_LEAVE_NONE;
458
459static const char junk_leave_repo_msg[] =
460N_("Clone succeeded, but checkout failed.\n"
461 "You can inspect what was checked out with 'git status'\n"
462 "and retry the checkout with 'git checkout -f HEAD'\n");
8434c2f1
DB
463
464static void remove_junk(void)
465{
f285a2d7 466 struct strbuf sb = STRBUF_INIT;
d3b34622
JK
467
468 switch (junk_mode) {
469 case JUNK_LEAVE_REPO:
470 warning("%s", _(junk_leave_repo_msg));
471 /* fall-through */
472 case JUNK_LEAVE_ALL:
473 return;
474 default:
475 /* proceed to removal */
476 break;
477 }
478
8434c2f1
DB
479 if (junk_git_dir) {
480 strbuf_addstr(&sb, junk_git_dir);
481 remove_dir_recursively(&sb, 0);
482 strbuf_reset(&sb);
483 }
484 if (junk_work_tree) {
485 strbuf_addstr(&sb, junk_work_tree);
486 remove_dir_recursively(&sb, 0);
487 strbuf_reset(&sb);
488 }
489}
490
491static void remove_junk_on_signal(int signo)
492{
493 remove_junk();
4a16d072 494 sigchain_pop(signo);
8434c2f1
DB
495 raise(signo);
496}
497
9e585046
NTND
498static struct ref *find_remote_branch(const struct ref *refs, const char *branch)
499{
500 struct ref *ref;
501 struct strbuf head = STRBUF_INIT;
502 strbuf_addstr(&head, "refs/heads/");
503 strbuf_addstr(&head, branch);
504 ref = find_ref_by_name(refs, head.buf);
505 strbuf_release(&head);
5a7d5b68
NTND
506
507 if (ref)
508 return ref;
509
510 strbuf_addstr(&head, "refs/tags/");
511 strbuf_addstr(&head, branch);
512 ref = find_ref_by_name(refs, head.buf);
513 strbuf_release(&head);
514
9e585046
NTND
515 return ref;
516}
517
5bdc32d3
NP
518static struct ref *wanted_peer_refs(const struct ref *refs,
519 struct refspec *refspec)
8434c2f1 520{
c1921c18
JK
521 struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
522 struct ref *local_refs = head;
523 struct ref **tail = head ? &head->next : &local_refs;
8434c2f1 524
3e6e0edd
NTND
525 if (option_single_branch) {
526 struct ref *remote_head = NULL;
527
528 if (!option_branch)
529 remote_head = guess_remote_head(head, refs, 0);
0ec4b165
NTND
530 else {
531 local_refs = NULL;
532 tail = &local_refs;
533 remote_head = copy_ref(find_remote_branch(refs, option_branch));
534 }
3e6e0edd
NTND
535
536 if (!remote_head && option_branch)
537 warning(_("Could not find remote branch %s to clone."),
538 option_branch);
5a7d5b68 539 else {
3e6e0edd 540 get_fetch_map(remote_head, refspec, &tail, 0);
5a7d5b68
NTND
541
542 /* if --branch=tag, pull the requested tag explicitly */
543 get_fetch_map(remote_head, tag_refspec, &tail, 0);
544 }
3e6e0edd
NTND
545 } else
546 get_fetch_map(refs, refspec, &tail, 0);
547
548 if (!option_mirror && !option_single_branch)
468386a9 549 get_fetch_map(refs, tag_refspec, &tail, 0);
8434c2f1 550
5bdc32d3
NP
551 return local_refs;
552}
553
554static void write_remote_refs(const struct ref *local_refs)
555{
556 const struct ref *r;
557
58f233ce
MH
558 struct ref_transaction *t;
559 struct strbuf err = STRBUF_INIT;
560
561 t = ref_transaction_begin(&err);
562 if (!t)
563 die("%s", err.buf);
9f69d297 564
c1921c18
JK
565 for (r = local_refs; r; r = r->next) {
566 if (!r->peer_ref)
567 continue;
f4e54d02 568 if (ref_transaction_create(t, r->peer_ref->name, r->old_oid.hash,
58f233ce
MH
569 0, NULL, &err))
570 die("%s", err.buf);
c1921c18 571 }
3e8aded2 572
58f233ce
MH
573 if (initial_ref_transaction_commit(t, &err))
574 die("%s", err.buf);
575
576 strbuf_release(&err);
577 ref_transaction_free(t);
8434c2f1
DB
578}
579
3e6e0edd
NTND
580static void write_followtags(const struct ref *refs, const char *msg)
581{
582 const struct ref *ref;
583 for (ref = refs; ref; ref = ref->next) {
59556548 584 if (!starts_with(ref->name, "refs/tags/"))
3e6e0edd 585 continue;
59556548 586 if (ends_with(ref->name, "^{}"))
3e6e0edd 587 continue;
f4e54d02 588 if (!has_object_file(&ref->old_oid))
3e6e0edd 589 continue;
f4e54d02 590 update_ref(msg, ref->name, ref->old_oid.hash,
f4124112 591 NULL, 0, UPDATE_REFS_DIE_ON_ERR);
3e6e0edd
NTND
592 }
593}
594
0433ad12
JK
595static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
596{
597 struct ref **rm = cb_data;
598 struct ref *ref = *rm;
599
600 /*
601 * Skip anything missing a peer_ref, which we are not
602 * actually going to write a ref for.
603 */
604 while (ref && !ref->peer_ref)
605 ref = ref->next;
606 /* Returning -1 notes "end of list" to the caller. */
607 if (!ref)
608 return -1;
609
f4e54d02 610 hashcpy(sha1, ref->old_oid.hash);
0433ad12
JK
611 *rm = ref->next;
612 return 0;
613}
614
960b7d1c
NTND
615static void update_remote_refs(const struct ref *refs,
616 const struct ref *mapped_refs,
617 const struct ref *remote_head_points_at,
618 const char *branch_top,
c6807a40 619 const char *msg,
45ed4afa 620 struct transport *transport,
125a05fd 621 int check_connectivity)
960b7d1c 622{
0433ad12
JK
623 const struct ref *rm = mapped_refs;
624
125a05fd 625 if (check_connectivity) {
7043c707
JK
626 struct check_connected_options opt = CHECK_CONNECTED_INIT;
627
628 opt.transport = transport;
38e590ea 629 opt.progress = transport->progress;
7043c707 630
7043c707 631 if (check_connected(iterate_ref_map, &rm, &opt))
125a05fd
JK
632 die(_("remote did not send all necessary objects"));
633 }
0433ad12 634
960b7d1c 635 if (refs) {
960b7d1c
NTND
636 write_remote_refs(mapped_refs);
637 if (option_single_branch)
638 write_followtags(refs, msg);
639 }
640
641 if (remote_head_points_at && !option_bare) {
642 struct strbuf head_ref = STRBUF_INIT;
643 strbuf_addstr(&head_ref, branch_top);
644 strbuf_addstr(&head_ref, "HEAD");
4be49d75
JK
645 if (create_symref(head_ref.buf,
646 remote_head_points_at->peer_ref->name,
647 msg) < 0)
39ad4f39 648 die(_("unable to update %s"), head_ref.buf);
4be49d75 649 strbuf_release(&head_ref);
960b7d1c
NTND
650 }
651}
652
f034d354
NTND
653static void update_head(const struct ref *our, const struct ref *remote,
654 const char *msg)
655{
cf4fff57
JK
656 const char *head;
657 if (our && skip_prefix(our->name, "refs/heads/", &head)) {
f034d354 658 /* Local default branch link */
4be49d75 659 if (create_symref("HEAD", our->name, NULL) < 0)
39ad4f39 660 die(_("unable to update HEAD"));
f034d354 661 if (!option_bare) {
f4e54d02 662 update_ref(msg, "HEAD", our->old_oid.hash, NULL, 0,
f4124112 663 UPDATE_REFS_DIE_ON_ERR);
f034d354
NTND
664 install_branch_config(0, head, option_origin, our->name);
665 }
5a7d5b68 666 } else if (our) {
f4e54d02 667 struct commit *c = lookup_commit_reference(our->old_oid.hash);
5a7d5b68 668 /* --branch specifies a non-branch (i.e. tags), detach HEAD */
ed1c9977 669 update_ref(msg, "HEAD", c->object.oid.hash,
f4124112 670 NULL, REF_NODEREF, UPDATE_REFS_DIE_ON_ERR);
f034d354
NTND
671 } else if (remote) {
672 /*
673 * We know remote HEAD points to a non-branch, or
920b691f 674 * HEAD points to a branch but we don't know which one.
f034d354
NTND
675 * Detach HEAD in all these cases.
676 */
f4e54d02 677 update_ref(msg, "HEAD", remote->old_oid.hash,
f4124112 678 NULL, REF_NODEREF, UPDATE_REFS_DIE_ON_ERR);
f034d354
NTND
679 }
680}
681
72c5f883 682static int checkout(int submodule_progress)
c39852c1
NTND
683{
684 unsigned char sha1[20];
685 char *head;
686 struct lock_file *lock_file;
687 struct unpack_trees_options opts;
688 struct tree *tree;
689 struct tree_desc t;
03b86647 690 int err = 0;
c39852c1
NTND
691
692 if (option_no_checkout)
693 return 0;
694
7695d118 695 head = resolve_refdup("HEAD", RESOLVE_REF_READING, sha1, NULL);
c39852c1
NTND
696 if (!head) {
697 warning(_("remote HEAD refers to nonexistent ref, "
698 "unable to checkout.\n"));
699 return 0;
700 }
2857093b
NTND
701 if (!strcmp(head, "HEAD")) {
702 if (advice_detached_head)
703 detach_advice(sha1_to_hex(sha1));
704 } else {
59556548 705 if (!starts_with(head, "refs/heads/"))
c39852c1
NTND
706 die(_("HEAD not found below refs/heads!"));
707 }
708 free(head);
709
710 /* We need to be in the new work tree for the checkout */
711 setup_work_tree();
712
713 lock_file = xcalloc(1, sizeof(struct lock_file));
03b86647 714 hold_locked_index(lock_file, 1);
c39852c1
NTND
715
716 memset(&opts, 0, sizeof opts);
717 opts.update = 1;
718 opts.merge = 1;
719 opts.fn = oneway_merge;
8f63da13 720 opts.verbose_update = (option_verbosity >= 0);
c39852c1
NTND
721 opts.src_index = &the_index;
722 opts.dst_index = &the_index;
723
724 tree = parse_tree_indirect(sha1);
725 parse_tree(tree);
726 init_tree_desc(&t, tree->buffer, tree->size);
0aac7bb2
JK
727 if (unpack_trees(1, &t, &opts) < 0)
728 die(_("unable to checkout working tree"));
c39852c1 729
03b86647 730 if (write_locked_index(&the_index, lock_file, COMMIT_LOCK))
c39852c1
NTND
731 die(_("unable to write new index file"));
732
15048f8a
BP
733 err |= run_hook_le(NULL, "post-checkout", sha1_to_hex(null_sha1),
734 sha1_to_hex(sha1), "1", NULL);
c39852c1 735
72290d6a
SB
736 if (!err && option_recursive) {
737 struct argv_array args = ARGV_ARRAY_INIT;
738 argv_array_pushl(&args, "submodule", "update", "--init", "--recursive", NULL);
739
18a74a09 740 if (option_shallow_submodules == 1)
d22eb044
SB
741 argv_array_push(&args, "--depth=1");
742
72290d6a
SB
743 if (max_jobs != -1)
744 argv_array_pushf(&args, "--jobs=%d", max_jobs);
745
72c5f883
JK
746 if (submodule_progress)
747 argv_array_push(&args, "--progress");
748
72290d6a
SB
749 err = run_command_v_opt(args.argv, RUN_GIT_CMD);
750 argv_array_clear(&args);
751 }
c39852c1
NTND
752
753 return err;
754}
755
84054f79
JK
756static int write_one_config(const char *key, const char *value, void *data)
757{
db4eca1f
JN
758 return git_config_set_multivar_gently(key,
759 value ? value : "true",
760 CONFIG_REGEX_NONE, 0);
84054f79
JK
761}
762
763static void write_config(struct string_list *config)
764{
765 int i;
766
767 for (i = 0; i < config->nr; i++) {
768 if (git_config_parse_parameter(config->items[i].string,
769 write_one_config, NULL) < 0)
39ad4f39 770 die(_("unable to write parameters to config file"));
84054f79
JK
771 }
772}
773
24d36f14
DA
774static void write_refspec_config(const char *src_ref_prefix,
775 const struct ref *our_head_points_at,
776 const struct ref *remote_head_points_at,
777 struct strbuf *branch_top)
31b808a0
RT
778{
779 struct strbuf key = STRBUF_INIT;
780 struct strbuf value = STRBUF_INIT;
781
782 if (option_mirror || !option_bare) {
783 if (option_single_branch && !option_mirror) {
784 if (option_branch) {
60a5f5fc 785 if (starts_with(our_head_points_at->name, "refs/tags/"))
31b808a0
RT
786 strbuf_addf(&value, "+%s:%s", our_head_points_at->name,
787 our_head_points_at->name);
788 else
789 strbuf_addf(&value, "+%s:%s%s", our_head_points_at->name,
790 branch_top->buf, option_branch);
791 } else if (remote_head_points_at) {
cf4fff57
JK
792 const char *head = remote_head_points_at->name;
793 if (!skip_prefix(head, "refs/heads/", &head))
794 die("BUG: remote HEAD points at non-head?");
795
31b808a0 796 strbuf_addf(&value, "+%s:%s%s", remote_head_points_at->name,
cf4fff57 797 branch_top->buf, head);
31b808a0
RT
798 }
799 /*
800 * otherwise, the next "git fetch" will
801 * simply fetch from HEAD without updating
d6ac1d21 802 * any remote-tracking branch, which is what
31b808a0
RT
803 * we want.
804 */
805 } else {
806 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top->buf);
807 }
808 /* Configure the remote */
809 if (value.len) {
810 strbuf_addf(&key, "remote.%s.fetch", option_origin);
811 git_config_set_multivar(key.buf, value.buf, "^$", 0);
812 strbuf_reset(&key);
813
814 if (option_mirror) {
815 strbuf_addf(&key, "remote.%s.mirror", option_origin);
816 git_config_set(key.buf, "true");
817 strbuf_reset(&key);
818 }
819 }
820 }
821
822 strbuf_release(&key);
823 strbuf_release(&value);
824}
825
fb1d6dab
JH
826static void dissociate_from_references(void)
827{
828 static const char* argv[] = { "repack", "-a", "-d", NULL };
0181681e 829 char *alternates = git_pathdup("objects/info/alternates");
fb1d6dab 830
0181681e
AR
831 if (!access(alternates, F_OK)) {
832 if (run_command_v_opt(argv, RUN_GIT_CMD|RUN_COMMAND_NO_STDIN))
833 die(_("cannot repack to clean up"));
834 if (unlink(alternates) && errno != ENOENT)
835 die_errno(_("cannot unlink temporary alternates file"));
836 }
837 free(alternates);
fb1d6dab
JH
838}
839
8434c2f1
DB
840int cmd_clone(int argc, const char **argv, const char *prefix)
841{
24c61c44 842 int is_bundle = 0, is_local;
8434c2f1
DB
843 struct stat buf;
844 const char *repo_name, *repo, *work_tree, *git_dir;
845 char *path, *dir;
55892d23 846 int dest_exists;
37148311 847 const struct ref *refs, *remote_head;
7a4ee28f
JK
848 const struct ref *remote_head_points_at;
849 const struct ref *our_head_points_at;
37148311 850 struct ref *mapped_refs;
90498161 851 const struct ref *ref;
b5ff37ac
MV
852 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
853 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
1db4a75c 854 struct transport *transport = NULL;
9e585046 855 const char *src_ref_prefix = "refs/heads/";
6f48d39f 856 struct remote *remote;
90498161 857 int err = 0, complete_refs_before_fetch = 1;
72c5f883 858 int submodule_progress;
8434c2f1 859
689f0396
DB
860 struct refspec *refspec;
861 const char *fetch_pattern;
8434c2f1 862
bbc30f99 863 packet_trace_identity("clone");
37782920 864 argc = parse_options(argc, argv, prefix, builtin_clone_options,
8434c2f1
DB
865 builtin_clone_usage, 0);
866
d52dc4b1 867 if (argc > 2)
e84d7b74 868 usage_msg_opt(_("Too many arguments."),
d52dc4b1
JN
869 builtin_clone_usage, builtin_clone_options);
870
8434c2f1 871 if (argc == 0)
e84d7b74 872 usage_msg_opt(_("You must specify a repository to clone."),
d52dc4b1 873 builtin_clone_usage, builtin_clone_options);
8434c2f1 874
859e5df9 875 if (option_depth || option_since || option_not.nr)
994c2aaf 876 deepen = 1;
3e6e0edd 877 if (option_single_branch == -1)
994c2aaf 878 option_single_branch = deepen ? 1 : 0;
3e6e0edd 879
bc699afc
JS
880 if (option_mirror)
881 option_bare = 1;
882
8434c2f1
DB
883 if (option_bare) {
884 if (option_origin)
e84d7b74 885 die(_("--bare and --origin %s options are incompatible."),
8434c2f1 886 option_origin);
95b63f1e
NTND
887 if (real_git_dir)
888 die(_("--bare and --separate-git-dir are incompatible."));
8434c2f1 889 option_no_checkout = 1;
8434c2f1
DB
890 }
891
892 if (!option_origin)
893 option_origin = "origin";
894
895 repo_name = argv[0];
896
897 path = get_repo_path(repo_name, &is_bundle);
898 if (path)
e2a57aac 899 repo = xstrdup(absolute_path(repo_name));
8434c2f1 900 else if (!strchr(repo_name, ':'))
d3e1ddfd 901 die(_("repository '%s' does not exist"), repo_name);
8434c2f1
DB
902 else
903 repo = repo_name;
904
5594bcad
NTND
905 /* no need to be strict, transport_set_option() will validate it again */
906 if (option_depth && atoi(option_depth) < 1)
907 die(_("depth %s is not a positive number"), option_depth);
908
8434c2f1
DB
909 if (argc == 2)
910 dir = xstrdup(argv[1]);
911 else
6612f877 912 dir = guess_dir_name(repo_name, is_bundle, option_bare);
44a68fd5 913 strip_trailing_slashes(dir);
8434c2f1 914
55892d23
AP
915 dest_exists = !stat(dir, &buf);
916 if (dest_exists && !is_empty_dir(dir))
e84d7b74
ÆAB
917 die(_("destination path '%s' already exists and is not "
918 "an empty directory."), dir);
8434c2f1 919
8434c2f1
DB
920 strbuf_addf(&reflog_msg, "clone: from %s", repo);
921
922 if (option_bare)
923 work_tree = NULL;
924 else {
925 work_tree = getenv("GIT_WORK_TREE");
926 if (work_tree && !stat(work_tree, &buf))
e84d7b74 927 die(_("working tree '%s' already exists."), work_tree);
8434c2f1
DB
928 }
929
930 if (option_bare || work_tree)
931 git_dir = xstrdup(dir);
932 else {
933 work_tree = dir;
4e2d094d 934 git_dir = mkpathdup("%s/.git", dir);
8434c2f1
DB
935 }
936
ee0e3872
JK
937 atexit(remove_junk);
938 sigchain_push_common(remove_junk_on_signal);
939
8434c2f1 940 if (!option_bare) {
8e21d63b 941 if (safe_create_leading_directories_const(work_tree) < 0)
e84d7b74 942 die_errno(_("could not create leading directories of '%s'"),
d824cbba 943 work_tree);
45d4fdc2 944 if (!dest_exists && mkdir(work_tree, 0777))
16eff6c0 945 die_errno(_("could not create work tree dir '%s'"),
d824cbba 946 work_tree);
ee0e3872 947 junk_work_tree = work_tree;
8434c2f1
DB
948 set_git_work_tree(work_tree);
949 }
8434c2f1 950
33158701 951 junk_git_dir = real_git_dir ? real_git_dir : git_dir;
8e21d63b 952 if (safe_create_leading_directories_const(git_dir) < 0)
e84d7b74 953 die(_("could not create leading directories of '%s'"), git_dir);
b57fb80a 954
3781fcce
ÆAB
955 if (0 <= option_verbosity) {
956 if (option_bare)
68b939b2 957 fprintf(stderr, _("Cloning into bare repository '%s'...\n"), dir);
3781fcce 958 else
68b939b2 959 fprintf(stderr, _("Cloning into '%s'...\n"), dir);
3781fcce 960 }
31224cbd
SB
961
962 if (option_recursive) {
963 if (option_required_reference.nr &&
964 option_optional_reference.nr)
965 die(_("clone --recursive is not compatible with "
966 "both --reference and --reference-if-able"));
967 else if (option_required_reference.nr) {
968 string_list_append(&option_config,
969 "submodule.alternateLocation=superproject");
970 string_list_append(&option_config,
971 "submodule.alternateErrorStrategy=die");
972 } else if (option_optional_reference.nr) {
973 string_list_append(&option_config,
974 "submodule.alternateLocation=superproject");
975 string_list_append(&option_config,
976 "submodule.alternateErrorStrategy=info");
977 }
978 }
979
33158701
NTND
980 init_db(git_dir, real_git_dir, option_template, INIT_DB_QUIET);
981
982 if (real_git_dir)
983 git_dir = real_git_dir;
984
84054f79 985 write_config(&option_config);
8434c2f1 986
9bd81e42 987 git_config(git_default_config, NULL);
8434c2f1
DB
988
989 if (option_bare) {
bc699afc
JS
990 if (option_mirror)
991 src_ref_prefix = "refs/";
b5ff37ac 992 strbuf_addstr(&branch_top, src_ref_prefix);
8434c2f1
DB
993
994 git_config_set("core.bare", "true");
995 } else {
b5ff37ac 996 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
bc699afc 997 }
8434c2f1 998
689f0396 999 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
df61c889
SR
1000 strbuf_addf(&key, "remote.%s.url", option_origin);
1001 git_config_set(key.buf, repo);
1002 strbuf_reset(&key);
1003
f7415b4d 1004 if (option_required_reference.nr || option_optional_reference.nr)
dbc92b07 1005 setup_reference();
766ac6a6 1006
689f0396
DB
1007 fetch_pattern = value.buf;
1008 refspec = parse_fetch_refspec(1, &fetch_pattern);
1009
1010 strbuf_reset(&value);
8434c2f1 1011
6f48d39f
NTND
1012 remote = remote_get(option_origin);
1013 transport = transport_get(remote, remote->url[0]);
822f0c4f 1014 transport_set_verbosity(transport, option_verbosity, option_progress);
c915f11e 1015 transport->family = family;
822f0c4f 1016
f38aa83f
MB
1017 path = get_repo_path(remote->url[0], &is_bundle);
1018 is_local = option_local != 0 && path && !is_bundle;
1019 if (is_local) {
1020 if (option_depth)
1021 warning(_("--depth is ignored in local clones; use file:// instead."));
994c2aaf
NTND
1022 if (option_since)
1023 warning(_("--shallow-since is ignored in local clones; use file:// instead."));
859e5df9
NTND
1024 if (option_not.nr)
1025 warning(_("--shallow-exclude is ignored in local clones; use file:// instead."));
f38aa83f
MB
1026 if (!access(mkpath("%s/shallow", path), F_OK)) {
1027 if (option_local > 0)
1028 warning(_("source repository is shallow, ignoring --local"));
1029 is_local = 0;
1030 }
1031 }
1032 if (option_local > 0 && !is_local)
1033 warning(_("--local is ignored"));
beea4152 1034 transport->cloning = 1;
8434c2f1 1035
643f918d
JK
1036 if (!transport->get_refs_list || (!is_local && !transport->fetch))
1037 die(_("Don't know how to clone %s"), transport->url);
37b78c25 1038
643f918d 1039 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
8434c2f1 1040
643f918d
JK
1041 if (option_depth)
1042 transport_set_option(transport, TRANS_OPT_DEPTH,
1043 option_depth);
994c2aaf
NTND
1044 if (option_since)
1045 transport_set_option(transport, TRANS_OPT_DEEPEN_SINCE,
1046 option_since);
859e5df9
NTND
1047 if (option_not.nr)
1048 transport_set_option(transport, TRANS_OPT_DEEPEN_NOT,
1049 (const char *)&option_not);
643f918d
JK
1050 if (option_single_branch)
1051 transport_set_option(transport, TRANS_OPT_FOLLOWTAGS, "1");
8434c2f1 1052
643f918d
JK
1053 if (option_upload_pack)
1054 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
1055 option_upload_pack);
c6807a40 1056
994c2aaf 1057 if (transport->smart_options && !deepen)
643f918d 1058 transport->smart_options->check_self_contained_and_connected = 1;
8434c2f1 1059
6f48d39f 1060 refs = transport_get_remote_refs(transport);
8434c2f1 1061
5b05795c
MH
1062 if (refs) {
1063 mapped_refs = wanted_peer_refs(refs, refspec);
1064 /*
1065 * transport_get_remote_refs() may return refs with null sha-1
1066 * in mapped_refs (see struct transport->get_refs_list
1067 * comment). In that case we need fetch it early because
1068 * remote_head code below relies on it.
1069 *
1070 * for normal clones, transport_get_remote_refs() should
1071 * return reliable ref set, we can delay cloning until after
1072 * remote HEAD check.
1073 */
1074 for (ref = refs; ref; ref = ref->next)
f4e54d02 1075 if (is_null_oid(&ref->old_oid)) {
5b05795c
MH
1076 complete_refs_before_fetch = 0;
1077 break;
1078 }
90498161 1079
5b05795c
MH
1080 if (!is_local && !complete_refs_before_fetch)
1081 transport_fetch_refs(transport, mapped_refs);
8434c2f1 1082
6cb4e6cc 1083 remote_head = find_ref_by_name(refs, "HEAD");
7a4ee28f
JK
1084 remote_head_points_at =
1085 guess_remote_head(remote_head, mapped_refs, 0);
1086
1087 if (option_branch) {
7a4ee28f 1088 our_head_points_at =
9e585046 1089 find_remote_branch(mapped_refs, option_branch);
7a4ee28f 1090
920b691f
NTND
1091 if (!our_head_points_at)
1092 die(_("Remote branch %s not found in upstream %s"),
1093 option_branch, option_origin);
7a4ee28f
JK
1094 }
1095 else
1096 our_head_points_at = remote_head_points_at;
86ac7518
SR
1097 }
1098 else {
a3552aba
RT
1099 if (option_branch)
1100 die(_("Remote branch %s not found in upstream %s"),
1101 option_branch, option_origin);
1102
e84d7b74 1103 warning(_("You appear to have cloned an empty repository."));
5b05795c 1104 mapped_refs = NULL;
7a4ee28f
JK
1105 our_head_points_at = NULL;
1106 remote_head_points_at = NULL;
86ac7518
SR
1107 remote_head = NULL;
1108 option_no_checkout = 1;
5cd12b85 1109 if (!option_bare)
a9f2c136 1110 install_branch_config(0, "master", option_origin,
5cd12b85 1111 "refs/heads/master");
86ac7518 1112 }
8434c2f1 1113
31b808a0
RT
1114 write_refspec_config(src_ref_prefix, our_head_points_at,
1115 remote_head_points_at, &branch_top);
1116
6f48d39f
NTND
1117 if (is_local)
1118 clone_local(path, git_dir);
90498161 1119 else if (refs && complete_refs_before_fetch)
6f48d39f 1120 transport_fetch_refs(transport, mapped_refs);
8434c2f1 1121
960b7d1c 1122 update_remote_refs(refs, mapped_refs, remote_head_points_at,
45ed4afa 1123 branch_top.buf, reflog_msg.buf, transport, !is_local);
8434c2f1 1124
f034d354 1125 update_head(our_head_points_at, remote_head, reflog_msg.buf);
1db4a75c 1126
72c5f883
JK
1127 /*
1128 * We want to show progress for recursive submodule clones iff
1129 * we did so for the main clone. But only the transport knows
1130 * the final decision for this flag, so we need to rescue the value
1131 * before we free the transport.
1132 */
1133 submodule_progress = transport->progress;
1134
6f48d39f
NTND
1135 transport_unlock_pack(transport);
1136 transport_disconnect(transport);
1db4a75c 1137
786b150c
JS
1138 if (option_dissociate) {
1139 close_all_packs();
fb1d6dab 1140 dissociate_from_references();
786b150c 1141 }
fb1d6dab 1142
d3b34622 1143 junk_mode = JUNK_LEAVE_REPO;
72c5f883 1144 err = checkout(submodule_progress);
8434c2f1
DB
1145
1146 strbuf_release(&reflog_msg);
b5ff37ac
MV
1147 strbuf_release(&branch_top);
1148 strbuf_release(&key);
1149 strbuf_release(&value);
d3b34622 1150 junk_mode = JUNK_LEAVE_ALL;
50b67732
SB
1151
1152 free(refspec);
dfa7a6c5 1153 return err;
8434c2f1 1154}