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"
26 * - respect DB_ENVIRONMENT for .git/objects.
28 * Implementation notes:
29 * - dropping use-separate-remote and no-separate-remote compatibility
32 static const char * const builtin_clone_usage
[] = {
33 "git clone [options] [--] <repo> [<dir>]",
37 static int option_quiet
, option_no_checkout
, option_bare
, option_mirror
;
38 static int option_local
, option_no_hardlinks
, option_shared
;
39 static char *option_template
, *option_reference
, *option_depth
;
40 static char *option_origin
= NULL
;
41 static char *option_upload_pack
= "git-upload-pack";
42 static int option_verbose
;
44 static struct option builtin_clone_options
[] = {
45 OPT__QUIET(&option_quiet
),
46 OPT__VERBOSE(&option_verbose
),
47 OPT_BOOLEAN('n', "no-checkout", &option_no_checkout
,
48 "don't create a checkout"),
49 OPT_BOOLEAN(0, "bare", &option_bare
, "create a bare repository"),
50 OPT_BOOLEAN(0, "naked", &option_bare
, "create a bare repository"),
51 OPT_BOOLEAN(0, "mirror", &option_mirror
,
52 "create a mirror repository (implies bare)"),
53 OPT_BOOLEAN('l', "local", &option_local
,
54 "to clone from a local repository"),
55 OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks
,
56 "don't use local hardlinks, always copy"),
57 OPT_BOOLEAN('s', "shared", &option_shared
,
58 "setup as shared repository"),
59 OPT_STRING(0, "template", &option_template
, "path",
60 "path the template repository"),
61 OPT_STRING(0, "reference", &option_reference
, "repo",
62 "reference repository"),
63 OPT_STRING('o', "origin", &option_origin
, "branch",
64 "use <branch> instead of 'origin' to track upstream"),
65 OPT_STRING('u', "upload-pack", &option_upload_pack
, "path",
66 "path to git-upload-pack on the remote"),
67 OPT_STRING(0, "depth", &option_depth
, "depth",
68 "create a shallow clone of that depth"),
73 static char *get_repo_path(const char *repo
, int *is_bundle
)
75 static char *suffix
[] = { "/.git", ".git", "" };
76 static char *bundle_suffix
[] = { ".bundle", "" };
80 for (i
= 0; i
< ARRAY_SIZE(suffix
); i
++) {
82 path
= mkpath("%s%s", repo
, suffix
[i
]);
83 if (is_directory(path
)) {
85 return xstrdup(make_nonrelative_path(path
));
89 for (i
= 0; i
< ARRAY_SIZE(bundle_suffix
); i
++) {
91 path
= mkpath("%s%s", repo
, bundle_suffix
[i
]);
92 if (!stat(path
, &st
) && S_ISREG(st
.st_mode
)) {
94 return xstrdup(make_nonrelative_path(path
));
101 static char *guess_dir_name(const char *repo
, int is_bundle
, int is_bare
)
103 const char *end
= repo
+ strlen(repo
), *start
;
106 * Strip trailing slashes and /.git
108 while (repo
< end
&& is_dir_sep(end
[-1]))
110 if (end
- repo
> 5 && is_dir_sep(end
[-5]) &&
111 !strncmp(end
- 4, ".git", 4)) {
113 while (repo
< end
&& is_dir_sep(end
[-1]))
118 * Find last component, but be prepared that repo could have
119 * the form "remote.example.com:foo.git", i.e. no slash
120 * in the directory part.
123 while (repo
< start
&& !is_dir_sep(start
[-1]) && start
[-1] != ':')
127 * Strip .{bundle,git}.
130 if (end
- start
> 7 && !strncmp(end
- 7, ".bundle", 7))
133 if (end
- start
> 4 && !strncmp(end
- 4, ".git", 4))
138 struct strbuf result
= STRBUF_INIT
;
139 strbuf_addf(&result
, "%.*s.git", (int)(end
- start
), start
);
140 return strbuf_detach(&result
, 0);
143 return xstrndup(start
, end
- start
);
146 static void strip_trailing_slashes(char *dir
)
148 char *end
= dir
+ strlen(dir
);
150 while (dir
< end
- 1 && is_dir_sep(end
[-1]))
155 static void setup_reference(const char *repo
)
160 struct remote
*remote
;
161 struct transport
*transport
;
162 const struct ref
*extra
;
164 ref_git
= make_absolute_path(option_reference
);
166 if (is_directory(mkpath("%s/.git/objects", ref_git
)))
167 ref_git
= mkpath("%s/.git", ref_git
);
168 else if (!is_directory(mkpath("%s/objects", ref_git
)))
169 die("reference repository '%s' is not a local directory.",
172 ref_git_copy
= xstrdup(ref_git
);
174 add_to_alternates_file(ref_git_copy
);
176 remote
= remote_get(ref_git_copy
);
177 transport
= transport_get(remote
, ref_git_copy
);
178 for (extra
= transport_get_remote_refs(transport
); extra
;
180 add_extra_ref(extra
->name
, extra
->old_sha1
, 0);
182 transport_disconnect(transport
);
187 static void copy_or_link_directory(struct strbuf
*src
, struct strbuf
*dest
)
191 int src_len
, dest_len
;
194 dir
= opendir(src
->buf
);
196 die("failed to open %s", src
->buf
);
198 if (mkdir(dest
->buf
, 0777)) {
200 die("failed to create directory %s", dest
->buf
);
201 else if (stat(dest
->buf
, &buf
))
202 die("failed to stat %s", dest
->buf
);
203 else if (!S_ISDIR(buf
.st_mode
))
204 die("%s exists and is not a directory", dest
->buf
);
207 strbuf_addch(src
, '/');
209 strbuf_addch(dest
, '/');
210 dest_len
= dest
->len
;
212 while ((de
= readdir(dir
)) != NULL
) {
213 strbuf_setlen(src
, src_len
);
214 strbuf_addstr(src
, de
->d_name
);
215 strbuf_setlen(dest
, dest_len
);
216 strbuf_addstr(dest
, de
->d_name
);
217 if (stat(src
->buf
, &buf
)) {
218 warning ("failed to stat %s\n", src
->buf
);
221 if (S_ISDIR(buf
.st_mode
)) {
222 if (de
->d_name
[0] != '.')
223 copy_or_link_directory(src
, dest
);
227 if (unlink(dest
->buf
) && errno
!= ENOENT
)
228 die("failed to unlink %s", dest
->buf
);
229 if (!option_no_hardlinks
) {
230 if (!link(src
->buf
, dest
->buf
))
233 die("failed to create link %s", dest
->buf
);
234 option_no_hardlinks
= 1;
236 if (copy_file(dest
->buf
, src
->buf
, 0666))
237 die("failed to copy file to %s", dest
->buf
);
242 static const struct ref
*clone_local(const char *src_repo
,
243 const char *dest_repo
)
245 const struct ref
*ret
;
246 struct strbuf src
= STRBUF_INIT
;
247 struct strbuf dest
= STRBUF_INIT
;
248 struct remote
*remote
;
249 struct transport
*transport
;
252 add_to_alternates_file(src_repo
);
254 strbuf_addf(&src
, "%s/objects", src_repo
);
255 strbuf_addf(&dest
, "%s/objects", dest_repo
);
256 copy_or_link_directory(&src
, &dest
);
257 strbuf_release(&src
);
258 strbuf_release(&dest
);
261 remote
= remote_get(src_repo
);
262 transport
= transport_get(remote
, src_repo
);
263 ret
= transport_get_remote_refs(transport
);
264 transport_disconnect(transport
);
268 static const char *junk_work_tree
;
269 static const char *junk_git_dir
;
272 static void remove_junk(void)
274 struct strbuf sb
= STRBUF_INIT
;
275 if (getpid() != junk_pid
)
278 strbuf_addstr(&sb
, junk_git_dir
);
279 remove_dir_recursively(&sb
, 0);
282 if (junk_work_tree
) {
283 strbuf_addstr(&sb
, junk_work_tree
);
284 remove_dir_recursively(&sb
, 0);
289 static void remove_junk_on_signal(int signo
)
296 static const struct ref
*locate_head(const struct ref
*refs
,
297 const struct ref
*mapped_refs
,
298 const struct ref
**remote_head_p
)
300 const struct ref
*remote_head
= NULL
;
301 const struct ref
*remote_master
= NULL
;
303 for (r
= refs
; r
; r
= r
->next
)
304 if (!strcmp(r
->name
, "HEAD"))
307 for (r
= mapped_refs
; r
; r
= r
->next
)
308 if (!strcmp(r
->name
, "refs/heads/master"))
312 *remote_head_p
= remote_head
;
314 /* If there's no HEAD value at all, never mind. */
318 /* If refs/heads/master could be right, it is. */
319 if (remote_master
&& !hashcmp(remote_master
->old_sha1
,
320 remote_head
->old_sha1
))
321 return remote_master
;
323 /* Look for another ref that points there */
324 for (r
= mapped_refs
; r
; r
= r
->next
)
325 if (r
!= remote_head
&&
326 !hashcmp(r
->old_sha1
, remote_head
->old_sha1
))
329 /* Nothing is the same */
333 static struct ref
*write_remote_refs(const struct ref
*refs
,
334 struct refspec
*refspec
, const char *reflog
)
336 struct ref
*local_refs
= NULL
;
337 struct ref
**tail
= &local_refs
;
340 get_fetch_map(refs
, refspec
, &tail
, 0);
342 get_fetch_map(refs
, tag_refspec
, &tail
, 0);
344 for (r
= local_refs
; r
; r
= r
->next
)
345 add_extra_ref(r
->peer_ref
->name
, r
->old_sha1
, 0);
347 pack_refs(PACK_REFS_ALL
);
353 int cmd_clone(int argc
, const char **argv
, const char *prefix
)
355 int use_local_hardlinks
= 1;
356 int use_separate_remote
= 1;
359 const char *repo_name
, *repo
, *work_tree
, *git_dir
;
361 const struct ref
*refs
, *head_points_at
, *remote_head
, *mapped_refs
;
362 struct strbuf key
= STRBUF_INIT
, value
= STRBUF_INIT
;
363 struct strbuf branch_top
= STRBUF_INIT
, reflog_msg
= STRBUF_INIT
;
364 struct transport
*transport
= NULL
;
365 char *src_ref_prefix
= "refs/heads/";
367 struct refspec refspec
;
371 argc
= parse_options(argc
, argv
, builtin_clone_options
,
372 builtin_clone_usage
, 0);
375 die("You must specify a repository to clone.");
377 if (option_no_hardlinks
)
378 use_local_hardlinks
= 0;
385 die("--bare and --origin %s options are incompatible.",
387 option_no_checkout
= 1;
388 use_separate_remote
= 0;
392 option_origin
= "origin";
396 path
= get_repo_path(repo_name
, &is_bundle
);
398 repo
= xstrdup(make_nonrelative_path(repo_name
));
399 else if (!strchr(repo_name
, ':'))
400 repo
= xstrdup(make_absolute_path(repo_name
));
405 dir
= xstrdup(argv
[1]);
407 dir
= guess_dir_name(repo_name
, is_bundle
, option_bare
);
408 strip_trailing_slashes(dir
);
410 if (!stat(dir
, &buf
))
411 die("destination directory '%s' already exists.", dir
);
413 strbuf_addf(&reflog_msg
, "clone: from %s", repo
);
418 work_tree
= getenv("GIT_WORK_TREE");
419 if (work_tree
&& !stat(work_tree
, &buf
))
420 die("working tree '%s' already exists.", work_tree
);
423 if (option_bare
|| work_tree
)
424 git_dir
= xstrdup(dir
);
427 git_dir
= xstrdup(mkpath("%s/.git", dir
));
431 junk_work_tree
= work_tree
;
432 if (safe_create_leading_directories_const(work_tree
) < 0)
433 die("could not create leading directories of '%s': %s",
434 work_tree
, strerror(errno
));
435 if (mkdir(work_tree
, 0755))
436 die("could not create work tree dir '%s': %s.",
437 work_tree
, strerror(errno
));
438 set_git_work_tree(work_tree
);
440 junk_git_dir
= git_dir
;
442 sigchain_push(SIGINT
, remove_junk_on_signal
);
444 setenv(CONFIG_ENVIRONMENT
, xstrdup(mkpath("%s/config", git_dir
)), 1);
446 if (safe_create_leading_directories_const(git_dir
) < 0)
447 die("could not create leading directories of '%s'", git_dir
);
448 set_git_dir(make_absolute_path(git_dir
));
450 init_db(option_template
, option_quiet
? INIT_DB_QUIET
: 0);
453 * At this point, the config exists, so we do not need the
454 * environment variable. We actually need to unset it, too, to
455 * re-enable parsing of the global configs.
457 unsetenv(CONFIG_ENVIRONMENT
);
459 if (option_reference
)
460 setup_reference(git_dir
);
462 git_config(git_default_config
, NULL
);
466 src_ref_prefix
= "refs/";
467 strbuf_addstr(&branch_top
, src_ref_prefix
);
469 git_config_set("core.bare", "true");
471 strbuf_addf(&branch_top
, "refs/remotes/%s/", option_origin
);
474 if (option_mirror
|| !option_bare
) {
475 /* Configure the remote */
477 strbuf_addf(&key
, "remote.%s.mirror", option_origin
);
478 git_config_set(key
.buf
, "true");
482 strbuf_addf(&key
, "remote.%s.url", option_origin
);
483 git_config_set(key
.buf
, repo
);
486 strbuf_addf(&key
, "remote.%s.fetch", option_origin
);
487 strbuf_addf(&value
, "+%s*:%s*", src_ref_prefix
, branch_top
.buf
);
488 git_config_set_multivar(key
.buf
, value
.buf
, "^$", 0);
490 strbuf_reset(&value
);
495 refspec
.src
= src_ref_prefix
;
496 refspec
.dst
= branch_top
.buf
;
498 if (path
&& !is_bundle
)
499 refs
= clone_local(path
, git_dir
);
501 struct remote
*remote
= remote_get(argv
[0]);
502 transport
= transport_get(remote
, remote
->url
[0]);
504 if (!transport
->get_refs_list
|| !transport
->fetch
)
505 die("Don't know how to clone %s", transport
->url
);
507 transport_set_option(transport
, TRANS_OPT_KEEP
, "yes");
510 transport_set_option(transport
, TRANS_OPT_DEPTH
,
514 transport
->verbose
= -1;
515 else if (option_verbose
)
516 transport
->progress
= 1;
518 if (option_upload_pack
)
519 transport_set_option(transport
, TRANS_OPT_UPLOADPACK
,
522 refs
= transport_get_remote_refs(transport
);
523 transport_fetch_refs(transport
, refs
);
528 mapped_refs
= write_remote_refs(refs
, &refspec
, reflog_msg
.buf
);
530 head_points_at
= locate_head(refs
, mapped_refs
, &remote_head
);
532 if (head_points_at
) {
533 /* Local default branch link */
534 create_symref("HEAD", head_points_at
->name
, NULL
);
537 struct strbuf head_ref
= STRBUF_INIT
;
538 const char *head
= head_points_at
->name
;
540 if (!prefixcmp(head
, "refs/heads/"))
543 /* Set up the initial local branch */
545 /* Local branch initial value */
546 update_ref(reflog_msg
.buf
, "HEAD",
547 head_points_at
->old_sha1
,
548 NULL
, 0, DIE_ON_ERR
);
550 strbuf_addstr(&head_ref
, branch_top
.buf
);
551 strbuf_addstr(&head_ref
, "HEAD");
553 /* Remote branch link */
554 create_symref(head_ref
.buf
,
555 head_points_at
->peer_ref
->name
,
558 strbuf_addf(&key
, "branch.%s.remote", head
);
559 git_config_set(key
.buf
, option_origin
);
561 strbuf_addf(&key
, "branch.%s.merge", head
);
562 git_config_set(key
.buf
, head_points_at
->name
);
564 } else if (remote_head
) {
565 /* Source had detached HEAD pointing somewhere. */
567 update_ref(reflog_msg
.buf
, "HEAD",
568 remote_head
->old_sha1
,
569 NULL
, REF_NODEREF
, DIE_ON_ERR
);
571 /* Nothing to checkout out */
572 if (!option_no_checkout
)
573 warning("remote HEAD refers to nonexistent ref, "
574 "unable to checkout.\n");
575 option_no_checkout
= 1;
579 transport_unlock_pack(transport
);
581 if (!option_no_checkout
) {
582 struct lock_file
*lock_file
= xcalloc(1, sizeof(struct lock_file
));
583 struct unpack_trees_options opts
;
588 /* We need to be in the new work tree for the checkout */
591 fd
= hold_locked_index(lock_file
, 1);
593 memset(&opts
, 0, sizeof opts
);
596 opts
.fn
= oneway_merge
;
597 opts
.verbose_update
= !option_quiet
;
598 opts
.src_index
= &the_index
;
599 opts
.dst_index
= &the_index
;
601 tree
= parse_tree_indirect(remote_head
->old_sha1
);
603 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
604 unpack_trees(1, &t
, &opts
);
606 if (write_cache(fd
, active_cache
, active_nr
) ||
607 commit_locked_index(lock_file
))
608 die("unable to write new index file");
611 strbuf_release(&reflog_msg
);
612 strbuf_release(&branch_top
);
613 strbuf_release(&key
);
614 strbuf_release(&value
);