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"
24 #include "run-command.h"
28 * - respect DB_ENVIRONMENT for .git/objects.
30 * Implementation notes:
31 * - dropping use-separate-remote and no-separate-remote compatibility
34 static const char * const builtin_clone_usage
[] = {
35 "git clone [options] [--] <repo> [<dir>]",
39 static int option_quiet
, option_no_checkout
, option_bare
, option_mirror
;
40 static int option_local
, option_no_hardlinks
, option_shared
;
41 static char *option_template
, *option_reference
, *option_depth
;
42 static char *option_origin
= NULL
;
43 static char *option_upload_pack
= "git-upload-pack";
44 static int option_verbose
;
46 static struct option builtin_clone_options
[] = {
47 OPT__QUIET(&option_quiet
),
48 OPT__VERBOSE(&option_verbose
),
49 OPT_BOOLEAN('n', "no-checkout", &option_no_checkout
,
50 "don't create a checkout"),
51 OPT_BOOLEAN(0, "bare", &option_bare
, "create a bare repository"),
52 OPT_BOOLEAN(0, "naked", &option_bare
, "create a bare repository"),
53 OPT_BOOLEAN(0, "mirror", &option_mirror
,
54 "create a mirror repository (implies bare)"),
55 OPT_BOOLEAN('l', "local", &option_local
,
56 "to clone from a local repository"),
57 OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks
,
58 "don't use local hardlinks, always copy"),
59 OPT_BOOLEAN('s', "shared", &option_shared
,
60 "setup as shared repository"),
61 OPT_STRING(0, "template", &option_template
, "path",
62 "path the template repository"),
63 OPT_STRING(0, "reference", &option_reference
, "repo",
64 "reference repository"),
65 OPT_STRING('o', "origin", &option_origin
, "branch",
66 "use <branch> instead of 'origin' to track upstream"),
67 OPT_STRING('u', "upload-pack", &option_upload_pack
, "path",
68 "path to git-upload-pack on the remote"),
69 OPT_STRING(0, "depth", &option_depth
, "depth",
70 "create a shallow clone of that depth"),
75 static char *get_repo_path(const char *repo
, int *is_bundle
)
77 static char *suffix
[] = { "/.git", ".git", "" };
78 static char *bundle_suffix
[] = { ".bundle", "" };
82 for (i
= 0; i
< ARRAY_SIZE(suffix
); i
++) {
84 path
= mkpath("%s%s", repo
, suffix
[i
]);
85 if (is_directory(path
)) {
87 return xstrdup(make_nonrelative_path(path
));
91 for (i
= 0; i
< ARRAY_SIZE(bundle_suffix
); i
++) {
93 path
= mkpath("%s%s", repo
, bundle_suffix
[i
]);
94 if (!stat(path
, &st
) && S_ISREG(st
.st_mode
)) {
96 return xstrdup(make_nonrelative_path(path
));
103 static char *guess_dir_name(const char *repo
, int is_bundle
, int is_bare
)
105 const char *end
= repo
+ strlen(repo
), *start
;
108 * Strip trailing slashes and /.git
110 while (repo
< end
&& is_dir_sep(end
[-1]))
112 if (end
- repo
> 5 && is_dir_sep(end
[-5]) &&
113 !strncmp(end
- 4, ".git", 4)) {
115 while (repo
< end
&& is_dir_sep(end
[-1]))
120 * Find last component, but be prepared that repo could have
121 * the form "remote.example.com:foo.git", i.e. no slash
122 * in the directory part.
125 while (repo
< start
&& !is_dir_sep(start
[-1]) && start
[-1] != ':')
129 * Strip .{bundle,git}.
132 if (end
- start
> 7 && !strncmp(end
- 7, ".bundle", 7))
135 if (end
- start
> 4 && !strncmp(end
- 4, ".git", 4))
140 struct strbuf result
= STRBUF_INIT
;
141 strbuf_addf(&result
, "%.*s.git", (int)(end
- start
), start
);
142 return strbuf_detach(&result
, 0);
145 return xstrndup(start
, end
- start
);
148 static void strip_trailing_slashes(char *dir
)
150 char *end
= dir
+ strlen(dir
);
152 while (dir
< end
- 1 && is_dir_sep(end
[-1]))
157 static void setup_reference(const char *repo
)
162 struct remote
*remote
;
163 struct transport
*transport
;
164 const struct ref
*extra
;
166 ref_git
= make_absolute_path(option_reference
);
168 if (is_directory(mkpath("%s/.git/objects", ref_git
)))
169 ref_git
= mkpath("%s/.git", ref_git
);
170 else if (!is_directory(mkpath("%s/objects", ref_git
)))
171 die("reference repository '%s' is not a local directory.",
174 ref_git_copy
= xstrdup(ref_git
);
176 add_to_alternates_file(ref_git_copy
);
178 remote
= remote_get(ref_git_copy
);
179 transport
= transport_get(remote
, ref_git_copy
);
180 for (extra
= transport_get_remote_refs(transport
); extra
;
182 add_extra_ref(extra
->name
, extra
->old_sha1
, 0);
184 transport_disconnect(transport
);
189 static void copy_or_link_directory(struct strbuf
*src
, struct strbuf
*dest
)
193 int src_len
, dest_len
;
196 dir
= opendir(src
->buf
);
198 die("failed to open %s", src
->buf
);
200 if (mkdir(dest
->buf
, 0777)) {
202 die("failed to create directory %s", dest
->buf
);
203 else if (stat(dest
->buf
, &buf
))
204 die("failed to stat %s", dest
->buf
);
205 else if (!S_ISDIR(buf
.st_mode
))
206 die("%s exists and is not a directory", dest
->buf
);
209 strbuf_addch(src
, '/');
211 strbuf_addch(dest
, '/');
212 dest_len
= dest
->len
;
214 while ((de
= readdir(dir
)) != NULL
) {
215 strbuf_setlen(src
, src_len
);
216 strbuf_addstr(src
, de
->d_name
);
217 strbuf_setlen(dest
, dest_len
);
218 strbuf_addstr(dest
, de
->d_name
);
219 if (stat(src
->buf
, &buf
)) {
220 warning ("failed to stat %s\n", src
->buf
);
223 if (S_ISDIR(buf
.st_mode
)) {
224 if (de
->d_name
[0] != '.')
225 copy_or_link_directory(src
, dest
);
229 if (unlink(dest
->buf
) && errno
!= ENOENT
)
230 die("failed to unlink %s", dest
->buf
);
231 if (!option_no_hardlinks
) {
232 if (!link(src
->buf
, dest
->buf
))
235 die("failed to create link %s", dest
->buf
);
236 option_no_hardlinks
= 1;
238 if (copy_file(dest
->buf
, src
->buf
, 0666))
239 die("failed to copy file to %s", dest
->buf
);
244 static const struct ref
*clone_local(const char *src_repo
,
245 const char *dest_repo
)
247 const struct ref
*ret
;
248 struct strbuf src
= STRBUF_INIT
;
249 struct strbuf dest
= STRBUF_INIT
;
250 struct remote
*remote
;
251 struct transport
*transport
;
254 add_to_alternates_file(src_repo
);
256 strbuf_addf(&src
, "%s/objects", src_repo
);
257 strbuf_addf(&dest
, "%s/objects", dest_repo
);
258 copy_or_link_directory(&src
, &dest
);
259 strbuf_release(&src
);
260 strbuf_release(&dest
);
263 remote
= remote_get(src_repo
);
264 transport
= transport_get(remote
, src_repo
);
265 ret
= transport_get_remote_refs(transport
);
266 transport_disconnect(transport
);
270 static const char *junk_work_tree
;
271 static const char *junk_git_dir
;
274 static void remove_junk(void)
276 struct strbuf sb
= STRBUF_INIT
;
277 if (getpid() != junk_pid
)
280 strbuf_addstr(&sb
, junk_git_dir
);
281 remove_dir_recursively(&sb
, 0);
284 if (junk_work_tree
) {
285 strbuf_addstr(&sb
, junk_work_tree
);
286 remove_dir_recursively(&sb
, 0);
291 static void remove_junk_on_signal(int signo
)
298 static struct ref
*write_remote_refs(const struct ref
*refs
,
299 struct refspec
*refspec
, const char *reflog
)
301 struct ref
*local_refs
= NULL
;
302 struct ref
**tail
= &local_refs
;
305 get_fetch_map(refs
, refspec
, &tail
, 0);
307 get_fetch_map(refs
, tag_refspec
, &tail
, 0);
309 for (r
= local_refs
; r
; r
= r
->next
)
310 add_extra_ref(r
->peer_ref
->name
, r
->old_sha1
, 0);
312 pack_refs(PACK_REFS_ALL
);
318 static void install_branch_config(const char *local
,
322 struct strbuf key
= STRBUF_INIT
;
323 strbuf_addf(&key
, "branch.%s.remote", local
);
324 git_config_set(key
.buf
, origin
);
326 strbuf_addf(&key
, "branch.%s.merge", local
);
327 git_config_set(key
.buf
, remote
);
328 strbuf_release(&key
);
331 int cmd_clone(int argc
, const char **argv
, const char *prefix
)
335 const char *repo_name
, *repo
, *work_tree
, *git_dir
;
338 const struct ref
*refs
, *head_points_at
, *remote_head
, *mapped_refs
;
339 struct strbuf key
= STRBUF_INIT
, value
= STRBUF_INIT
;
340 struct strbuf branch_top
= STRBUF_INIT
, reflog_msg
= STRBUF_INIT
;
341 struct transport
*transport
= NULL
;
342 char *src_ref_prefix
= "refs/heads/";
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.");
360 die("--bare and --origin %s options are incompatible.",
362 option_no_checkout
= 1;
366 option_origin
= "origin";
370 path
= get_repo_path(repo_name
, &is_bundle
);
372 repo
= xstrdup(make_nonrelative_path(repo_name
));
373 else if (!strchr(repo_name
, ':'))
374 repo
= xstrdup(make_absolute_path(repo_name
));
379 dir
= xstrdup(argv
[1]);
381 dir
= guess_dir_name(repo_name
, is_bundle
, option_bare
);
382 strip_trailing_slashes(dir
);
384 dest_exists
= !stat(dir
, &buf
);
385 if (dest_exists
&& !is_empty_dir(dir
))
386 die("destination path '%s' already exists and is not "
387 "an empty directory.", dir
);
389 strbuf_addf(&reflog_msg
, "clone: from %s", repo
);
394 work_tree
= getenv("GIT_WORK_TREE");
395 if (work_tree
&& !stat(work_tree
, &buf
))
396 die("working tree '%s' already exists.", work_tree
);
399 if (option_bare
|| work_tree
)
400 git_dir
= xstrdup(dir
);
403 git_dir
= xstrdup(mkpath("%s/.git", dir
));
407 junk_work_tree
= work_tree
;
408 if (safe_create_leading_directories_const(work_tree
) < 0)
409 die("could not create leading directories of '%s': %s",
410 work_tree
, strerror(errno
));
411 if (!dest_exists
&& mkdir(work_tree
, 0755))
412 die("could not create work tree dir '%s': %s.",
413 work_tree
, strerror(errno
));
414 set_git_work_tree(work_tree
);
416 junk_git_dir
= git_dir
;
418 sigchain_push_common(remove_junk_on_signal
);
420 setenv(CONFIG_ENVIRONMENT
, xstrdup(mkpath("%s/config", git_dir
)), 1);
422 if (safe_create_leading_directories_const(git_dir
) < 0)
423 die("could not create leading directories of '%s'", git_dir
);
424 set_git_dir(make_absolute_path(git_dir
));
426 init_db(option_template
, option_quiet
? INIT_DB_QUIET
: 0);
429 * At this point, the config exists, so we do not need the
430 * environment variable. We actually need to unset it, too, to
431 * re-enable parsing of the global configs.
433 unsetenv(CONFIG_ENVIRONMENT
);
435 if (option_reference
)
436 setup_reference(git_dir
);
438 git_config(git_default_config
, NULL
);
442 src_ref_prefix
= "refs/";
443 strbuf_addstr(&branch_top
, src_ref_prefix
);
445 git_config_set("core.bare", "true");
447 strbuf_addf(&branch_top
, "refs/remotes/%s/", option_origin
);
450 if (option_mirror
|| !option_bare
) {
451 /* Configure the remote */
453 strbuf_addf(&key
, "remote.%s.mirror", option_origin
);
454 git_config_set(key
.buf
, "true");
458 strbuf_addf(&key
, "remote.%s.url", option_origin
);
459 git_config_set(key
.buf
, repo
);
462 strbuf_addf(&key
, "remote.%s.fetch", option_origin
);
463 strbuf_addf(&value
, "+%s*:%s*", src_ref_prefix
, branch_top
.buf
);
464 git_config_set_multivar(key
.buf
, value
.buf
, "^$", 0);
466 strbuf_reset(&value
);
471 refspec
.src
= src_ref_prefix
;
472 refspec
.dst
= branch_top
.buf
;
474 if (path
&& !is_bundle
)
475 refs
= clone_local(path
, git_dir
);
477 struct remote
*remote
= remote_get(argv
[0]);
478 transport
= transport_get(remote
, remote
->url
[0]);
480 if (!transport
->get_refs_list
|| !transport
->fetch
)
481 die("Don't know how to clone %s", transport
->url
);
483 transport_set_option(transport
, TRANS_OPT_KEEP
, "yes");
486 transport_set_option(transport
, TRANS_OPT_DEPTH
,
490 transport
->verbose
= -1;
491 else if (option_verbose
)
492 transport
->progress
= 1;
494 if (option_upload_pack
)
495 transport_set_option(transport
, TRANS_OPT_UPLOADPACK
,
498 refs
= transport_get_remote_refs(transport
);
500 transport_fetch_refs(transport
, refs
);
506 mapped_refs
= write_remote_refs(refs
, &refspec
, reflog_msg
.buf
);
508 remote_head
= find_ref_by_name(refs
, "HEAD");
509 head_points_at
= guess_remote_head(remote_head
, mapped_refs
, 0);
512 warning("You appear to have cloned an empty repository.");
513 head_points_at
= NULL
;
515 option_no_checkout
= 1;
517 install_branch_config("master", option_origin
,
518 "refs/heads/master");
521 if (head_points_at
) {
522 /* Local default branch link */
523 create_symref("HEAD", head_points_at
->name
, NULL
);
526 struct strbuf head_ref
= STRBUF_INIT
;
527 const char *head
= head_points_at
->name
;
529 if (!prefixcmp(head
, "refs/heads/"))
532 /* Set up the initial local branch */
534 /* Local branch initial value */
535 update_ref(reflog_msg
.buf
, "HEAD",
536 head_points_at
->old_sha1
,
537 NULL
, 0, DIE_ON_ERR
);
539 strbuf_addstr(&head_ref
, branch_top
.buf
);
540 strbuf_addstr(&head_ref
, "HEAD");
542 /* Remote branch link */
543 create_symref(head_ref
.buf
,
544 head_points_at
->peer_ref
->name
,
547 install_branch_config(head
, option_origin
,
548 head_points_at
->name
);
550 } else if (remote_head
) {
551 /* Source had detached HEAD pointing somewhere. */
553 update_ref(reflog_msg
.buf
, "HEAD",
554 remote_head
->old_sha1
,
555 NULL
, REF_NODEREF
, DIE_ON_ERR
);
557 /* Nothing to checkout out */
558 if (!option_no_checkout
)
559 warning("remote HEAD refers to nonexistent ref, "
560 "unable to checkout.\n");
561 option_no_checkout
= 1;
565 transport_unlock_pack(transport
);
567 if (!option_no_checkout
) {
568 struct lock_file
*lock_file
= xcalloc(1, sizeof(struct lock_file
));
569 struct unpack_trees_options opts
;
574 /* We need to be in the new work tree for the checkout */
577 fd
= hold_locked_index(lock_file
, 1);
579 memset(&opts
, 0, sizeof opts
);
582 opts
.fn
= oneway_merge
;
583 opts
.verbose_update
= !option_quiet
;
584 opts
.src_index
= &the_index
;
585 opts
.dst_index
= &the_index
;
587 tree
= parse_tree_indirect(remote_head
->old_sha1
);
589 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
590 unpack_trees(1, &t
, &opts
);
592 if (write_cache(fd
, active_cache
, active_nr
) ||
593 commit_locked_index(lock_file
))
594 die("unable to write new index file");
596 err
|= run_hook(NULL
, "post-checkout", sha1_to_hex(null_sha1
),
597 sha1_to_hex(remote_head
->old_sha1
), "1", NULL
);
600 strbuf_release(&reflog_msg
);
601 strbuf_release(&branch_top
);
602 strbuf_release(&key
);
603 strbuf_release(&value
);