Code

write_remote_refs(): create packed (rather than extra) refs
[git.git] / builtin / clone.c
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  */
11 #include "builtin.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"
21 #include "pack-refs.h"
22 #include "sigchain.h"
23 #include "branch.h"
24 #include "remote.h"
25 #include "run-command.h"
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  */
35 static const char * const builtin_clone_usage[] = {
36         "git clone [options] [--] <repo> [<dir>]",
37         NULL
38 };
40 static int option_no_checkout, option_bare, option_mirror;
41 static int option_local, option_no_hardlinks, option_shared, option_recursive;
42 static char *option_template, *option_depth;
43 static char *option_origin = NULL;
44 static char *option_branch = NULL;
45 static const char *real_git_dir;
46 static char *option_upload_pack = "git-upload-pack";
47 static int option_verbosity;
48 static int option_progress;
49 static struct string_list option_config;
50 static struct string_list option_reference;
52 static 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 }
61 static struct option builtin_clone_options[] = {
62         OPT__VERBOSITY(&option_verbosity),
63         OPT_BOOLEAN(0, "progress", &option_progress,
64                         "force progress reporting"),
65         OPT_BOOLEAN('n', "no-checkout", &option_no_checkout,
66                     "don't create a checkout"),
67         OPT_BOOLEAN(0, "bare", &option_bare, "create a bare repository"),
68         { OPTION_BOOLEAN, 0, "naked", &option_bare, NULL,
69                 "create a bare repository",
70                 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
71         OPT_BOOLEAN(0, "mirror", &option_mirror,
72                     "create a mirror repository (implies bare)"),
73         OPT_BOOLEAN('l', "local", &option_local,
74                     "to clone from a local repository"),
75         OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks,
76                     "don't use local hardlinks, always copy"),
77         OPT_BOOLEAN('s', "shared", &option_shared,
78                     "setup as shared repository"),
79         OPT_BOOLEAN(0, "recursive", &option_recursive,
80                     "initialize submodules in the clone"),
81         OPT_BOOLEAN(0, "recurse-submodules", &option_recursive,
82                     "initialize submodules in the clone"),
83         OPT_STRING(0, "template", &option_template, "template-directory",
84                    "directory from which templates will be used"),
85         OPT_CALLBACK(0 , "reference", &option_reference, "repo",
86                      "reference repository", &opt_parse_reference),
87         OPT_STRING('o', "origin", &option_origin, "name",
88                    "use <name> instead of 'origin' to track upstream"),
89         OPT_STRING('b', "branch", &option_branch, "branch",
90                    "checkout <branch> instead of the remote's HEAD"),
91         OPT_STRING('u', "upload-pack", &option_upload_pack, "path",
92                    "path to git-upload-pack on the remote"),
93         OPT_STRING(0, "depth", &option_depth, "depth",
94                     "create a shallow clone of that depth"),
95         OPT_STRING(0, "separate-git-dir", &real_git_dir, "gitdir",
96                    "separate git dir from working tree"),
97         OPT_STRING_LIST('c', "config", &option_config, "key=value",
98                         "set config inside the new repository"),
99         OPT_END()
100 };
102 static const char *argv_submodule[] = {
103         "submodule", "update", "--init", "--recursive", NULL
104 };
106 static char *get_repo_path(const char *repo, int *is_bundle)
108         static char *suffix[] = { "/.git", ".git", "" };
109         static char *bundle_suffix[] = { ".bundle", "" };
110         struct stat st;
111         int i;
113         for (i = 0; i < ARRAY_SIZE(suffix); i++) {
114                 const char *path;
115                 path = mkpath("%s%s", repo, suffix[i]);
116                 if (stat(path, &st))
117                         continue;
118                 if (S_ISDIR(st.st_mode)) {
119                         *is_bundle = 0;
120                         return xstrdup(absolute_path(path));
121                 } else if (S_ISREG(st.st_mode) && st.st_size > 8) {
122                         /* Is it a "gitfile"? */
123                         char signature[8];
124                         int len, fd = open(path, O_RDONLY);
125                         if (fd < 0)
126                                 continue;
127                         len = read_in_full(fd, signature, 8);
128                         close(fd);
129                         if (len != 8 || strncmp(signature, "gitdir: ", 8))
130                                 continue;
131                         path = read_gitfile(path);
132                         if (path) {
133                                 *is_bundle = 0;
134                                 return xstrdup(absolute_path(path));
135                         }
136                 }
137         }
139         for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
140                 const char *path;
141                 path = mkpath("%s%s", repo, bundle_suffix[i]);
142                 if (!stat(path, &st) && S_ISREG(st.st_mode)) {
143                         *is_bundle = 1;
144                         return xstrdup(absolute_path(path));
145                 }
146         }
148         return NULL;
151 static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
153         const char *end = repo + strlen(repo), *start;
154         char *dir;
156         /*
157          * Strip trailing spaces, slashes and /.git
158          */
159         while (repo < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
160                 end--;
161         if (end - repo > 5 && is_dir_sep(end[-5]) &&
162             !strncmp(end - 4, ".git", 4)) {
163                 end -= 5;
164                 while (repo < end && is_dir_sep(end[-1]))
165                         end--;
166         }
168         /*
169          * Find last component, but be prepared that repo could have
170          * the form  "remote.example.com:foo.git", i.e. no slash
171          * in the directory part.
172          */
173         start = end;
174         while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
175                 start--;
177         /*
178          * Strip .{bundle,git}.
179          */
180         if (is_bundle) {
181                 if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
182                         end -= 7;
183         } else {
184                 if (end - start > 4 && !strncmp(end - 4, ".git", 4))
185                         end -= 4;
186         }
188         if (is_bare) {
189                 struct strbuf result = STRBUF_INIT;
190                 strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
191                 dir = strbuf_detach(&result, NULL);
192         } else
193                 dir = xstrndup(start, end - start);
194         /*
195          * Replace sequences of 'control' characters and whitespace
196          * with one ascii space, remove leading and trailing spaces.
197          */
198         if (*dir) {
199                 char *out = dir;
200                 int prev_space = 1 /* strip leading whitespace */;
201                 for (end = dir; *end; ++end) {
202                         char ch = *end;
203                         if ((unsigned char)ch < '\x20')
204                                 ch = '\x20';
205                         if (isspace(ch)) {
206                                 if (prev_space)
207                                         continue;
208                                 prev_space = 1;
209                         } else
210                                 prev_space = 0;
211                         *out++ = ch;
212                 }
213                 *out = '\0';
214                 if (out > dir && prev_space)
215                         out[-1] = '\0';
216         }
217         return dir;
220 static void strip_trailing_slashes(char *dir)
222         char *end = dir + strlen(dir);
224         while (dir < end - 1 && is_dir_sep(end[-1]))
225                 end--;
226         *end = '\0';
229 static int add_one_reference(struct string_list_item *item, void *cb_data)
231         char *ref_git;
232         struct strbuf alternate = STRBUF_INIT;
233         struct remote *remote;
234         struct transport *transport;
235         const struct ref *extra;
237         /* Beware: real_path() and mkpath() return static buffer */
238         ref_git = xstrdup(real_path(item->string));
239         if (is_directory(mkpath("%s/.git/objects", ref_git))) {
240                 char *ref_git_git = xstrdup(mkpath("%s/.git", ref_git));
241                 free(ref_git);
242                 ref_git = ref_git_git;
243         } else if (!is_directory(mkpath("%s/objects", ref_git)))
244                 die(_("reference repository '%s' is not a local directory."),
245                     item->string);
247         strbuf_addf(&alternate, "%s/objects", ref_git);
248         add_to_alternates_file(alternate.buf);
249         strbuf_release(&alternate);
251         remote = remote_get(ref_git);
252         transport = transport_get(remote, ref_git);
253         for (extra = transport_get_remote_refs(transport); extra;
254              extra = extra->next)
255                 add_extra_ref(extra->name, extra->old_sha1, 0);
257         transport_disconnect(transport);
258         free(ref_git);
259         return 0;
262 static void setup_reference(void)
264         for_each_string_list(&option_reference, add_one_reference, NULL);
267 static void copy_alternates(struct strbuf *src, struct strbuf *dst,
268                             const char *src_repo)
270         /*
271          * Read from the source objects/info/alternates file
272          * and copy the entries to corresponding file in the
273          * destination repository with add_to_alternates_file().
274          * Both src and dst have "$path/objects/info/alternates".
275          *
276          * Instead of copying bit-for-bit from the original,
277          * we need to append to existing one so that the already
278          * created entry via "clone -s" is not lost, and also
279          * to turn entries with paths relative to the original
280          * absolute, so that they can be used in the new repository.
281          */
282         FILE *in = fopen(src->buf, "r");
283         struct strbuf line = STRBUF_INIT;
285         while (strbuf_getline(&line, in, '\n') != EOF) {
286                 char *abs_path, abs_buf[PATH_MAX];
287                 if (!line.len || line.buf[0] == '#')
288                         continue;
289                 if (is_absolute_path(line.buf)) {
290                         add_to_alternates_file(line.buf);
291                         continue;
292                 }
293                 abs_path = mkpath("%s/objects/%s", src_repo, line.buf);
294                 normalize_path_copy(abs_buf, abs_path);
295                 add_to_alternates_file(abs_buf);
296         }
297         strbuf_release(&line);
298         fclose(in);
301 static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest,
302                                    const char *src_repo, int src_baselen)
304         struct dirent *de;
305         struct stat buf;
306         int src_len, dest_len;
307         DIR *dir;
309         dir = opendir(src->buf);
310         if (!dir)
311                 die_errno(_("failed to open '%s'"), src->buf);
313         if (mkdir(dest->buf, 0777)) {
314                 if (errno != EEXIST)
315                         die_errno(_("failed to create directory '%s'"), dest->buf);
316                 else if (stat(dest->buf, &buf))
317                         die_errno(_("failed to stat '%s'"), dest->buf);
318                 else if (!S_ISDIR(buf.st_mode))
319                         die(_("%s exists and is not a directory"), dest->buf);
320         }
322         strbuf_addch(src, '/');
323         src_len = src->len;
324         strbuf_addch(dest, '/');
325         dest_len = dest->len;
327         while ((de = readdir(dir)) != NULL) {
328                 strbuf_setlen(src, src_len);
329                 strbuf_addstr(src, de->d_name);
330                 strbuf_setlen(dest, dest_len);
331                 strbuf_addstr(dest, de->d_name);
332                 if (stat(src->buf, &buf)) {
333                         warning (_("failed to stat %s\n"), src->buf);
334                         continue;
335                 }
336                 if (S_ISDIR(buf.st_mode)) {
337                         if (de->d_name[0] != '.')
338                                 copy_or_link_directory(src, dest,
339                                                        src_repo, src_baselen);
340                         continue;
341                 }
343                 /* Files that cannot be copied bit-for-bit... */
344                 if (!strcmp(src->buf + src_baselen, "/info/alternates")) {
345                         copy_alternates(src, dest, src_repo);
346                         continue;
347                 }
349                 if (unlink(dest->buf) && errno != ENOENT)
350                         die_errno(_("failed to unlink '%s'"), dest->buf);
351                 if (!option_no_hardlinks) {
352                         if (!link(src->buf, dest->buf))
353                                 continue;
354                         if (option_local)
355                                 die_errno(_("failed to create link '%s'"), dest->buf);
356                         option_no_hardlinks = 1;
357                 }
358                 if (copy_file_with_time(dest->buf, src->buf, 0666))
359                         die_errno(_("failed to copy file to '%s'"), dest->buf);
360         }
361         closedir(dir);
364 static const struct ref *clone_local(const char *src_repo,
365                                      const char *dest_repo)
367         const struct ref *ret;
368         struct remote *remote;
369         struct transport *transport;
371         if (option_shared) {
372                 struct strbuf alt = STRBUF_INIT;
373                 strbuf_addf(&alt, "%s/objects", src_repo);
374                 add_to_alternates_file(alt.buf);
375                 strbuf_release(&alt);
376         } else {
377                 struct strbuf src = STRBUF_INIT;
378                 struct strbuf dest = STRBUF_INIT;
379                 strbuf_addf(&src, "%s/objects", src_repo);
380                 strbuf_addf(&dest, "%s/objects", dest_repo);
381                 copy_or_link_directory(&src, &dest, src_repo, src.len);
382                 strbuf_release(&src);
383                 strbuf_release(&dest);
384         }
386         remote = remote_get(src_repo);
387         transport = transport_get(remote, src_repo);
388         ret = transport_get_remote_refs(transport);
389         transport_disconnect(transport);
390         if (0 <= option_verbosity)
391                 printf(_("done.\n"));
392         return ret;
395 static const char *junk_work_tree;
396 static const char *junk_git_dir;
397 static pid_t junk_pid;
399 static void remove_junk(void)
401         struct strbuf sb = STRBUF_INIT;
402         if (getpid() != junk_pid)
403                 return;
404         if (junk_git_dir) {
405                 strbuf_addstr(&sb, junk_git_dir);
406                 remove_dir_recursively(&sb, 0);
407                 strbuf_reset(&sb);
408         }
409         if (junk_work_tree) {
410                 strbuf_addstr(&sb, junk_work_tree);
411                 remove_dir_recursively(&sb, 0);
412                 strbuf_reset(&sb);
413         }
416 static void remove_junk_on_signal(int signo)
418         remove_junk();
419         sigchain_pop(signo);
420         raise(signo);
423 static struct ref *wanted_peer_refs(const struct ref *refs,
424                 struct refspec *refspec)
426         struct ref *head = copy_ref(find_ref_by_name(refs, "HEAD"));
427         struct ref *local_refs = head;
428         struct ref **tail = head ? &head->next : &local_refs;
430         get_fetch_map(refs, refspec, &tail, 0);
431         if (!option_mirror)
432                 get_fetch_map(refs, tag_refspec, &tail, 0);
434         return local_refs;
437 static void write_remote_refs(const struct ref *local_refs)
439         const struct ref *r;
441         for (r = local_refs; r; r = r->next) {
442                 if (!r->peer_ref)
443                         continue;
444                 add_packed_ref(r->peer_ref->name, r->old_sha1);
445         }
447         pack_refs(PACK_REFS_ALL);
450 static int write_one_config(const char *key, const char *value, void *data)
452         return git_config_set_multivar(key, value ? value : "true", "^$", 0);
455 static void write_config(struct string_list *config)
457         int i;
459         for (i = 0; i < config->nr; i++) {
460                 if (git_config_parse_parameter(config->items[i].string,
461                                                write_one_config, NULL) < 0)
462                         die("unable to write parameters to config file");
463         }
466 int cmd_clone(int argc, const char **argv, const char *prefix)
468         int is_bundle = 0, is_local;
469         struct stat buf;
470         const char *repo_name, *repo, *work_tree, *git_dir;
471         char *path, *dir;
472         int dest_exists;
473         const struct ref *refs, *remote_head;
474         const struct ref *remote_head_points_at;
475         const struct ref *our_head_points_at;
476         struct ref *mapped_refs;
477         struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
478         struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
479         struct transport *transport = NULL;
480         char *src_ref_prefix = "refs/heads/";
481         int err = 0;
483         struct refspec *refspec;
484         const char *fetch_pattern;
486         junk_pid = getpid();
488         packet_trace_identity("clone");
489         argc = parse_options(argc, argv, prefix, builtin_clone_options,
490                              builtin_clone_usage, 0);
492         if (argc > 2)
493                 usage_msg_opt(_("Too many arguments."),
494                         builtin_clone_usage, builtin_clone_options);
496         if (argc == 0)
497                 usage_msg_opt(_("You must specify a repository to clone."),
498                         builtin_clone_usage, builtin_clone_options);
500         if (option_mirror)
501                 option_bare = 1;
503         if (option_bare) {
504                 if (option_origin)
505                         die(_("--bare and --origin %s options are incompatible."),
506                             option_origin);
507                 option_no_checkout = 1;
508         }
510         if (!option_origin)
511                 option_origin = "origin";
513         repo_name = argv[0];
515         path = get_repo_path(repo_name, &is_bundle);
516         if (path)
517                 repo = xstrdup(absolute_path(repo_name));
518         else if (!strchr(repo_name, ':'))
519                 die(_("repository '%s' does not exist"), repo_name);
520         else
521                 repo = repo_name;
522         is_local = path && !is_bundle;
523         if (is_local && option_depth)
524                 warning(_("--depth is ignored in local clones; use file:// instead."));
526         if (argc == 2)
527                 dir = xstrdup(argv[1]);
528         else
529                 dir = guess_dir_name(repo_name, is_bundle, option_bare);
530         strip_trailing_slashes(dir);
532         dest_exists = !stat(dir, &buf);
533         if (dest_exists && !is_empty_dir(dir))
534                 die(_("destination path '%s' already exists and is not "
535                         "an empty directory."), dir);
537         strbuf_addf(&reflog_msg, "clone: from %s", repo);
539         if (option_bare)
540                 work_tree = NULL;
541         else {
542                 work_tree = getenv("GIT_WORK_TREE");
543                 if (work_tree && !stat(work_tree, &buf))
544                         die(_("working tree '%s' already exists."), work_tree);
545         }
547         if (option_bare || work_tree)
548                 git_dir = xstrdup(dir);
549         else {
550                 work_tree = dir;
551                 git_dir = xstrdup(mkpath("%s/.git", dir));
552         }
554         if (!option_bare) {
555                 junk_work_tree = work_tree;
556                 if (safe_create_leading_directories_const(work_tree) < 0)
557                         die_errno(_("could not create leading directories of '%s'"),
558                                   work_tree);
559                 if (!dest_exists && mkdir(work_tree, 0755))
560                         die_errno(_("could not create work tree dir '%s'."),
561                                   work_tree);
562                 set_git_work_tree(work_tree);
563         }
564         junk_git_dir = git_dir;
565         atexit(remove_junk);
566         sigchain_push_common(remove_junk_on_signal);
568         setenv(CONFIG_ENVIRONMENT, mkpath("%s/config", git_dir), 1);
570         if (safe_create_leading_directories_const(git_dir) < 0)
571                 die(_("could not create leading directories of '%s'"), git_dir);
573         set_git_dir_init(git_dir, real_git_dir, 0);
574         if (real_git_dir)
575                 git_dir = real_git_dir;
577         if (0 <= option_verbosity) {
578                 if (option_bare)
579                         printf(_("Cloning into bare repository '%s'...\n"), dir);
580                 else
581                         printf(_("Cloning into '%s'...\n"), dir);
582         }
583         init_db(option_template, INIT_DB_QUIET);
584         write_config(&option_config);
586         /*
587          * At this point, the config exists, so we do not need the
588          * environment variable.  We actually need to unset it, too, to
589          * re-enable parsing of the global configs.
590          */
591         unsetenv(CONFIG_ENVIRONMENT);
593         git_config(git_default_config, NULL);
595         if (option_bare) {
596                 if (option_mirror)
597                         src_ref_prefix = "refs/";
598                 strbuf_addstr(&branch_top, src_ref_prefix);
600                 git_config_set("core.bare", "true");
601         } else {
602                 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
603         }
605         strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
607         if (option_mirror || !option_bare) {
608                 /* Configure the remote */
609                 strbuf_addf(&key, "remote.%s.fetch", option_origin);
610                 git_config_set_multivar(key.buf, value.buf, "^$", 0);
611                 strbuf_reset(&key);
613                 if (option_mirror) {
614                         strbuf_addf(&key, "remote.%s.mirror", option_origin);
615                         git_config_set(key.buf, "true");
616                         strbuf_reset(&key);
617                 }
618         }
620         strbuf_addf(&key, "remote.%s.url", option_origin);
621         git_config_set(key.buf, repo);
622         strbuf_reset(&key);
624         if (option_reference.nr)
625                 setup_reference();
627         fetch_pattern = value.buf;
628         refspec = parse_fetch_refspec(1, &fetch_pattern);
630         strbuf_reset(&value);
632         if (is_local) {
633                 refs = clone_local(path, git_dir);
634                 mapped_refs = wanted_peer_refs(refs, refspec);
635         } else {
636                 struct remote *remote = remote_get(option_origin);
637                 transport = transport_get(remote, remote->url[0]);
639                 if (!transport->get_refs_list || !transport->fetch)
640                         die(_("Don't know how to clone %s"), transport->url);
642                 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
644                 if (option_depth)
645                         transport_set_option(transport, TRANS_OPT_DEPTH,
646                                              option_depth);
648                 transport_set_verbosity(transport, option_verbosity, option_progress);
650                 if (option_upload_pack)
651                         transport_set_option(transport, TRANS_OPT_UPLOADPACK,
652                                              option_upload_pack);
654                 refs = transport_get_remote_refs(transport);
655                 if (refs) {
656                         mapped_refs = wanted_peer_refs(refs, refspec);
657                         transport_fetch_refs(transport, mapped_refs);
658                 }
659         }
661         if (refs) {
662                 clear_extra_refs();
664                 write_remote_refs(mapped_refs);
666                 remote_head = find_ref_by_name(refs, "HEAD");
667                 remote_head_points_at =
668                         guess_remote_head(remote_head, mapped_refs, 0);
670                 if (option_branch) {
671                         struct strbuf head = STRBUF_INIT;
672                         strbuf_addstr(&head, src_ref_prefix);
673                         strbuf_addstr(&head, option_branch);
674                         our_head_points_at =
675                                 find_ref_by_name(mapped_refs, head.buf);
676                         strbuf_release(&head);
678                         if (!our_head_points_at) {
679                                 warning(_("Remote branch %s not found in "
680                                         "upstream %s, using HEAD instead"),
681                                         option_branch, option_origin);
682                                 our_head_points_at = remote_head_points_at;
683                         }
684                 }
685                 else
686                         our_head_points_at = remote_head_points_at;
687         }
688         else {
689                 warning(_("You appear to have cloned an empty repository."));
690                 our_head_points_at = NULL;
691                 remote_head_points_at = NULL;
692                 remote_head = NULL;
693                 option_no_checkout = 1;
694                 if (!option_bare)
695                         install_branch_config(0, "master", option_origin,
696                                               "refs/heads/master");
697         }
699         if (remote_head_points_at && !option_bare) {
700                 struct strbuf head_ref = STRBUF_INIT;
701                 strbuf_addstr(&head_ref, branch_top.buf);
702                 strbuf_addstr(&head_ref, "HEAD");
703                 create_symref(head_ref.buf,
704                               remote_head_points_at->peer_ref->name,
705                               reflog_msg.buf);
706         }
708         if (our_head_points_at) {
709                 /* Local default branch link */
710                 create_symref("HEAD", our_head_points_at->name, NULL);
711                 if (!option_bare) {
712                         const char *head = skip_prefix(our_head_points_at->name,
713                                                        "refs/heads/");
714                         update_ref(reflog_msg.buf, "HEAD",
715                                    our_head_points_at->old_sha1,
716                                    NULL, 0, DIE_ON_ERR);
717                         install_branch_config(0, head, option_origin,
718                                               our_head_points_at->name);
719                 }
720         } else if (remote_head) {
721                 /* Source had detached HEAD pointing somewhere. */
722                 if (!option_bare) {
723                         update_ref(reflog_msg.buf, "HEAD",
724                                    remote_head->old_sha1,
725                                    NULL, REF_NODEREF, DIE_ON_ERR);
726                         our_head_points_at = remote_head;
727                 }
728         } else {
729                 /* Nothing to checkout out */
730                 if (!option_no_checkout)
731                         warning(_("remote HEAD refers to nonexistent ref, "
732                                 "unable to checkout.\n"));
733                 option_no_checkout = 1;
734         }
736         if (transport) {
737                 transport_unlock_pack(transport);
738                 transport_disconnect(transport);
739         }
741         if (!option_no_checkout) {
742                 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
743                 struct unpack_trees_options opts;
744                 struct tree *tree;
745                 struct tree_desc t;
746                 int fd;
748                 /* We need to be in the new work tree for the checkout */
749                 setup_work_tree();
751                 fd = hold_locked_index(lock_file, 1);
753                 memset(&opts, 0, sizeof opts);
754                 opts.update = 1;
755                 opts.merge = 1;
756                 opts.fn = oneway_merge;
757                 opts.verbose_update = (option_verbosity > 0);
758                 opts.src_index = &the_index;
759                 opts.dst_index = &the_index;
761                 tree = parse_tree_indirect(our_head_points_at->old_sha1);
762                 parse_tree(tree);
763                 init_tree_desc(&t, tree->buffer, tree->size);
764                 unpack_trees(1, &t, &opts);
766                 if (write_cache(fd, active_cache, active_nr) ||
767                     commit_locked_index(lock_file))
768                         die(_("unable to write new index file"));
770                 err |= run_hook(NULL, "post-checkout", sha1_to_hex(null_sha1),
771                                 sha1_to_hex(our_head_points_at->old_sha1), "1",
772                                 NULL);
774                 if (!err && option_recursive)
775                         err = run_command_v_opt(argv_submodule, RUN_GIT_CMD);
776         }
778         strbuf_release(&reflog_msg);
779         strbuf_release(&branch_top);
780         strbuf_release(&key);
781         strbuf_release(&value);
782         junk_pid = 0;
783         return err;