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
8 * Clone a repository into a different directory that does not yet exist.
12 #include "parse-options.h"
13 #include "fetch-pack.h"
16 #include "tree-walk.h"
17 #include "unpack-trees.h"
18 #include "transport.h"
21 #include "pack-refs.h"
25 #include "run-command.h"
29 * - respect DB_ENVIRONMENT for .git/objects.
31 * Implementation notes:
32 * - dropping use-separate-remote and no-separate-remote compatibility
35 static const char * const builtin_clone_usage
[] = {
36 "git clone [options] [--] <repo> [<dir>]",
40 static int option_quiet
, 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_reference
, *option_depth
;
43 static char *option_origin
= NULL
;
44 static char *option_branch
= NULL
;
45 static char *option_upload_pack
= "git-upload-pack";
46 static int option_verbose
;
48 static struct option builtin_clone_options
[] = {
49 OPT__QUIET(&option_quiet
),
50 OPT__VERBOSE(&option_verbose
),
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"),
54 { OPTION_BOOLEAN
, 0, "naked", &option_bare
, NULL
,
55 "create a bare repository",
56 PARSE_OPT_NOARG
| PARSE_OPT_HIDDEN
},
57 OPT_BOOLEAN(0, "mirror", &option_mirror
,
58 "create a mirror repository (implies bare)"),
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"),
65 OPT_BOOLEAN(0, "recursive", &option_recursive
,
66 "initialize submodules in the clone"),
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",
72 "use <branch> instead of 'origin' to track upstream"),
73 OPT_STRING('b', "branch", &option_branch
, "branch",
74 "checkout <branch> instead of the remote's HEAD"),
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"),
83 static const char *argv_submodule
[] = {
84 "submodule", "update", "--init", "--recursive", NULL
87 static char *get_repo_path(const char *repo
, int *is_bundle
)
89 static char *suffix
[] = { "/.git", ".git", "" };
90 static char *bundle_suffix
[] = { ".bundle", "" };
94 for (i
= 0; i
< ARRAY_SIZE(suffix
); i
++) {
96 path
= mkpath("%s%s", repo
, suffix
[i
]);
97 if (is_directory(path
)) {
99 return xstrdup(make_nonrelative_path(path
));
103 for (i
= 0; i
< ARRAY_SIZE(bundle_suffix
); i
++) {
105 path
= mkpath("%s%s", repo
, bundle_suffix
[i
]);
106 if (!stat(path
, &st
) && S_ISREG(st
.st_mode
)) {
108 return xstrdup(make_nonrelative_path(path
));
115 static char *guess_dir_name(const char *repo
, int is_bundle
, int is_bare
)
117 const char *end
= repo
+ strlen(repo
), *start
;
121 * Strip trailing spaces, slashes and /.git
123 while (repo
< end
&& (is_dir_sep(end
[-1]) || isspace(end
[-1])))
125 if (end
- repo
> 5 && is_dir_sep(end
[-5]) &&
126 !strncmp(end
- 4, ".git", 4)) {
128 while (repo
< end
&& is_dir_sep(end
[-1]))
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.
138 while (repo
< start
&& !is_dir_sep(start
[-1]) && start
[-1] != ':')
142 * Strip .{bundle,git}.
145 if (end
- start
> 7 && !strncmp(end
- 7, ".bundle", 7))
148 if (end
- start
> 4 && !strncmp(end
- 4, ".git", 4))
153 struct strbuf result
= STRBUF_INIT
;
154 strbuf_addf(&result
, "%.*s.git", (int)(end
- start
), start
);
155 dir
= strbuf_detach(&result
, NULL
);
157 dir
= xstrndup(start
, end
- start
);
159 * Replace sequences of 'control' characters and whitespace
160 * with one ascii space, remove leading and trailing spaces.
164 int prev_space
= 1 /* strip leading whitespace */;
165 for (end
= dir
; *end
; ++end
) {
167 if ((unsigned char)ch
< '\x20')
178 if (out
> dir
&& prev_space
)
184 static void strip_trailing_slashes(char *dir
)
186 char *end
= dir
+ strlen(dir
);
188 while (dir
< end
- 1 && is_dir_sep(end
[-1]))
193 static void setup_reference(const char *repo
)
198 struct remote
*remote
;
199 struct transport
*transport
;
200 const struct ref
*extra
;
202 ref_git
= make_absolute_path(option_reference
);
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.",
210 ref_git_copy
= xstrdup(ref_git
);
212 add_to_alternates_file(ref_git_copy
);
214 remote
= remote_get(ref_git_copy
);
215 transport
= transport_get(remote
, ref_git_copy
);
216 for (extra
= transport_get_remote_refs(transport
); extra
;
218 add_extra_ref(extra
->name
, extra
->old_sha1
, 0);
220 transport_disconnect(transport
);
225 static void copy_or_link_directory(struct strbuf
*src
, struct strbuf
*dest
)
229 int src_len
, dest_len
;
232 dir
= opendir(src
->buf
);
234 die_errno("failed to open '%s'", src
->buf
);
236 if (mkdir(dest
->buf
, 0777)) {
238 die_errno("failed to create directory '%s'", dest
->buf
);
239 else if (stat(dest
->buf
, &buf
))
240 die_errno("failed to stat '%s'", dest
->buf
);
241 else if (!S_ISDIR(buf
.st_mode
))
242 die("%s exists and is not a directory", dest
->buf
);
245 strbuf_addch(src
, '/');
247 strbuf_addch(dest
, '/');
248 dest_len
= dest
->len
;
250 while ((de
= readdir(dir
)) != NULL
) {
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
);
259 if (S_ISDIR(buf
.st_mode
)) {
260 if (de
->d_name
[0] != '.')
261 copy_or_link_directory(src
, dest
);
265 if (unlink(dest
->buf
) && errno
!= ENOENT
)
266 die_errno("failed to unlink '%s'", dest
->buf
);
267 if (!option_no_hardlinks
) {
268 if (!link(src
->buf
, dest
->buf
))
271 die_errno("failed to create link '%s'", dest
->buf
);
272 option_no_hardlinks
= 1;
274 if (copy_file_with_time(dest
->buf
, src
->buf
, 0666))
275 die_errno("failed to copy file to '%s'", dest
->buf
);
280 static const struct ref
*clone_local(const char *src_repo
,
281 const char *dest_repo
)
283 const struct ref
*ret
;
284 struct strbuf src
= STRBUF_INIT
;
285 struct strbuf dest
= STRBUF_INIT
;
286 struct remote
*remote
;
287 struct transport
*transport
;
290 add_to_alternates_file(src_repo
);
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
);
299 remote
= remote_get(src_repo
);
300 transport
= transport_get(remote
, src_repo
);
301 ret
= transport_get_remote_refs(transport
);
302 transport_disconnect(transport
);
306 static const char *junk_work_tree
;
307 static const char *junk_git_dir
;
308 static pid_t junk_pid
;
310 static void remove_junk(void)
312 struct strbuf sb
= STRBUF_INIT
;
313 if (getpid() != junk_pid
)
316 strbuf_addstr(&sb
, junk_git_dir
);
317 remove_dir_recursively(&sb
, 0);
320 if (junk_work_tree
) {
321 strbuf_addstr(&sb
, junk_work_tree
);
322 remove_dir_recursively(&sb
, 0);
327 static void remove_junk_on_signal(int signo
)
334 static struct ref
*wanted_peer_refs(const struct ref
*refs
,
335 struct refspec
*refspec
)
337 struct ref
*local_refs
= NULL
;
338 struct ref
**tail
= &local_refs
;
340 get_fetch_map(refs
, refspec
, &tail
, 0);
342 get_fetch_map(refs
, tag_refspec
, &tail
, 0);
347 static void write_remote_refs(const struct ref
*local_refs
)
351 for (r
= local_refs
; r
; r
= r
->next
)
352 add_extra_ref(r
->peer_ref
->name
, r
->old_sha1
, 0);
354 pack_refs(PACK_REFS_ALL
);
358 int cmd_clone(int argc
, const char **argv
, const char *prefix
)
362 const char *repo_name
, *repo
, *work_tree
, *git_dir
;
365 const struct ref
*refs
, *remote_head
, *mapped_refs
;
366 const struct ref
*remote_head_points_at
;
367 const struct ref
*our_head_points_at
;
368 struct strbuf key
= STRBUF_INIT
, value
= STRBUF_INIT
;
369 struct strbuf branch_top
= STRBUF_INIT
, reflog_msg
= STRBUF_INIT
;
370 struct transport
*transport
= NULL
;
371 char *src_ref_prefix
= "refs/heads/";
374 struct refspec
*refspec
;
375 const char *fetch_pattern
;
379 argc
= parse_options(argc
, argv
, prefix
, builtin_clone_options
,
380 builtin_clone_usage
, 0);
383 usage_msg_opt("Too many arguments.",
384 builtin_clone_usage
, builtin_clone_options
);
387 usage_msg_opt("You must specify a repository to clone.",
388 builtin_clone_usage
, builtin_clone_options
);
395 die("--bare and --origin %s options are incompatible.",
397 option_no_checkout
= 1;
401 option_origin
= "origin";
405 path
= get_repo_path(repo_name
, &is_bundle
);
407 repo
= xstrdup(make_nonrelative_path(repo_name
));
408 else if (!strchr(repo_name
, ':'))
409 repo
= xstrdup(make_absolute_path(repo_name
));
414 dir
= xstrdup(argv
[1]);
416 dir
= guess_dir_name(repo_name
, is_bundle
, option_bare
);
417 strip_trailing_slashes(dir
);
419 dest_exists
= !stat(dir
, &buf
);
420 if (dest_exists
&& !is_empty_dir(dir
))
421 die("destination path '%s' already exists and is not "
422 "an empty directory.", dir
);
424 strbuf_addf(&reflog_msg
, "clone: from %s", repo
);
429 work_tree
= getenv("GIT_WORK_TREE");
430 if (work_tree
&& !stat(work_tree
, &buf
))
431 die("working tree '%s' already exists.", work_tree
);
434 if (option_bare
|| work_tree
)
435 git_dir
= xstrdup(dir
);
438 git_dir
= xstrdup(mkpath("%s/.git", dir
));
442 junk_work_tree
= work_tree
;
443 if (safe_create_leading_directories_const(work_tree
) < 0)
444 die_errno("could not create leading directories of '%s'",
446 if (!dest_exists
&& mkdir(work_tree
, 0755))
447 die_errno("could not create work tree dir '%s'.",
449 set_git_work_tree(work_tree
);
451 junk_git_dir
= git_dir
;
453 sigchain_push_common(remove_junk_on_signal
);
455 setenv(CONFIG_ENVIRONMENT
, mkpath("%s/config", git_dir
), 1);
457 if (safe_create_leading_directories_const(git_dir
) < 0)
458 die("could not create leading directories of '%s'", git_dir
);
459 set_git_dir(make_absolute_path(git_dir
));
461 init_db(option_template
, option_quiet
? INIT_DB_QUIET
: 0);
464 * At this point, the config exists, so we do not need the
465 * environment variable. We actually need to unset it, too, to
466 * re-enable parsing of the global configs.
468 unsetenv(CONFIG_ENVIRONMENT
);
470 if (option_reference
)
471 setup_reference(git_dir
);
473 git_config(git_default_config
, NULL
);
477 src_ref_prefix
= "refs/";
478 strbuf_addstr(&branch_top
, src_ref_prefix
);
480 git_config_set("core.bare", "true");
482 strbuf_addf(&branch_top
, "refs/remotes/%s/", option_origin
);
485 strbuf_addf(&value
, "+%s*:%s*", src_ref_prefix
, branch_top
.buf
);
487 if (option_mirror
|| !option_bare
) {
488 /* Configure the remote */
489 strbuf_addf(&key
, "remote.%s.fetch", option_origin
);
490 git_config_set_multivar(key
.buf
, value
.buf
, "^$", 0);
494 strbuf_addf(&key
, "remote.%s.mirror", option_origin
);
495 git_config_set(key
.buf
, "true");
499 strbuf_addf(&key
, "remote.%s.url", option_origin
);
500 git_config_set(key
.buf
, repo
);
504 fetch_pattern
= value
.buf
;
505 refspec
= parse_fetch_refspec(1, &fetch_pattern
);
507 strbuf_reset(&value
);
509 if (path
&& !is_bundle
) {
510 refs
= clone_local(path
, git_dir
);
511 mapped_refs
= wanted_peer_refs(refs
, refspec
);
513 struct remote
*remote
= remote_get(argv
[0]);
514 transport
= transport_get(remote
, remote
->url
[0]);
516 if (!transport
->get_refs_list
|| !transport
->fetch
)
517 die("Don't know how to clone %s", transport
->url
);
519 transport_set_option(transport
, TRANS_OPT_KEEP
, "yes");
522 transport_set_option(transport
, TRANS_OPT_DEPTH
,
526 transport
->verbose
= -1;
527 else if (option_verbose
)
528 transport
->progress
= 1;
530 if (option_upload_pack
)
531 transport_set_option(transport
, TRANS_OPT_UPLOADPACK
,
534 refs
= transport_get_remote_refs(transport
);
536 mapped_refs
= wanted_peer_refs(refs
, refspec
);
537 transport_fetch_refs(transport
, mapped_refs
);
544 write_remote_refs(mapped_refs
);
546 remote_head
= find_ref_by_name(refs
, "HEAD");
547 remote_head_points_at
=
548 guess_remote_head(remote_head
, mapped_refs
, 0);
551 struct strbuf head
= STRBUF_INIT
;
552 strbuf_addstr(&head
, src_ref_prefix
);
553 strbuf_addstr(&head
, option_branch
);
555 find_ref_by_name(mapped_refs
, head
.buf
);
556 strbuf_release(&head
);
558 if (!our_head_points_at
) {
559 warning("Remote branch %s not found in "
560 "upstream %s, using HEAD instead",
561 option_branch
, option_origin
);
562 our_head_points_at
= remote_head_points_at
;
566 our_head_points_at
= remote_head_points_at
;
569 warning("You appear to have cloned an empty repository.");
570 our_head_points_at
= NULL
;
571 remote_head_points_at
= NULL
;
573 option_no_checkout
= 1;
575 install_branch_config(0, "master", option_origin
,
576 "refs/heads/master");
579 if (remote_head_points_at
&& !option_bare
) {
580 struct strbuf head_ref
= STRBUF_INIT
;
581 strbuf_addstr(&head_ref
, branch_top
.buf
);
582 strbuf_addstr(&head_ref
, "HEAD");
583 create_symref(head_ref
.buf
,
584 remote_head_points_at
->peer_ref
->name
,
588 if (our_head_points_at
) {
589 /* Local default branch link */
590 create_symref("HEAD", our_head_points_at
->name
, NULL
);
592 const char *head
= skip_prefix(our_head_points_at
->name
,
594 update_ref(reflog_msg
.buf
, "HEAD",
595 our_head_points_at
->old_sha1
,
596 NULL
, 0, DIE_ON_ERR
);
597 install_branch_config(0, head
, option_origin
,
598 our_head_points_at
->name
);
600 } else if (remote_head
) {
601 /* Source had detached HEAD pointing somewhere. */
603 update_ref(reflog_msg
.buf
, "HEAD",
604 remote_head
->old_sha1
,
605 NULL
, REF_NODEREF
, DIE_ON_ERR
);
606 our_head_points_at
= remote_head
;
609 /* Nothing to checkout out */
610 if (!option_no_checkout
)
611 warning("remote HEAD refers to nonexistent ref, "
612 "unable to checkout.\n");
613 option_no_checkout
= 1;
617 transport_unlock_pack(transport
);
618 transport_disconnect(transport
);
621 if (!option_no_checkout
) {
622 struct lock_file
*lock_file
= xcalloc(1, sizeof(struct lock_file
));
623 struct unpack_trees_options opts
;
628 /* We need to be in the new work tree for the checkout */
631 fd
= hold_locked_index(lock_file
, 1);
633 memset(&opts
, 0, sizeof opts
);
636 opts
.fn
= oneway_merge
;
637 opts
.verbose_update
= !option_quiet
;
638 opts
.src_index
= &the_index
;
639 opts
.dst_index
= &the_index
;
641 tree
= parse_tree_indirect(our_head_points_at
->old_sha1
);
643 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
644 unpack_trees(1, &t
, &opts
);
646 if (write_cache(fd
, active_cache
, active_nr
) ||
647 commit_locked_index(lock_file
))
648 die("unable to write new index file");
650 err
|= run_hook(NULL
, "post-checkout", sha1_to_hex(null_sha1
),
651 sha1_to_hex(our_head_points_at
->old_sha1
), "1",
654 if (!err
&& option_recursive
)
655 err
= run_command_v_opt(argv_submodule
, RUN_GIT_CMD
);
658 strbuf_release(&reflog_msg
);
659 strbuf_release(&branch_top
);
660 strbuf_release(&key
);
661 strbuf_release(&value
);