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 *end
= repo
+ strlen(repo
), *start
;
101 * Strip trailing slashes and /.git
103 while (repo
< end
&& is_dir_sep(end
[-1]))
105 if (end
- repo
> 5 && is_dir_sep(end
[-5]) &&
106 !strncmp(end
- 4, ".git", 4)) {
108 while (repo
< end
&& is_dir_sep(end
[-1]))
113 * Find last component, but be prepared that repo could have
114 * the form "remote.example.com:foo.git", i.e. no slash
115 * in the directory part.
118 while (repo
< start
&& !is_dir_sep(start
[-1]) && start
[-1] != ':')
122 * Strip .{bundle,git}.
125 if (end
- start
> 7 && !strncmp(end
- 7, ".bundle", 7))
128 if (end
- start
> 4 && !strncmp(end
- 4, ".git", 4))
132 return xstrndup(start
, end
- start
);
135 static int is_directory(const char *path
)
139 return !stat(path
, &buf
) && S_ISDIR(buf
.st_mode
);
142 static void setup_reference(const char *repo
)
147 struct remote
*remote
;
148 struct transport
*transport
;
149 const struct ref
*extra
;
151 ref_git
= make_absolute_path(option_reference
);
153 if (is_directory(mkpath("%s/.git/objects", ref_git
)))
154 ref_git
= mkpath("%s/.git", ref_git
);
155 else if (!is_directory(mkpath("%s/objects", ref_git
)))
156 die("reference repository '%s' is not a local directory.",
159 ref_git_copy
= xstrdup(ref_git
);
161 add_to_alternates_file(ref_git_copy
);
163 remote
= remote_get(ref_git_copy
);
164 transport
= transport_get(remote
, ref_git_copy
);
165 for (extra
= transport_get_remote_refs(transport
); extra
;
167 add_extra_ref(extra
->name
, extra
->old_sha1
, 0);
169 transport_disconnect(transport
);
174 static void copy_or_link_directory(char *src
, char *dest
)
178 int src_len
, dest_len
;
183 die("failed to open %s\n", src
);
185 if (mkdir(dest
, 0777)) {
187 die("failed to create directory %s\n", dest
);
188 else if (stat(dest
, &buf
))
189 die("failed to stat %s\n", dest
);
190 else if (!S_ISDIR(buf
.st_mode
))
191 die("%s exists and is not a directory\n", dest
);
194 src_len
= strlen(src
);
196 dest_len
= strlen(dest
);
197 dest
[dest_len
] = '/';
199 while ((de
= readdir(dir
)) != NULL
) {
200 strcpy(src
+ src_len
+ 1, de
->d_name
);
201 strcpy(dest
+ dest_len
+ 1, de
->d_name
);
202 if (stat(src
, &buf
)) {
203 warning ("failed to stat %s\n", src
);
206 if (S_ISDIR(buf
.st_mode
)) {
207 if (de
->d_name
[0] != '.')
208 copy_or_link_directory(src
, dest
);
212 if (unlink(dest
) && errno
!= ENOENT
)
213 die("failed to unlink %s\n", dest
);
214 if (!option_no_hardlinks
) {
215 if (!link(src
, dest
))
218 die("failed to create link %s\n", dest
);
219 option_no_hardlinks
= 1;
221 if (copy_file(dest
, src
, 0666))
222 die("failed to copy file to %s\n", dest
);
227 static const struct ref
*clone_local(const char *src_repo
,
228 const char *dest_repo
)
230 const struct ref
*ret
;
233 struct remote
*remote
;
234 struct transport
*transport
;
237 add_to_alternates_file(src_repo
);
239 snprintf(src
, PATH_MAX
, "%s/objects", src_repo
);
240 snprintf(dest
, PATH_MAX
, "%s/objects", dest_repo
);
241 copy_or_link_directory(src
, dest
);
244 remote
= remote_get(src_repo
);
245 transport
= transport_get(remote
, src_repo
);
246 ret
= transport_get_remote_refs(transport
);
247 transport_disconnect(transport
);
251 static const char *junk_work_tree
;
252 static const char *junk_git_dir
;
255 static void remove_junk(void)
258 if (getpid() != junk_pid
)
262 strbuf_addstr(&sb
, junk_git_dir
);
263 remove_dir_recursively(&sb
, 0);
266 if (junk_work_tree
) {
267 strbuf_addstr(&sb
, junk_work_tree
);
268 remove_dir_recursively(&sb
, 0);
273 static void remove_junk_on_signal(int signo
)
276 signal(SIGINT
, SIG_DFL
);
280 static const struct ref
*locate_head(const struct ref
*refs
,
281 const struct ref
*mapped_refs
,
282 const struct ref
**remote_head_p
)
284 const struct ref
*remote_head
= NULL
;
285 const struct ref
*remote_master
= NULL
;
287 for (r
= refs
; r
; r
= r
->next
)
288 if (!strcmp(r
->name
, "HEAD"))
291 for (r
= mapped_refs
; r
; r
= r
->next
)
292 if (!strcmp(r
->name
, "refs/heads/master"))
296 *remote_head_p
= remote_head
;
298 /* If there's no HEAD value at all, never mind. */
302 /* If refs/heads/master could be right, it is. */
303 if (remote_master
&& !hashcmp(remote_master
->old_sha1
,
304 remote_head
->old_sha1
))
305 return remote_master
;
307 /* Look for another ref that points there */
308 for (r
= mapped_refs
; r
; r
= r
->next
)
309 if (r
!= remote_head
&&
310 !hashcmp(r
->old_sha1
, remote_head
->old_sha1
))
313 /* Nothing is the same */
317 static struct ref
*write_remote_refs(const struct ref
*refs
,
318 struct refspec
*refspec
, const char *reflog
)
320 struct ref
*local_refs
= NULL
;
321 struct ref
**tail
= &local_refs
;
324 get_fetch_map(refs
, refspec
, &tail
, 0);
325 get_fetch_map(refs
, tag_refspec
, &tail
, 0);
327 for (r
= local_refs
; r
; r
= r
->next
)
328 add_extra_ref(r
->peer_ref
->name
, r
->old_sha1
, 0);
330 pack_refs(PACK_REFS_ALL
);
336 int cmd_clone(int argc
, const char **argv
, const char *prefix
)
338 int use_local_hardlinks
= 1;
339 int use_separate_remote
= 1;
342 const char *repo_name
, *repo
, *work_tree
, *git_dir
;
344 const struct ref
*refs
, *head_points_at
, *remote_head
, *mapped_refs
;
345 char branch_top
[256], key
[256], value
[256];
346 struct strbuf reflog_msg
;
347 struct transport
*transport
= NULL
;
349 struct refspec refspec
;
353 argc
= parse_options(argc
, argv
, builtin_clone_options
,
354 builtin_clone_usage
, 0);
357 die("You must specify a repository to clone.");
359 if (option_no_hardlinks
)
360 use_local_hardlinks
= 0;
364 die("--bare and --origin %s options are incompatible.",
366 option_no_checkout
= 1;
367 use_separate_remote
= 0;
371 option_origin
= "origin";
375 path
= get_repo_path(repo_name
, &is_bundle
);
378 else if (!strchr(repo_name
, ':'))
379 repo
= xstrdup(make_absolute_path(repo_name
));
384 dir
= xstrdup(argv
[1]);
386 dir
= guess_dir_name(repo_name
, is_bundle
);
388 if (!stat(dir
, &buf
))
389 die("destination directory '%s' already exists.", dir
);
391 strbuf_init(&reflog_msg
, 0);
392 strbuf_addf(&reflog_msg
, "clone: from %s", repo
);
397 work_tree
= getenv("GIT_WORK_TREE");
398 if (work_tree
&& !stat(work_tree
, &buf
))
399 die("working tree '%s' already exists.", work_tree
);
402 if (option_bare
|| work_tree
)
403 git_dir
= xstrdup(dir
);
406 git_dir
= xstrdup(mkpath("%s/.git", dir
));
410 junk_work_tree
= work_tree
;
411 if (safe_create_leading_directories_const(work_tree
) < 0)
412 die("could not create leading directories of '%s'",
414 if (mkdir(work_tree
, 0755))
415 die("could not create work tree dir '%s'.", work_tree
);
416 set_git_work_tree(work_tree
);
418 junk_git_dir
= git_dir
;
420 signal(SIGINT
, remove_junk_on_signal
);
422 setenv(CONFIG_ENVIRONMENT
, xstrdup(mkpath("%s/config", git_dir
)), 1);
424 if (safe_create_leading_directories_const(git_dir
) < 0)
425 die("could not create leading directories of '%s'", git_dir
);
426 set_git_dir(make_absolute_path(git_dir
));
428 init_db(option_template
, option_quiet
? INIT_DB_QUIET
: 0);
431 * At this point, the config exists, so we do not need the
432 * environment variable. We actually need to unset it, too, to
433 * re-enable parsing of the global configs.
435 unsetenv(CONFIG_ENVIRONMENT
);
437 if (option_reference
)
438 setup_reference(git_dir
);
440 git_config(git_default_config
, NULL
);
443 strcpy(branch_top
, "refs/heads/");
445 git_config_set("core.bare", "true");
447 snprintf(branch_top
, sizeof(branch_top
),
448 "refs/remotes/%s/", option_origin
);
450 /* Configure the remote */
451 snprintf(key
, sizeof(key
), "remote.%s.url", option_origin
);
452 git_config_set(key
, repo
);
454 snprintf(key
, sizeof(key
), "remote.%s.fetch", option_origin
);
455 snprintf(value
, sizeof(value
),
456 "+refs/heads/*:%s*", branch_top
);
457 git_config_set_multivar(key
, value
, "^$", 0);
462 refspec
.src
= "refs/heads/";
463 refspec
.dst
= branch_top
;
465 if (path
&& !is_bundle
)
466 refs
= clone_local(path
, git_dir
);
468 struct remote
*remote
= remote_get(argv
[0]);
469 transport
= transport_get(remote
, remote
->url
[0]);
471 if (!transport
->get_refs_list
|| !transport
->fetch
)
472 die("Don't know how to clone %s", transport
->url
);
474 transport_set_option(transport
, TRANS_OPT_KEEP
, "yes");
477 transport_set_option(transport
, TRANS_OPT_DEPTH
,
481 transport
->verbose
= -1;
483 refs
= transport_get_remote_refs(transport
);
484 transport_fetch_refs(transport
, refs
);
489 mapped_refs
= write_remote_refs(refs
, &refspec
, reflog_msg
.buf
);
491 head_points_at
= locate_head(refs
, mapped_refs
, &remote_head
);
493 if (head_points_at
) {
494 /* Local default branch link */
495 create_symref("HEAD", head_points_at
->name
, NULL
);
498 struct strbuf head_ref
;
499 const char *head
= head_points_at
->name
;
501 if (!prefixcmp(head
, "refs/heads/"))
504 /* Set up the initial local branch */
506 /* Local branch initial value */
507 update_ref(reflog_msg
.buf
, "HEAD",
508 head_points_at
->old_sha1
,
509 NULL
, 0, DIE_ON_ERR
);
511 strbuf_init(&head_ref
, 0);
512 strbuf_addstr(&head_ref
, branch_top
);
513 strbuf_addstr(&head_ref
, "HEAD");
515 /* Remote branch link */
516 create_symref(head_ref
.buf
,
517 head_points_at
->peer_ref
->name
,
520 snprintf(key
, sizeof(key
), "branch.%s.remote", head
);
521 git_config_set(key
, option_origin
);
522 snprintf(key
, sizeof(key
), "branch.%s.merge", head
);
523 git_config_set(key
, head_points_at
->name
);
525 } else if (remote_head
) {
526 /* Source had detached HEAD pointing somewhere. */
528 update_ref(reflog_msg
.buf
, "HEAD",
529 remote_head
->old_sha1
,
530 NULL
, REF_NODEREF
, DIE_ON_ERR
);
532 /* Nothing to checkout out */
533 if (!option_no_checkout
)
534 warning("remote HEAD refers to nonexistent ref, "
535 "unable to checkout.\n");
536 option_no_checkout
= 1;
540 transport_unlock_pack(transport
);
542 if (!option_no_checkout
) {
543 struct lock_file
*lock_file
= xcalloc(1, sizeof(struct lock_file
));
544 struct unpack_trees_options opts
;
549 /* We need to be in the new work tree for the checkout */
552 fd
= hold_locked_index(lock_file
, 1);
554 memset(&opts
, 0, sizeof opts
);
557 opts
.fn
= oneway_merge
;
558 opts
.verbose_update
= !option_quiet
;
559 opts
.src_index
= &the_index
;
560 opts
.dst_index
= &the_index
;
562 tree
= parse_tree_indirect(remote_head
->old_sha1
);
564 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
565 unpack_trees(1, &t
, &opts
);
567 if (write_cache(fd
, active_cache
, active_nr
) ||
568 commit_locked_index(lock_file
))
569 die("unable to write new index file");
572 strbuf_release(&reflog_msg
);