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 * - respect DB_ENVIRONMENT for .git/objects.
27 * Implementation notes:
28 * - dropping use-separate-remote and no-separate-remote compatibility
31 static const char * const builtin_clone_usage
[] = {
32 "git-clone [options] [--] <repo> [<dir>]",
36 static int option_quiet
, option_no_checkout
, option_bare
;
37 static int option_local
, option_no_hardlinks
, option_shared
;
38 static char *option_template
, *option_reference
, *option_depth
;
39 static char *option_origin
= NULL
;
40 static char *option_upload_pack
= "git-upload-pack";
42 static struct option builtin_clone_options
[] = {
43 OPT__QUIET(&option_quiet
),
44 OPT_BOOLEAN('n', "no-checkout", &option_no_checkout
,
45 "don't create a checkout"),
46 OPT_BOOLEAN(0, "bare", &option_bare
, "create a bare repository"),
47 OPT_BOOLEAN(0, "naked", &option_bare
, "create a bare repository"),
48 OPT_BOOLEAN('l', "local", &option_local
,
49 "to clone from a local repository"),
50 OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks
,
51 "don't use local hardlinks, always copy"),
52 OPT_BOOLEAN('s', "shared", &option_shared
,
53 "setup as shared repository"),
54 OPT_STRING(0, "template", &option_template
, "path",
55 "path the template repository"),
56 OPT_STRING(0, "reference", &option_reference
, "repo",
57 "reference repository"),
58 OPT_STRING('o', "origin", &option_origin
, "branch",
59 "use <branch> instead or 'origin' to track upstream"),
60 OPT_STRING('u', "upload-pack", &option_upload_pack
, "path",
61 "path to git-upload-pack on the remote"),
62 OPT_STRING(0, "depth", &option_depth
, "depth",
63 "create a shallow clone of that depth"),
68 static char *get_repo_path(const char *repo
, int *is_bundle
)
70 static char *suffix
[] = { "/.git", ".git", "" };
71 static char *bundle_suffix
[] = { ".bundle", "" };
75 for (i
= 0; i
< ARRAY_SIZE(suffix
); i
++) {
77 path
= mkpath("%s%s", repo
, suffix
[i
]);
78 if (!stat(path
, &st
) && S_ISDIR(st
.st_mode
)) {
80 return xstrdup(make_nonrelative_path(path
));
84 for (i
= 0; i
< ARRAY_SIZE(bundle_suffix
); i
++) {
86 path
= mkpath("%s%s", repo
, bundle_suffix
[i
]);
87 if (!stat(path
, &st
) && S_ISREG(st
.st_mode
)) {
89 return xstrdup(make_nonrelative_path(path
));
96 static char *guess_dir_name(const char *repo
, int is_bundle
)
98 const char *p
, *start
, *end
, *limit
;
99 int after_slash_or_colon
;
101 /* Guess dir name from repository: strip trailing '/',
102 * strip trailing '[:/]*.{git,bundle}', strip leading '.*[/:]'. */
104 after_slash_or_colon
= 1;
105 limit
= repo
+ strlen(repo
);
108 for (p
= repo
; p
< limit
; p
++) {
109 const char *prefix
= is_bundle
? ".bundle" : ".git";
110 if (!prefixcmp(p
, prefix
)) {
111 if (!after_slash_or_colon
)
113 p
+= strlen(prefix
) - 1;
114 } else if (!prefixcmp(p
, ".bundle")) {
115 if (!after_slash_or_colon
)
118 } else if (*p
== '/' || *p
== ':') {
121 after_slash_or_colon
= 1;
122 } else if (after_slash_or_colon
) {
125 after_slash_or_colon
= 0;
129 return xstrndup(start
, end
- start
);
132 static int is_directory(const char *path
)
136 return !stat(path
, &buf
) && S_ISDIR(buf
.st_mode
);
139 static void setup_reference(const char *repo
)
144 struct remote
*remote
;
145 struct transport
*transport
;
146 const struct ref
*extra
;
148 ref_git
= make_absolute_path(option_reference
);
150 if (is_directory(mkpath("%s/.git/objects", ref_git
)))
151 ref_git
= mkpath("%s/.git", ref_git
);
152 else if (!is_directory(mkpath("%s/objects", ref_git
)))
153 die("reference repository '%s' is not a local directory.",
156 ref_git_copy
= xstrdup(ref_git
);
158 add_to_alternates_file(ref_git_copy
);
160 remote
= remote_get(ref_git_copy
);
161 transport
= transport_get(remote
, ref_git_copy
);
162 for (extra
= transport_get_remote_refs(transport
); extra
;
164 add_extra_ref(extra
->name
, extra
->old_sha1
, 0);
166 transport_disconnect(transport
);
171 static void copy_or_link_directory(char *src
, char *dest
)
175 int src_len
, dest_len
;
180 die("failed to open %s\n", src
);
182 if (mkdir(dest
, 0777)) {
184 die("failed to create directory %s\n", dest
);
185 else if (stat(dest
, &buf
))
186 die("failed to stat %s\n", dest
);
187 else if (!S_ISDIR(buf
.st_mode
))
188 die("%s exists and is not a directory\n", dest
);
191 src_len
= strlen(src
);
193 dest_len
= strlen(dest
);
194 dest
[dest_len
] = '/';
196 while ((de
= readdir(dir
)) != NULL
) {
197 strcpy(src
+ src_len
+ 1, de
->d_name
);
198 strcpy(dest
+ dest_len
+ 1, de
->d_name
);
199 if (stat(src
, &buf
)) {
200 warning ("failed to stat %s\n", src
);
203 if (S_ISDIR(buf
.st_mode
)) {
204 if (de
->d_name
[0] != '.')
205 copy_or_link_directory(src
, dest
);
209 if (unlink(dest
) && errno
!= ENOENT
)
210 die("failed to unlink %s\n", dest
);
211 if (!option_no_hardlinks
) {
212 if (!link(src
, dest
))
215 die("failed to create link %s\n", dest
);
216 option_no_hardlinks
= 1;
218 if (copy_file(dest
, src
, 0666))
219 die("failed to copy file to %s\n", dest
);
224 static const struct ref
*clone_local(const char *src_repo
,
225 const char *dest_repo
)
227 const struct ref
*ret
;
230 struct remote
*remote
;
231 struct transport
*transport
;
234 add_to_alternates_file(src_repo
);
236 snprintf(src
, PATH_MAX
, "%s/objects", src_repo
);
237 snprintf(dest
, PATH_MAX
, "%s/objects", dest_repo
);
238 copy_or_link_directory(src
, dest
);
241 remote
= remote_get(src_repo
);
242 transport
= transport_get(remote
, src_repo
);
243 ret
= transport_get_remote_refs(transport
);
244 transport_disconnect(transport
);
248 static const char *junk_work_tree
;
249 static const char *junk_git_dir
;
252 static void remove_junk(void)
255 if (getpid() != junk_pid
)
259 strbuf_addstr(&sb
, junk_git_dir
);
260 remove_dir_recursively(&sb
, 0);
263 if (junk_work_tree
) {
264 strbuf_addstr(&sb
, junk_work_tree
);
265 remove_dir_recursively(&sb
, 0);
270 static void remove_junk_on_signal(int signo
)
273 signal(SIGINT
, SIG_DFL
);
277 static const struct ref
*locate_head(const struct ref
*refs
,
278 const struct ref
*mapped_refs
,
279 const struct ref
**remote_head_p
)
281 const struct ref
*remote_head
= NULL
;
282 const struct ref
*remote_master
= NULL
;
284 for (r
= refs
; r
; r
= r
->next
)
285 if (!strcmp(r
->name
, "HEAD"))
288 for (r
= mapped_refs
; r
; r
= r
->next
)
289 if (!strcmp(r
->name
, "refs/heads/master"))
293 *remote_head_p
= remote_head
;
295 /* If there's no HEAD value at all, never mind. */
299 /* If refs/heads/master could be right, it is. */
300 if (remote_master
&& !hashcmp(remote_master
->old_sha1
,
301 remote_head
->old_sha1
))
302 return remote_master
;
304 /* Look for another ref that points there */
305 for (r
= mapped_refs
; r
; r
= r
->next
)
306 if (r
!= remote_head
&&
307 !hashcmp(r
->old_sha1
, remote_head
->old_sha1
))
310 /* Nothing is the same */
314 static struct ref
*write_remote_refs(const struct ref
*refs
,
315 struct refspec
*refspec
, const char *reflog
)
317 struct ref
*local_refs
= NULL
;
318 struct ref
**tail
= &local_refs
;
321 get_fetch_map(refs
, refspec
, &tail
, 0);
322 get_fetch_map(refs
, tag_refspec
, &tail
, 0);
324 for (r
= local_refs
; r
; r
= r
->next
)
325 add_extra_ref(r
->peer_ref
->name
, r
->old_sha1
, 0);
327 pack_refs(PACK_REFS_ALL
);
333 int cmd_clone(int argc
, const char **argv
, const char *prefix
)
335 int use_local_hardlinks
= 1;
336 int use_separate_remote
= 1;
339 const char *repo_name
, *repo
, *work_tree
, *git_dir
;
341 const struct ref
*refs
, *head_points_at
, *remote_head
, *mapped_refs
;
342 char branch_top
[256], key
[256], value
[256];
343 struct strbuf reflog_msg
;
345 struct refspec refspec
;
349 argc
= parse_options(argc
, argv
, builtin_clone_options
,
350 builtin_clone_usage
, 0);
353 die("You must specify a repository to clone.");
355 if (option_no_hardlinks
)
356 use_local_hardlinks
= 0;
360 die("--bare and --origin %s options are incompatible.",
362 option_no_checkout
= 1;
363 use_separate_remote
= 0;
367 option_origin
= "origin";
371 path
= get_repo_path(repo_name
, &is_bundle
);
374 else if (!strchr(repo_name
, ':'))
375 repo
= xstrdup(make_absolute_path(repo_name
));
380 dir
= xstrdup(argv
[1]);
382 dir
= guess_dir_name(repo_name
, is_bundle
);
384 if (!stat(dir
, &buf
))
385 die("destination directory '%s' already exists.", dir
);
387 strbuf_init(&reflog_msg
, 0);
388 strbuf_addf(&reflog_msg
, "clone: from %s", repo
);
393 work_tree
= getenv("GIT_WORK_TREE");
394 if (work_tree
&& !stat(work_tree
, &buf
))
395 die("working tree '%s' already exists.", work_tree
);
398 if (option_bare
|| work_tree
)
399 git_dir
= xstrdup(dir
);
402 git_dir
= xstrdup(mkpath("%s/.git", dir
));
406 junk_work_tree
= work_tree
;
407 if (safe_create_leading_directories_const(work_tree
) < 0)
408 die("could not create leading directories of '%s'",
410 if (mkdir(work_tree
, 0755))
411 die("could not create work tree dir '%s'.", work_tree
);
412 set_git_work_tree(work_tree
);
414 junk_git_dir
= git_dir
;
416 signal(SIGINT
, remove_junk_on_signal
);
418 setenv(CONFIG_ENVIRONMENT
, xstrdup(mkpath("%s/config", git_dir
)), 1);
420 if (safe_create_leading_directories_const(git_dir
) < 0)
421 die("could not create leading directories of '%s'", git_dir
);
422 set_git_dir(make_absolute_path(git_dir
));
424 fprintf(stderr
, "Initialize %s\n", git_dir
);
425 init_db(option_template
, option_quiet
? INIT_DB_QUIET
: 0);
428 * At this point, the config exists, so we do not need the
429 * environment variable. We actually need to unset it, too, to
430 * re-enable parsing of the global configs.
432 unsetenv(CONFIG_ENVIRONMENT
);
434 if (option_reference
)
435 setup_reference(git_dir
);
437 git_config(git_default_config
, NULL
);
440 strcpy(branch_top
, "refs/heads/");
442 git_config_set("core.bare", "true");
444 snprintf(branch_top
, sizeof(branch_top
),
445 "refs/remotes/%s/", option_origin
);
447 /* Configure the remote */
448 snprintf(key
, sizeof(key
), "remote.%s.url", option_origin
);
449 git_config_set(key
, repo
);
451 snprintf(key
, sizeof(key
), "remote.%s.fetch", option_origin
);
452 snprintf(value
, sizeof(value
),
453 "+refs/heads/*:%s*", branch_top
);
454 git_config_set_multivar(key
, value
, "^$", 0);
459 refspec
.src
= "refs/heads/";
460 refspec
.dst
= branch_top
;
462 if (path
&& !is_bundle
)
463 refs
= clone_local(path
, git_dir
);
465 struct remote
*remote
= remote_get(argv
[0]);
466 struct transport
*transport
=
467 transport_get(remote
, remote
->url
[0]);
469 if (!transport
->get_refs_list
|| !transport
->fetch
)
470 die("Don't know how to clone %s", transport
->url
);
472 transport_set_option(transport
, TRANS_OPT_KEEP
, "yes");
475 transport_set_option(transport
, TRANS_OPT_DEPTH
,
479 transport
->verbose
= -1;
481 refs
= transport_get_remote_refs(transport
);
482 transport_fetch_refs(transport
, refs
);
487 mapped_refs
= write_remote_refs(refs
, &refspec
, reflog_msg
.buf
);
489 head_points_at
= locate_head(refs
, mapped_refs
, &remote_head
);
491 if (head_points_at
) {
492 /* Local default branch link */
493 create_symref("HEAD", head_points_at
->name
, NULL
);
496 struct strbuf head_ref
;
497 const char *head
= head_points_at
->name
;
499 if (!prefixcmp(head
, "refs/heads/"))
502 /* Set up the initial local branch */
504 /* Local branch initial value */
505 update_ref(reflog_msg
.buf
, "HEAD",
506 head_points_at
->old_sha1
,
507 NULL
, 0, DIE_ON_ERR
);
509 strbuf_init(&head_ref
, 0);
510 strbuf_addstr(&head_ref
, branch_top
);
511 strbuf_addstr(&head_ref
, "HEAD");
513 /* Remote branch link */
514 create_symref(head_ref
.buf
,
515 head_points_at
->peer_ref
->name
,
518 snprintf(key
, sizeof(key
), "branch.%s.remote", head
);
519 git_config_set(key
, option_origin
);
520 snprintf(key
, sizeof(key
), "branch.%s.merge", head
);
521 git_config_set(key
, head_points_at
->name
);
523 } else if (remote_head
) {
524 /* Source had detached HEAD pointing somewhere. */
526 update_ref(reflog_msg
.buf
, "HEAD",
527 remote_head
->old_sha1
,
528 NULL
, REF_NODEREF
, DIE_ON_ERR
);
530 /* Nothing to checkout out */
531 if (!option_no_checkout
)
532 warning("remote HEAD refers to nonexistent ref, "
533 "unable to checkout.\n");
534 option_no_checkout
= 1;
537 if (!option_no_checkout
) {
538 struct lock_file
*lock_file
= xcalloc(1, sizeof(struct lock_file
));
539 struct unpack_trees_options opts
;
544 /* We need to be in the new work tree for the checkout */
547 fd
= hold_locked_index(lock_file
, 1);
549 memset(&opts
, 0, sizeof opts
);
552 opts
.fn
= oneway_merge
;
553 opts
.verbose_update
= !option_quiet
;
554 opts
.src_index
= &the_index
;
555 opts
.dst_index
= &the_index
;
557 tree
= parse_tree_indirect(remote_head
->old_sha1
);
559 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
560 unpack_trees(1, &t
, &opts
);
562 if (write_cache(fd
, active_cache
, active_nr
) ||
563 commit_locked_index(lock_file
))
564 die("unable to write new index file");
567 strbuf_release(&reflog_msg
);