]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-clone.c
Merge branch 'jc/1.7.0-push-safety'
[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
11#include "cache.h"
12#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"
3e8aded2 21#include "pack-refs.h"
4a16d072 22#include "sigchain.h"
a9f2c136 23#include "branch.h"
8ef51733 24#include "remote.h"
dfa7a6c5 25#include "run-command.h"
8434c2f1
DB
26
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[] = {
1b1dd23f 36 "git clone [options] [--] <repo> [<dir>]",
8434c2f1
DB
37 NULL
38};
39
bc699afc 40static int option_quiet, option_no_checkout, option_bare, option_mirror;
e7fed18a 41static int option_local, option_no_hardlinks, option_shared, option_recursive;
8434c2f1
DB
42static char *option_template, *option_reference, *option_depth;
43static char *option_origin = NULL;
7a4ee28f 44static char *option_branch = NULL;
8434c2f1 45static char *option_upload_pack = "git-upload-pack";
21188b1e 46static int option_verbose;
8434c2f1
DB
47
48static struct option builtin_clone_options[] = {
49 OPT__QUIET(&option_quiet),
21188b1e 50 OPT__VERBOSE(&option_verbose),
8434c2f1
DB
51 OPT_BOOLEAN('n', "no-checkout", &option_no_checkout,
52 "don't create a checkout"),
53 OPT_BOOLEAN(0, "bare", &option_bare, "create a bare repository"),
ebc9d420
JH
54 { OPTION_BOOLEAN, 0, "naked", &option_bare, NULL,
55 "create a bare repository",
56 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
bc699afc
JS
57 OPT_BOOLEAN(0, "mirror", &option_mirror,
58 "create a mirror repository (implies bare)"),
8434c2f1
DB
59 OPT_BOOLEAN('l', "local", &option_local,
60 "to clone from a local repository"),
61 OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks,
62 "don't use local hardlinks, always copy"),
63 OPT_BOOLEAN('s', "shared", &option_shared,
64 "setup as shared repository"),
e7fed18a 65 OPT_BOOLEAN(0, "recursive", &option_recursive,
ebc9d420 66 "initialize submodules in the clone"),
8434c2f1
DB
67 OPT_STRING(0, "template", &option_template, "path",
68 "path the template repository"),
69 OPT_STRING(0, "reference", &option_reference, "repo",
70 "reference repository"),
71 OPT_STRING('o', "origin", &option_origin, "branch",
02ed2458 72 "use <branch> instead of 'origin' to track upstream"),
7a4ee28f
JK
73 OPT_STRING('b', "branch", &option_branch, "branch",
74 "checkout <branch> instead of the remote's HEAD"),
8434c2f1
DB
75 OPT_STRING('u', "upload-pack", &option_upload_pack, "path",
76 "path to git-upload-pack on the remote"),
77 OPT_STRING(0, "depth", &option_depth, "depth",
78 "create a shallow clone of that depth"),
79
80 OPT_END()
81};
82
e7fed18a
JH
83static const char *argv_submodule[] = {
84 "submodule", "update", "--init", "--recursive", NULL
85};
86
8434c2f1
DB
87static char *get_repo_path(const char *repo, int *is_bundle)
88{
89 static char *suffix[] = { "/.git", ".git", "" };
90 static char *bundle_suffix[] = { ".bundle", "" };
91 struct stat st;
92 int i;
93
94 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
95 const char *path;
96 path = mkpath("%s%s", repo, suffix[i]);
90b4a71c 97 if (is_directory(path)) {
8434c2f1 98 *is_bundle = 0;
1b9a9467 99 return xstrdup(make_nonrelative_path(path));
8434c2f1
DB
100 }
101 }
102
103 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
104 const char *path;
105 path = mkpath("%s%s", repo, bundle_suffix[i]);
106 if (!stat(path, &st) && S_ISREG(st.st_mode)) {
107 *is_bundle = 1;
1b9a9467 108 return xstrdup(make_nonrelative_path(path));
8434c2f1
DB
109 }
110 }
111
112 return NULL;
113}
114
6612f877 115static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
8434c2f1 116{
b8c5db35 117 const char *end = repo + strlen(repo), *start;
8a94bc7b 118 char *dir;
b8c5db35
JS
119
120 /*
8a94bc7b 121 * Strip trailing spaces, slashes and /.git
b8c5db35 122 */
8a94bc7b 123 while (repo < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
b8c5db35
JS
124 end--;
125 if (end - repo > 5 && is_dir_sep(end[-5]) &&
126 !strncmp(end - 4, ".git", 4)) {
127 end -= 5;
128 while (repo < end && is_dir_sep(end[-1]))
129 end--;
130 }
131
132 /*
133 * Find last component, but be prepared that repo could have
134 * the form "remote.example.com:foo.git", i.e. no slash
135 * in the directory part.
136 */
137 start = end;
138 while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
139 start--;
140
141 /*
142 * Strip .{bundle,git}.
143 */
144 if (is_bundle) {
145 if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
146 end -= 7;
147 } else {
148 if (end - start > 4 && !strncmp(end - 4, ".git", 4))
149 end -= 4;
8434c2f1
DB
150 }
151
6612f877 152 if (is_bare) {
32716a2c
MV
153 struct strbuf result = STRBUF_INIT;
154 strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
2af202be 155 dir = strbuf_detach(&result, NULL);
8a94bc7b
AR
156 } else
157 dir = xstrndup(start, end - start);
158 /*
159 * Replace sequences of 'control' characters and whitespace
160 * with one ascii space, remove leading and trailing spaces.
161 */
162 if (*dir) {
163 char *out = dir;
164 int prev_space = 1 /* strip leading whitespace */;
165 for (end = dir; *end; ++end) {
166 char ch = *end;
167 if ((unsigned char)ch < '\x20')
168 ch = '\x20';
169 if (isspace(ch)) {
170 if (prev_space)
171 continue;
172 prev_space = 1;
173 } else
174 prev_space = 0;
175 *out++ = ch;
176 }
177 *out = '\0';
178 if (out > dir && prev_space)
179 out[-1] = '\0';
6612f877 180 }
8a94bc7b 181 return dir;
8434c2f1
DB
182}
183
44a68fd5
CB
184static void strip_trailing_slashes(char *dir)
185{
186 char *end = dir + strlen(dir);
187
188 while (dir < end - 1 && is_dir_sep(end[-1]))
189 end--;
190 *end = '\0';
191}
192
8434c2f1
DB
193static void setup_reference(const char *repo)
194{
195 const char *ref_git;
196 char *ref_git_copy;
197
198 struct remote *remote;
199 struct transport *transport;
200 const struct ref *extra;
201
202 ref_git = make_absolute_path(option_reference);
203
204 if (is_directory(mkpath("%s/.git/objects", ref_git)))
205 ref_git = mkpath("%s/.git", ref_git);
206 else if (!is_directory(mkpath("%s/objects", ref_git)))
207 die("reference repository '%s' is not a local directory.",
208 option_reference);
209
210 ref_git_copy = xstrdup(ref_git);
211
212 add_to_alternates_file(ref_git_copy);
213
214 remote = remote_get(ref_git_copy);
215 transport = transport_get(remote, ref_git_copy);
216 for (extra = transport_get_remote_refs(transport); extra;
217 extra = extra->next)
218 add_extra_ref(extra->name, extra->old_sha1, 0);
219
220 transport_disconnect(transport);
221
222 free(ref_git_copy);
223}
224
b9e125e0 225static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest)
8434c2f1
DB
226{
227 struct dirent *de;
228 struct stat buf;
229 int src_len, dest_len;
230 DIR *dir;
231
b9e125e0 232 dir = opendir(src->buf);
8434c2f1 233 if (!dir)
0721c314 234 die_errno("failed to open '%s'", src->buf);
8434c2f1 235
b9e125e0 236 if (mkdir(dest->buf, 0777)) {
8434c2f1 237 if (errno != EEXIST)
0721c314 238 die_errno("failed to create directory '%s'", dest->buf);
b9e125e0 239 else if (stat(dest->buf, &buf))
0721c314 240 die_errno("failed to stat '%s'", dest->buf);
8434c2f1 241 else if (!S_ISDIR(buf.st_mode))
d7530708 242 die("%s exists and is not a directory", dest->buf);
8434c2f1
DB
243 }
244
b9e125e0
MV
245 strbuf_addch(src, '/');
246 src_len = src->len;
247 strbuf_addch(dest, '/');
248 dest_len = dest->len;
8434c2f1
DB
249
250 while ((de = readdir(dir)) != NULL) {
b9e125e0
MV
251 strbuf_setlen(src, src_len);
252 strbuf_addstr(src, de->d_name);
253 strbuf_setlen(dest, dest_len);
254 strbuf_addstr(dest, de->d_name);
255 if (stat(src->buf, &buf)) {
256 warning ("failed to stat %s\n", src->buf);
8434c2f1
DB
257 continue;
258 }
259 if (S_ISDIR(buf.st_mode)) {
260 if (de->d_name[0] != '.')
261 copy_or_link_directory(src, dest);
262 continue;
263 }
264
b9e125e0 265 if (unlink(dest->buf) && errno != ENOENT)
d824cbba 266 die_errno("failed to unlink '%s'", dest->buf);
fdabc242 267 if (!option_no_hardlinks) {
b9e125e0 268 if (!link(src->buf, dest->buf))
fdabc242
DB
269 continue;
270 if (option_local)
0721c314 271 die_errno("failed to create link '%s'", dest->buf);
fdabc242 272 option_no_hardlinks = 1;
8434c2f1 273 }
f7835a25 274 if (copy_file_with_time(dest->buf, src->buf, 0666))
0721c314 275 die_errno("failed to copy file to '%s'", dest->buf);
8434c2f1 276 }
689ef4d4 277 closedir(dir);
8434c2f1
DB
278}
279
280static const struct ref *clone_local(const char *src_repo,
281 const char *dest_repo)
282{
283 const struct ref *ret;
b9e125e0
MV
284 struct strbuf src = STRBUF_INIT;
285 struct strbuf dest = STRBUF_INIT;
8434c2f1
DB
286 struct remote *remote;
287 struct transport *transport;
288
289 if (option_shared)
290 add_to_alternates_file(src_repo);
291 else {
b9e125e0
MV
292 strbuf_addf(&src, "%s/objects", src_repo);
293 strbuf_addf(&dest, "%s/objects", dest_repo);
294 copy_or_link_directory(&src, &dest);
295 strbuf_release(&src);
296 strbuf_release(&dest);
8434c2f1
DB
297 }
298
299 remote = remote_get(src_repo);
300 transport = transport_get(remote, src_repo);
301 ret = transport_get_remote_refs(transport);
302 transport_disconnect(transport);
303 return ret;
304}
305
306static const char *junk_work_tree;
307static const char *junk_git_dir;
e161acd1 308static pid_t junk_pid;
8434c2f1
DB
309
310static void remove_junk(void)
311{
f285a2d7 312 struct strbuf sb = STRBUF_INIT;
8434c2f1
DB
313 if (getpid() != junk_pid)
314 return;
8434c2f1
DB
315 if (junk_git_dir) {
316 strbuf_addstr(&sb, junk_git_dir);
317 remove_dir_recursively(&sb, 0);
318 strbuf_reset(&sb);
319 }
320 if (junk_work_tree) {
321 strbuf_addstr(&sb, junk_work_tree);
322 remove_dir_recursively(&sb, 0);
323 strbuf_reset(&sb);
324 }
325}
326
327static void remove_junk_on_signal(int signo)
328{
329 remove_junk();
4a16d072 330 sigchain_pop(signo);
8434c2f1
DB
331 raise(signo);
332}
333
5bdc32d3
NP
334static struct ref *wanted_peer_refs(const struct ref *refs,
335 struct refspec *refspec)
8434c2f1
DB
336{
337 struct ref *local_refs = NULL;
338 struct ref **tail = &local_refs;
8434c2f1
DB
339
340 get_fetch_map(refs, refspec, &tail, 0);
468386a9
JS
341 if (!option_mirror)
342 get_fetch_map(refs, tag_refspec, &tail, 0);
8434c2f1 343
5bdc32d3
NP
344 return local_refs;
345}
346
347static void write_remote_refs(const struct ref *local_refs)
348{
349 const struct ref *r;
350
8434c2f1 351 for (r = local_refs; r; r = r->next)
3e8aded2
JH
352 add_extra_ref(r->peer_ref->name, r->old_sha1, 0);
353
354 pack_refs(PACK_REFS_ALL);
355 clear_extra_refs();
8434c2f1
DB
356}
357
358int cmd_clone(int argc, const char **argv, const char *prefix)
359{
8434c2f1
DB
360 int is_bundle = 0;
361 struct stat buf;
362 const char *repo_name, *repo, *work_tree, *git_dir;
363 char *path, *dir;
55892d23 364 int dest_exists;
37148311 365 const struct ref *refs, *remote_head;
7a4ee28f
JK
366 const struct ref *remote_head_points_at;
367 const struct ref *our_head_points_at;
37148311 368 struct ref *mapped_refs;
b5ff37ac
MV
369 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
370 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
1db4a75c 371 struct transport *transport = NULL;
bc699afc 372 char *src_ref_prefix = "refs/heads/";
dfa7a6c5 373 int err = 0;
8434c2f1 374
689f0396
DB
375 struct refspec *refspec;
376 const char *fetch_pattern;
8434c2f1
DB
377
378 junk_pid = getpid();
379
37782920 380 argc = parse_options(argc, argv, prefix, builtin_clone_options,
8434c2f1
DB
381 builtin_clone_usage, 0);
382
d52dc4b1
JN
383 if (argc > 2)
384 usage_msg_opt("Too many arguments.",
385 builtin_clone_usage, builtin_clone_options);
386
8434c2f1 387 if (argc == 0)
d52dc4b1
JN
388 usage_msg_opt("You must specify a repository to clone.",
389 builtin_clone_usage, builtin_clone_options);
8434c2f1 390
bc699afc
JS
391 if (option_mirror)
392 option_bare = 1;
393
8434c2f1
DB
394 if (option_bare) {
395 if (option_origin)
396 die("--bare and --origin %s options are incompatible.",
397 option_origin);
398 option_no_checkout = 1;
8434c2f1
DB
399 }
400
401 if (!option_origin)
402 option_origin = "origin";
403
404 repo_name = argv[0];
405
406 path = get_repo_path(repo_name, &is_bundle);
407 if (path)
86521aca 408 repo = xstrdup(make_nonrelative_path(repo_name));
8434c2f1
DB
409 else if (!strchr(repo_name, ':'))
410 repo = xstrdup(make_absolute_path(repo_name));
411 else
412 repo = repo_name;
413
414 if (argc == 2)
415 dir = xstrdup(argv[1]);
416 else
6612f877 417 dir = guess_dir_name(repo_name, is_bundle, option_bare);
44a68fd5 418 strip_trailing_slashes(dir);
8434c2f1 419
55892d23
AP
420 dest_exists = !stat(dir, &buf);
421 if (dest_exists && !is_empty_dir(dir))
422 die("destination path '%s' already exists and is not "
423 "an empty directory.", dir);
8434c2f1 424
8434c2f1
DB
425 strbuf_addf(&reflog_msg, "clone: from %s", repo);
426
427 if (option_bare)
428 work_tree = NULL;
429 else {
430 work_tree = getenv("GIT_WORK_TREE");
431 if (work_tree && !stat(work_tree, &buf))
432 die("working tree '%s' already exists.", work_tree);
433 }
434
435 if (option_bare || work_tree)
436 git_dir = xstrdup(dir);
437 else {
438 work_tree = dir;
439 git_dir = xstrdup(mkpath("%s/.git", dir));
440 }
441
442 if (!option_bare) {
443 junk_work_tree = work_tree;
8e21d63b 444 if (safe_create_leading_directories_const(work_tree) < 0)
d824cbba
TR
445 die_errno("could not create leading directories of '%s'",
446 work_tree);
55892d23 447 if (!dest_exists && mkdir(work_tree, 0755))
d824cbba
TR
448 die_errno("could not create work tree dir '%s'.",
449 work_tree);
8434c2f1
DB
450 set_git_work_tree(work_tree);
451 }
452 junk_git_dir = git_dir;
453 atexit(remove_junk);
57b235a4 454 sigchain_push_common(remove_junk_on_signal);
8434c2f1 455
50b5f420 456 setenv(CONFIG_ENVIRONMENT, mkpath("%s/config", git_dir), 1);
8434c2f1 457
8e21d63b
JK
458 if (safe_create_leading_directories_const(git_dir) < 0)
459 die("could not create leading directories of '%s'", git_dir);
8434c2f1
DB
460 set_git_dir(make_absolute_path(git_dir));
461
8434c2f1
DB
462 init_db(option_template, option_quiet ? INIT_DB_QUIET : 0);
463
5b8063b5
JS
464 /*
465 * At this point, the config exists, so we do not need the
466 * environment variable. We actually need to unset it, too, to
467 * re-enable parsing of the global configs.
468 */
469 unsetenv(CONFIG_ENVIRONMENT);
470
8434c2f1
DB
471 if (option_reference)
472 setup_reference(git_dir);
473
9bd81e42 474 git_config(git_default_config, NULL);
8434c2f1
DB
475
476 if (option_bare) {
bc699afc
JS
477 if (option_mirror)
478 src_ref_prefix = "refs/";
b5ff37ac 479 strbuf_addstr(&branch_top, src_ref_prefix);
8434c2f1
DB
480
481 git_config_set("core.bare", "true");
482 } else {
b5ff37ac 483 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
bc699afc 484 }
8434c2f1 485
689f0396
DB
486 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
487
bc699afc 488 if (option_mirror || !option_bare) {
8434c2f1 489 /* Configure the remote */
689f0396
DB
490 strbuf_addf(&key, "remote.%s.fetch", option_origin);
491 git_config_set_multivar(key.buf, value.buf, "^$", 0);
492 strbuf_reset(&key);
493
bc699afc 494 if (option_mirror) {
b5ff37ac
MV
495 strbuf_addf(&key, "remote.%s.mirror", option_origin);
496 git_config_set(key.buf, "true");
497 strbuf_reset(&key);
bc699afc
JS
498 }
499
b5ff37ac
MV
500 strbuf_addf(&key, "remote.%s.url", option_origin);
501 git_config_set(key.buf, repo);
b5ff37ac 502 strbuf_reset(&key);
8434c2f1
DB
503 }
504
689f0396
DB
505 fetch_pattern = value.buf;
506 refspec = parse_fetch_refspec(1, &fetch_pattern);
507
508 strbuf_reset(&value);
8434c2f1 509
5bdc32d3 510 if (path && !is_bundle) {
8434c2f1 511 refs = clone_local(path, git_dir);
5bdc32d3
NP
512 mapped_refs = wanted_peer_refs(refs, refspec);
513 } else {
8434c2f1 514 struct remote *remote = remote_get(argv[0]);
1db4a75c 515 transport = transport_get(remote, remote->url[0]);
8434c2f1 516
37b78c25
JK
517 if (!transport->get_refs_list || !transport->fetch)
518 die("Don't know how to clone %s", transport->url);
519
8434c2f1
DB
520 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
521
522 if (option_depth)
523 transport_set_option(transport, TRANS_OPT_DEPTH,
524 option_depth);
525
526 if (option_quiet)
527 transport->verbose = -1;
21188b1e
MV
528 else if (option_verbose)
529 transport->progress = 1;
8434c2f1 530
837c8767
SH
531 if (option_upload_pack)
532 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
533 option_upload_pack);
534
8434c2f1 535 refs = transport_get_remote_refs(transport);
5bdc32d3
NP
536 if (refs) {
537 mapped_refs = wanted_peer_refs(refs, refspec);
538 transport_fetch_refs(transport, mapped_refs);
539 }
8434c2f1
DB
540 }
541
86ac7518
SR
542 if (refs) {
543 clear_extra_refs();
8434c2f1 544
5bdc32d3 545 write_remote_refs(mapped_refs);
8434c2f1 546
6cb4e6cc 547 remote_head = find_ref_by_name(refs, "HEAD");
7a4ee28f
JK
548 remote_head_points_at =
549 guess_remote_head(remote_head, mapped_refs, 0);
550
551 if (option_branch) {
552 struct strbuf head = STRBUF_INIT;
553 strbuf_addstr(&head, src_ref_prefix);
554 strbuf_addstr(&head, option_branch);
555 our_head_points_at =
556 find_ref_by_name(mapped_refs, head.buf);
557 strbuf_release(&head);
558
559 if (!our_head_points_at) {
560 warning("Remote branch %s not found in "
561 "upstream %s, using HEAD instead",
562 option_branch, option_origin);
563 our_head_points_at = remote_head_points_at;
564 }
565 }
566 else
567 our_head_points_at = remote_head_points_at;
86ac7518
SR
568 }
569 else {
570 warning("You appear to have cloned an empty repository.");
7a4ee28f
JK
571 our_head_points_at = NULL;
572 remote_head_points_at = NULL;
86ac7518
SR
573 remote_head = NULL;
574 option_no_checkout = 1;
5cd12b85 575 if (!option_bare)
a9f2c136 576 install_branch_config(0, "master", option_origin,
5cd12b85 577 "refs/heads/master");
86ac7518 578 }
8434c2f1 579
7a4ee28f
JK
580 if (remote_head_points_at && !option_bare) {
581 struct strbuf head_ref = STRBUF_INIT;
582 strbuf_addstr(&head_ref, branch_top.buf);
583 strbuf_addstr(&head_ref, "HEAD");
584 create_symref(head_ref.buf,
585 remote_head_points_at->peer_ref->name,
586 reflog_msg.buf);
587 }
8434c2f1 588
7a4ee28f
JK
589 if (our_head_points_at) {
590 /* Local default branch link */
591 create_symref("HEAD", our_head_points_at->name, NULL);
8434c2f1 592 if (!option_bare) {
7a4ee28f
JK
593 const char *head = skip_prefix(our_head_points_at->name,
594 "refs/heads/");
8434c2f1 595 update_ref(reflog_msg.buf, "HEAD",
7a4ee28f 596 our_head_points_at->old_sha1,
8434c2f1 597 NULL, 0, DIE_ON_ERR);
a9f2c136 598 install_branch_config(0, head, option_origin,
7a4ee28f 599 our_head_points_at->name);
8434c2f1
DB
600 }
601 } else if (remote_head) {
602 /* Source had detached HEAD pointing somewhere. */
7a4ee28f 603 if (!option_bare) {
8434c2f1
DB
604 update_ref(reflog_msg.buf, "HEAD",
605 remote_head->old_sha1,
606 NULL, REF_NODEREF, DIE_ON_ERR);
7a4ee28f
JK
607 our_head_points_at = remote_head;
608 }
8434c2f1
DB
609 } else {
610 /* Nothing to checkout out */
611 if (!option_no_checkout)
612 warning("remote HEAD refers to nonexistent ref, "
613 "unable to checkout.\n");
614 option_no_checkout = 1;
615 }
616
12d49966 617 if (transport) {
1db4a75c 618 transport_unlock_pack(transport);
12d49966
JK
619 transport_disconnect(transport);
620 }
1db4a75c 621
8434c2f1
DB
622 if (!option_no_checkout) {
623 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
624 struct unpack_trees_options opts;
625 struct tree *tree;
626 struct tree_desc t;
627 int fd;
628
629 /* We need to be in the new work tree for the checkout */
630 setup_work_tree();
631
632 fd = hold_locked_index(lock_file, 1);
633
634 memset(&opts, 0, sizeof opts);
635 opts.update = 1;
a73bc127
JS
636 opts.merge = 1;
637 opts.fn = oneway_merge;
8434c2f1 638 opts.verbose_update = !option_quiet;
a73bc127 639 opts.src_index = &the_index;
8434c2f1
DB
640 opts.dst_index = &the_index;
641
7a4ee28f 642 tree = parse_tree_indirect(our_head_points_at->old_sha1);
8434c2f1
DB
643 parse_tree(tree);
644 init_tree_desc(&t, tree->buffer, tree->size);
645 unpack_trees(1, &t, &opts);
646
647 if (write_cache(fd, active_cache, active_nr) ||
648 commit_locked_index(lock_file))
649 die("unable to write new index file");
dfa7a6c5
JK
650
651 err |= run_hook(NULL, "post-checkout", sha1_to_hex(null_sha1),
d01a8e32
BS
652 sha1_to_hex(our_head_points_at->old_sha1), "1",
653 NULL);
e7fed18a
JH
654
655 if (!err && option_recursive)
656 err = run_command_v_opt(argv_submodule, RUN_GIT_CMD);
8434c2f1
DB
657 }
658
659 strbuf_release(&reflog_msg);
b5ff37ac
MV
660 strbuf_release(&branch_top);
661 strbuf_release(&key);
662 strbuf_release(&value);
8434c2f1 663 junk_pid = 0;
dfa7a6c5 664 return err;
8434c2f1 665}