2008-04-27 19:39:30 +02:00
|
|
|
/*
|
|
|
|
* Builtin "git clone"
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>,
|
|
|
|
* 2008 Daniel Barkalow <barkalow@iabervon.org>
|
|
|
|
* Based on git-commit.sh by Junio C Hamano and Linus Torvalds
|
|
|
|
*
|
|
|
|
* Clone a repository into a different directory that does not yet exist.
|
|
|
|
*/
|
|
|
|
|
Fix sparse warnings
Fix warnings from 'make check'.
- These files don't include 'builtin.h' causing sparse to complain that
cmd_* isn't declared:
builtin/clone.c:364, builtin/fetch-pack.c:797,
builtin/fmt-merge-msg.c:34, builtin/hash-object.c:78,
builtin/merge-index.c:69, builtin/merge-recursive.c:22
builtin/merge-tree.c:341, builtin/mktag.c:156, builtin/notes.c:426
builtin/notes.c:822, builtin/pack-redundant.c:596,
builtin/pack-refs.c:10, builtin/patch-id.c:60, builtin/patch-id.c:149,
builtin/remote.c:1512, builtin/remote-ext.c:240,
builtin/remote-fd.c:53, builtin/reset.c:236, builtin/send-pack.c:384,
builtin/unpack-file.c:25, builtin/var.c:75
- These files have symbols which should be marked static since they're
only file scope:
submodule.c:12, diff.c:631, replace_object.c:92, submodule.c:13,
submodule.c:14, trace.c:78, transport.c:195, transport-helper.c:79,
unpack-trees.c:19, url.c:3, url.c:18, url.c:104, url.c:117, url.c:123,
url.c:129, url.c:136, thread-utils.c:21, thread-utils.c:48
- These files redeclare symbols to be different types:
builtin/index-pack.c:210, parse-options.c:564, parse-options.c:571,
usage.c:49, usage.c:58, usage.c:63, usage.c:72
- These files use a literal integer 0 when they really should use a NULL
pointer:
daemon.c:663, fast-import.c:2942, imap-send.c:1072, notes-merge.c:362
While we're in the area, clean up some unused #includes in builtin files
(mostly exec_cmd.h).
Signed-off-by: Stephen Boyd <bebarino@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2011-03-22 08:51:05 +01:00
|
|
|
#include "builtin.h"
|
2008-04-27 19:39:30 +02:00
|
|
|
#include "parse-options.h"
|
|
|
|
#include "fetch-pack.h"
|
|
|
|
#include "refs.h"
|
|
|
|
#include "tree.h"
|
|
|
|
#include "tree-walk.h"
|
|
|
|
#include "unpack-trees.h"
|
|
|
|
#include "transport.h"
|
|
|
|
#include "strbuf.h"
|
|
|
|
#include "dir.h"
|
2008-06-15 16:06:16 +02:00
|
|
|
#include "pack-refs.h"
|
chain kill signals for cleanup functions
If a piece of code wanted to do some cleanup before exiting
(e.g., cleaning up a lockfile or a tempfile), our usual
strategy was to install a signal handler that did something
like this:
do_cleanup(); /* actual work */
signal(signo, SIG_DFL); /* restore previous behavior */
raise(signo); /* deliver signal, killing ourselves */
For a single handler, this works fine. However, if we want
to clean up two _different_ things, we run into a problem.
The most recently installed handler will run, but when it
removes itself as a handler, it doesn't put back the first
handler.
This patch introduces sigchain, a tiny library for handling
a stack of signal handlers. You sigchain_push each handler,
and use sigchain_pop to restore whoever was before you in
the stack.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-01-22 07:02:35 +01:00
|
|
|
#include "sigchain.h"
|
2009-03-04 07:29:55 +01:00
|
|
|
#include "branch.h"
|
2009-02-25 09:32:13 +01:00
|
|
|
#include "remote.h"
|
2009-03-03 06:37:51 +01:00
|
|
|
#include "run-command.h"
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Overall FIXMEs:
|
|
|
|
* - respect DB_ENVIRONMENT for .git/objects.
|
|
|
|
*
|
|
|
|
* Implementation notes:
|
|
|
|
* - dropping use-separate-remote and no-separate-remote compatibility
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static const char * const builtin_clone_usage[] = {
|
2008-07-13 15:36:15 +02:00
|
|
|
"git clone [options] [--] <repo> [<dir>]",
|
2008-04-27 19:39:30 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2010-02-24 13:50:25 +01:00
|
|
|
static int option_no_checkout, option_bare, option_mirror;
|
2009-08-20 01:07:43 +02:00
|
|
|
static int option_local, option_no_hardlinks, option_shared, option_recursive;
|
2008-04-27 19:39:30 +02:00
|
|
|
static char *option_template, *option_reference, *option_depth;
|
|
|
|
static char *option_origin = NULL;
|
2009-08-26 21:05:08 +02:00
|
|
|
static char *option_branch = NULL;
|
2011-03-19 16:16:56 +01:00
|
|
|
static const char *real_git_dir;
|
2008-04-27 19:39:30 +02:00
|
|
|
static char *option_upload_pack = "git-upload-pack";
|
2010-02-24 13:50:25 +01:00
|
|
|
static int option_verbosity;
|
2009-12-25 18:12:06 +01:00
|
|
|
static int option_progress;
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
static struct option builtin_clone_options[] = {
|
2010-02-24 13:50:25 +01:00
|
|
|
OPT__VERBOSITY(&option_verbosity),
|
2009-12-25 18:12:06 +01:00
|
|
|
OPT_BOOLEAN(0, "progress", &option_progress,
|
|
|
|
"force progress reporting"),
|
2008-04-27 19:39:30 +02:00
|
|
|
OPT_BOOLEAN('n', "no-checkout", &option_no_checkout,
|
|
|
|
"don't create a checkout"),
|
|
|
|
OPT_BOOLEAN(0, "bare", &option_bare, "create a bare repository"),
|
2009-10-30 23:15:36 +01:00
|
|
|
{ OPTION_BOOLEAN, 0, "naked", &option_bare, NULL,
|
|
|
|
"create a bare repository",
|
|
|
|
PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
|
2008-08-02 21:38:56 +02:00
|
|
|
OPT_BOOLEAN(0, "mirror", &option_mirror,
|
|
|
|
"create a mirror repository (implies bare)"),
|
2008-04-27 19:39:30 +02:00
|
|
|
OPT_BOOLEAN('l', "local", &option_local,
|
|
|
|
"to clone from a local repository"),
|
|
|
|
OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks,
|
|
|
|
"don't use local hardlinks, always copy"),
|
|
|
|
OPT_BOOLEAN('s', "shared", &option_shared,
|
|
|
|
"setup as shared repository"),
|
2009-08-20 01:07:43 +02:00
|
|
|
OPT_BOOLEAN(0, "recursive", &option_recursive,
|
2009-10-30 23:15:36 +01:00
|
|
|
"initialize submodules in the clone"),
|
2011-02-10 23:59:31 +01:00
|
|
|
OPT_BOOLEAN(0, "recurse-submodules", &option_recursive,
|
2010-11-04 21:27:12 +01:00
|
|
|
"initialize submodules in the clone"),
|
2011-02-15 14:09:06 +01:00
|
|
|
OPT_STRING(0, "template", &option_template, "template-directory",
|
|
|
|
"directory from which templates will be used"),
|
2008-04-27 19:39:30 +02:00
|
|
|
OPT_STRING(0, "reference", &option_reference, "repo",
|
|
|
|
"reference repository"),
|
|
|
|
OPT_STRING('o', "origin", &option_origin, "branch",
|
2008-09-19 14:07:26 +02:00
|
|
|
"use <branch> instead of 'origin' to track upstream"),
|
2009-08-26 21:05:08 +02:00
|
|
|
OPT_STRING('b', "branch", &option_branch, "branch",
|
|
|
|
"checkout <branch> instead of the remote's HEAD"),
|
2008-04-27 19:39:30 +02:00
|
|
|
OPT_STRING('u', "upload-pack", &option_upload_pack, "path",
|
|
|
|
"path to git-upload-pack on the remote"),
|
|
|
|
OPT_STRING(0, "depth", &option_depth, "depth",
|
|
|
|
"create a shallow clone of that depth"),
|
2011-05-24 18:40:32 +02:00
|
|
|
OPT_STRING(0, "separate-git-dir", &real_git_dir, "gitdir",
|
2011-03-19 16:16:56 +01:00
|
|
|
"separate git dir from working tree"),
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
OPT_END()
|
|
|
|
};
|
|
|
|
|
2009-08-20 01:07:43 +02:00
|
|
|
static const char *argv_submodule[] = {
|
|
|
|
"submodule", "update", "--init", "--recursive", NULL
|
|
|
|
};
|
|
|
|
|
2008-04-27 19:39:30 +02:00
|
|
|
static char *get_repo_path(const char *repo, int *is_bundle)
|
|
|
|
{
|
|
|
|
static char *suffix[] = { "/.git", ".git", "" };
|
|
|
|
static char *bundle_suffix[] = { ".bundle", "" };
|
|
|
|
struct stat st;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(suffix); i++) {
|
|
|
|
const char *path;
|
|
|
|
path = mkpath("%s%s", repo, suffix[i]);
|
2008-09-09 10:27:07 +02:00
|
|
|
if (is_directory(path)) {
|
2008-04-27 19:39:30 +02:00
|
|
|
*is_bundle = 0;
|
2011-03-17 12:26:46 +01:00
|
|
|
return xstrdup(absolute_path(path));
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
|
|
|
|
const char *path;
|
|
|
|
path = mkpath("%s%s", repo, bundle_suffix[i]);
|
|
|
|
if (!stat(path, &st) && S_ISREG(st.st_mode)) {
|
|
|
|
*is_bundle = 1;
|
2011-03-17 12:26:46 +01:00
|
|
|
return xstrdup(absolute_path(path));
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-01 16:01:36 +02:00
|
|
|
static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
|
2008-04-27 19:39:30 +02:00
|
|
|
{
|
2008-07-19 11:32:45 +02:00
|
|
|
const char *end = repo + strlen(repo), *start;
|
2009-05-13 18:32:06 +02:00
|
|
|
char *dir;
|
2008-07-19 11:32:45 +02:00
|
|
|
|
|
|
|
/*
|
2009-05-13 18:32:06 +02:00
|
|
|
* Strip trailing spaces, slashes and /.git
|
2008-07-19 11:32:45 +02:00
|
|
|
*/
|
2009-05-13 18:32:06 +02:00
|
|
|
while (repo < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
|
2008-07-19 11:32:45 +02:00
|
|
|
end--;
|
|
|
|
if (end - repo > 5 && is_dir_sep(end[-5]) &&
|
|
|
|
!strncmp(end - 4, ".git", 4)) {
|
|
|
|
end -= 5;
|
|
|
|
while (repo < end && is_dir_sep(end[-1]))
|
|
|
|
end--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find last component, but be prepared that repo could have
|
|
|
|
* the form "remote.example.com:foo.git", i.e. no slash
|
|
|
|
* in the directory part.
|
|
|
|
*/
|
|
|
|
start = end;
|
|
|
|
while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
|
|
|
|
start--;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Strip .{bundle,git}.
|
|
|
|
*/
|
|
|
|
if (is_bundle) {
|
|
|
|
if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
|
|
|
|
end -= 7;
|
|
|
|
} else {
|
|
|
|
if (end - start > 4 && !strncmp(end - 4, ".git", 4))
|
|
|
|
end -= 4;
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
2008-08-01 16:01:36 +02:00
|
|
|
if (is_bare) {
|
2008-11-21 01:44:59 +01:00
|
|
|
struct strbuf result = STRBUF_INIT;
|
|
|
|
strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
|
2009-06-18 19:28:43 +02:00
|
|
|
dir = strbuf_detach(&result, NULL);
|
2009-05-13 18:32:06 +02:00
|
|
|
} else
|
|
|
|
dir = xstrndup(start, end - start);
|
|
|
|
/*
|
|
|
|
* Replace sequences of 'control' characters and whitespace
|
|
|
|
* with one ascii space, remove leading and trailing spaces.
|
|
|
|
*/
|
|
|
|
if (*dir) {
|
|
|
|
char *out = dir;
|
|
|
|
int prev_space = 1 /* strip leading whitespace */;
|
|
|
|
for (end = dir; *end; ++end) {
|
|
|
|
char ch = *end;
|
|
|
|
if ((unsigned char)ch < '\x20')
|
|
|
|
ch = '\x20';
|
|
|
|
if (isspace(ch)) {
|
|
|
|
if (prev_space)
|
|
|
|
continue;
|
|
|
|
prev_space = 1;
|
|
|
|
} else
|
|
|
|
prev_space = 0;
|
|
|
|
*out++ = ch;
|
|
|
|
}
|
|
|
|
*out = '\0';
|
|
|
|
if (out > dir && prev_space)
|
|
|
|
out[-1] = '\0';
|
2008-08-01 16:01:36 +02:00
|
|
|
}
|
2009-05-13 18:32:06 +02:00
|
|
|
return dir;
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
2008-09-03 20:55:55 +02:00
|
|
|
static void strip_trailing_slashes(char *dir)
|
|
|
|
{
|
|
|
|
char *end = dir + strlen(dir);
|
|
|
|
|
|
|
|
while (dir < end - 1 && is_dir_sep(end[-1]))
|
|
|
|
end--;
|
|
|
|
*end = '\0';
|
|
|
|
}
|
|
|
|
|
2008-04-27 19:39:30 +02:00
|
|
|
static void setup_reference(const char *repo)
|
|
|
|
{
|
|
|
|
const char *ref_git;
|
|
|
|
char *ref_git_copy;
|
|
|
|
|
|
|
|
struct remote *remote;
|
|
|
|
struct transport *transport;
|
|
|
|
const struct ref *extra;
|
|
|
|
|
2011-03-17 12:26:46 +01:00
|
|
|
ref_git = real_path(option_reference);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
if (is_directory(mkpath("%s/.git/objects", ref_git)))
|
|
|
|
ref_git = mkpath("%s/.git", ref_git);
|
|
|
|
else if (!is_directory(mkpath("%s/objects", ref_git)))
|
2011-02-23 00:41:26 +01:00
|
|
|
die(_("reference repository '%s' is not a local directory."),
|
2008-04-27 19:39:30 +02:00
|
|
|
option_reference);
|
|
|
|
|
|
|
|
ref_git_copy = xstrdup(ref_git);
|
|
|
|
|
|
|
|
add_to_alternates_file(ref_git_copy);
|
|
|
|
|
|
|
|
remote = remote_get(ref_git_copy);
|
|
|
|
transport = transport_get(remote, ref_git_copy);
|
|
|
|
for (extra = transport_get_remote_refs(transport); extra;
|
|
|
|
extra = extra->next)
|
|
|
|
add_extra_ref(extra->name, extra->old_sha1, 0);
|
|
|
|
|
|
|
|
transport_disconnect(transport);
|
|
|
|
|
|
|
|
free(ref_git_copy);
|
|
|
|
}
|
|
|
|
|
2008-11-21 01:45:00 +01:00
|
|
|
static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest)
|
2008-04-27 19:39:30 +02:00
|
|
|
{
|
|
|
|
struct dirent *de;
|
|
|
|
struct stat buf;
|
|
|
|
int src_len, dest_len;
|
|
|
|
DIR *dir;
|
|
|
|
|
2008-11-21 01:45:00 +01:00
|
|
|
dir = opendir(src->buf);
|
2008-04-27 19:39:30 +02:00
|
|
|
if (!dir)
|
2011-02-23 00:41:26 +01:00
|
|
|
die_errno(_("failed to open '%s'"), src->buf);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2008-11-21 01:45:00 +01:00
|
|
|
if (mkdir(dest->buf, 0777)) {
|
2008-04-27 19:39:30 +02:00
|
|
|
if (errno != EEXIST)
|
2011-02-23 00:41:26 +01:00
|
|
|
die_errno(_("failed to create directory '%s'"), dest->buf);
|
2008-11-21 01:45:00 +01:00
|
|
|
else if (stat(dest->buf, &buf))
|
2011-02-23 00:41:26 +01:00
|
|
|
die_errno(_("failed to stat '%s'"), dest->buf);
|
2008-04-27 19:39:30 +02:00
|
|
|
else if (!S_ISDIR(buf.st_mode))
|
2011-02-23 00:41:26 +01:00
|
|
|
die(_("%s exists and is not a directory"), dest->buf);
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
2008-11-21 01:45:00 +01:00
|
|
|
strbuf_addch(src, '/');
|
|
|
|
src_len = src->len;
|
|
|
|
strbuf_addch(dest, '/');
|
|
|
|
dest_len = dest->len;
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
while ((de = readdir(dir)) != NULL) {
|
2008-11-21 01:45:00 +01:00
|
|
|
strbuf_setlen(src, src_len);
|
|
|
|
strbuf_addstr(src, de->d_name);
|
|
|
|
strbuf_setlen(dest, dest_len);
|
|
|
|
strbuf_addstr(dest, de->d_name);
|
|
|
|
if (stat(src->buf, &buf)) {
|
2011-02-23 00:41:26 +01:00
|
|
|
warning (_("failed to stat %s\n"), src->buf);
|
2008-04-27 19:39:30 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (S_ISDIR(buf.st_mode)) {
|
|
|
|
if (de->d_name[0] != '.')
|
|
|
|
copy_or_link_directory(src, dest);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-11-21 01:45:00 +01:00
|
|
|
if (unlink(dest->buf) && errno != ENOENT)
|
2011-02-23 00:41:26 +01:00
|
|
|
die_errno(_("failed to unlink '%s'"), dest->buf);
|
2008-05-20 20:15:14 +02:00
|
|
|
if (!option_no_hardlinks) {
|
2008-11-21 01:45:00 +01:00
|
|
|
if (!link(src->buf, dest->buf))
|
2008-05-20 20:15:14 +02:00
|
|
|
continue;
|
|
|
|
if (option_local)
|
2011-02-23 00:41:26 +01:00
|
|
|
die_errno(_("failed to create link '%s'"), dest->buf);
|
2008-05-20 20:15:14 +02:00
|
|
|
option_no_hardlinks = 1;
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
2009-09-12 11:03:48 +02:00
|
|
|
if (copy_file_with_time(dest->buf, src->buf, 0666))
|
2011-02-23 00:41:26 +01:00
|
|
|
die_errno(_("failed to copy file to '%s'"), dest->buf);
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
2008-05-18 06:00:01 +02:00
|
|
|
closedir(dir);
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ref *clone_local(const char *src_repo,
|
|
|
|
const char *dest_repo)
|
|
|
|
{
|
|
|
|
const struct ref *ret;
|
2008-11-21 01:45:00 +01:00
|
|
|
struct strbuf src = STRBUF_INIT;
|
|
|
|
struct strbuf dest = STRBUF_INIT;
|
2008-04-27 19:39:30 +02:00
|
|
|
struct remote *remote;
|
|
|
|
struct transport *transport;
|
|
|
|
|
|
|
|
if (option_shared)
|
|
|
|
add_to_alternates_file(src_repo);
|
|
|
|
else {
|
2008-11-21 01:45:00 +01:00
|
|
|
strbuf_addf(&src, "%s/objects", src_repo);
|
|
|
|
strbuf_addf(&dest, "%s/objects", dest_repo);
|
|
|
|
copy_or_link_directory(&src, &dest);
|
|
|
|
strbuf_release(&src);
|
|
|
|
strbuf_release(&dest);
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
remote = remote_get(src_repo);
|
|
|
|
transport = transport_get(remote, src_repo);
|
|
|
|
ret = transport_get_remote_refs(transport);
|
|
|
|
transport_disconnect(transport);
|
2010-04-23 14:37:22 +02:00
|
|
|
if (0 <= option_verbosity)
|
2011-02-23 00:41:26 +01:00
|
|
|
printf(_("done.\n"));
|
2008-04-27 19:39:30 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *junk_work_tree;
|
|
|
|
static const char *junk_git_dir;
|
2009-04-01 10:04:44 +02:00
|
|
|
static pid_t junk_pid;
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
static void remove_junk(void)
|
|
|
|
{
|
2008-10-09 21:12:12 +02:00
|
|
|
struct strbuf sb = STRBUF_INIT;
|
2008-04-27 19:39:30 +02:00
|
|
|
if (getpid() != junk_pid)
|
|
|
|
return;
|
|
|
|
if (junk_git_dir) {
|
|
|
|
strbuf_addstr(&sb, junk_git_dir);
|
|
|
|
remove_dir_recursively(&sb, 0);
|
|
|
|
strbuf_reset(&sb);
|
|
|
|
}
|
|
|
|
if (junk_work_tree) {
|
|
|
|
strbuf_addstr(&sb, junk_work_tree);
|
|
|
|
remove_dir_recursively(&sb, 0);
|
|
|
|
strbuf_reset(&sb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void remove_junk_on_signal(int signo)
|
|
|
|
{
|
|
|
|
remove_junk();
|
chain kill signals for cleanup functions
If a piece of code wanted to do some cleanup before exiting
(e.g., cleaning up a lockfile or a tempfile), our usual
strategy was to install a signal handler that did something
like this:
do_cleanup(); /* actual work */
signal(signo, SIG_DFL); /* restore previous behavior */
raise(signo); /* deliver signal, killing ourselves */
For a single handler, this works fine. However, if we want
to clean up two _different_ things, we run into a problem.
The most recently installed handler will run, but when it
removes itself as a handler, it doesn't put back the first
handler.
This patch introduces sigchain, a tiny library for handling
a stack of signal handlers. You sigchain_push each handler,
and use sigchain_pop to restore whoever was before you in
the stack.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-01-22 07:02:35 +01:00
|
|
|
sigchain_pop(signo);
|
2008-04-27 19:39:30 +02:00
|
|
|
raise(signo);
|
|
|
|
}
|
|
|
|
|
2009-09-26 05:54:42 +02:00
|
|
|
static struct ref *wanted_peer_refs(const struct ref *refs,
|
|
|
|
struct refspec *refspec)
|
2008-04-27 19:39:30 +02:00
|
|
|
{
|
|
|
|
struct ref *local_refs = NULL;
|
|
|
|
struct ref **tail = &local_refs;
|
|
|
|
|
|
|
|
get_fetch_map(refs, refspec, &tail, 0);
|
2008-08-08 04:29:35 +02:00
|
|
|
if (!option_mirror)
|
|
|
|
get_fetch_map(refs, tag_refspec, &tail, 0);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2009-09-26 05:54:42 +02:00
|
|
|
return local_refs;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_remote_refs(const struct ref *local_refs)
|
|
|
|
{
|
|
|
|
const struct ref *r;
|
|
|
|
|
2008-04-27 19:39:30 +02:00
|
|
|
for (r = local_refs; r; r = r->next)
|
2008-06-15 16:06:16 +02:00
|
|
|
add_extra_ref(r->peer_ref->name, r->old_sha1, 0);
|
|
|
|
|
|
|
|
pack_refs(PACK_REFS_ALL);
|
|
|
|
clear_extra_refs();
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cmd_clone(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
2010-08-23 14:08:22 +02:00
|
|
|
int is_bundle = 0, is_local;
|
2008-04-27 19:39:30 +02:00
|
|
|
struct stat buf;
|
|
|
|
const char *repo_name, *repo, *work_tree, *git_dir;
|
|
|
|
char *path, *dir;
|
2009-01-11 13:19:12 +01:00
|
|
|
int dest_exists;
|
2009-11-18 02:42:24 +01:00
|
|
|
const struct ref *refs, *remote_head;
|
2009-08-26 21:05:08 +02:00
|
|
|
const struct ref *remote_head_points_at;
|
|
|
|
const struct ref *our_head_points_at;
|
2009-11-18 02:42:24 +01:00
|
|
|
struct ref *mapped_refs;
|
2008-11-21 01:45:01 +01:00
|
|
|
struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
|
|
|
|
struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
|
2008-07-08 06:46:06 +02:00
|
|
|
struct transport *transport = NULL;
|
2008-08-02 21:38:56 +02:00
|
|
|
char *src_ref_prefix = "refs/heads/";
|
2009-03-03 06:37:51 +01:00
|
|
|
int err = 0;
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2009-03-06 05:56:16 +01:00
|
|
|
struct refspec *refspec;
|
|
|
|
const char *fetch_pattern;
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
junk_pid = getpid();
|
|
|
|
|
2011-02-24 15:30:19 +01:00
|
|
|
packet_trace_identity("clone");
|
2009-05-23 20:53:12 +02:00
|
|
|
argc = parse_options(argc, argv, prefix, builtin_clone_options,
|
2008-04-27 19:39:30 +02:00
|
|
|
builtin_clone_usage, 0);
|
|
|
|
|
2009-10-29 09:10:30 +01:00
|
|
|
if (argc > 2)
|
2011-02-23 00:41:26 +01:00
|
|
|
usage_msg_opt(_("Too many arguments."),
|
2009-10-29 09:10:30 +01:00
|
|
|
builtin_clone_usage, builtin_clone_options);
|
|
|
|
|
2008-04-27 19:39:30 +02:00
|
|
|
if (argc == 0)
|
2011-02-23 00:41:26 +01:00
|
|
|
usage_msg_opt(_("You must specify a repository to clone."),
|
2009-10-29 09:10:30 +01:00
|
|
|
builtin_clone_usage, builtin_clone_options);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2008-08-02 21:38:56 +02:00
|
|
|
if (option_mirror)
|
|
|
|
option_bare = 1;
|
|
|
|
|
2008-04-27 19:39:30 +02:00
|
|
|
if (option_bare) {
|
|
|
|
if (option_origin)
|
2011-02-23 00:41:26 +01:00
|
|
|
die(_("--bare and --origin %s options are incompatible."),
|
2008-04-27 19:39:30 +02:00
|
|
|
option_origin);
|
|
|
|
option_no_checkout = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!option_origin)
|
|
|
|
option_origin = "origin";
|
|
|
|
|
|
|
|
repo_name = argv[0];
|
|
|
|
|
|
|
|
path = get_repo_path(repo_name, &is_bundle);
|
|
|
|
if (path)
|
2011-03-17 12:26:46 +01:00
|
|
|
repo = xstrdup(absolute_path(repo_name));
|
2008-04-27 19:39:30 +02:00
|
|
|
else if (!strchr(repo_name, ':'))
|
2011-04-10 21:34:06 +02:00
|
|
|
die(_("repository '%s' does not exist"), repo_name);
|
2008-04-27 19:39:30 +02:00
|
|
|
else
|
|
|
|
repo = repo_name;
|
2010-08-23 14:08:22 +02:00
|
|
|
is_local = path && !is_bundle;
|
|
|
|
if (is_local && option_depth)
|
2011-02-23 00:41:26 +01:00
|
|
|
warning(_("--depth is ignored in local clones; use file:// instead."));
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
dir = xstrdup(argv[1]);
|
|
|
|
else
|
2008-08-01 16:01:36 +02:00
|
|
|
dir = guess_dir_name(repo_name, is_bundle, option_bare);
|
2008-09-03 20:55:55 +02:00
|
|
|
strip_trailing_slashes(dir);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2009-01-11 13:19:12 +01:00
|
|
|
dest_exists = !stat(dir, &buf);
|
|
|
|
if (dest_exists && !is_empty_dir(dir))
|
2011-02-23 00:41:26 +01:00
|
|
|
die(_("destination path '%s' already exists and is not "
|
|
|
|
"an empty directory."), dir);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
strbuf_addf(&reflog_msg, "clone: from %s", repo);
|
|
|
|
|
|
|
|
if (option_bare)
|
|
|
|
work_tree = NULL;
|
|
|
|
else {
|
|
|
|
work_tree = getenv("GIT_WORK_TREE");
|
|
|
|
if (work_tree && !stat(work_tree, &buf))
|
2011-02-23 00:41:26 +01:00
|
|
|
die(_("working tree '%s' already exists."), work_tree);
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (option_bare || work_tree)
|
|
|
|
git_dir = xstrdup(dir);
|
|
|
|
else {
|
|
|
|
work_tree = dir;
|
|
|
|
git_dir = xstrdup(mkpath("%s/.git", dir));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!option_bare) {
|
|
|
|
junk_work_tree = work_tree;
|
2008-06-25 07:41:34 +02:00
|
|
|
if (safe_create_leading_directories_const(work_tree) < 0)
|
2011-02-23 00:41:26 +01:00
|
|
|
die_errno(_("could not create leading directories of '%s'"),
|
2009-06-27 17:58:46 +02:00
|
|
|
work_tree);
|
2009-01-11 13:19:12 +01:00
|
|
|
if (!dest_exists && mkdir(work_tree, 0755))
|
2011-02-23 00:41:26 +01:00
|
|
|
die_errno(_("could not create work tree dir '%s'."),
|
2009-06-27 17:58:46 +02:00
|
|
|
work_tree);
|
2008-04-27 19:39:30 +02:00
|
|
|
set_git_work_tree(work_tree);
|
|
|
|
}
|
|
|
|
junk_git_dir = git_dir;
|
|
|
|
atexit(remove_junk);
|
2009-01-22 07:03:08 +01:00
|
|
|
sigchain_push_common(remove_junk_on_signal);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2009-04-01 13:22:25 +02:00
|
|
|
setenv(CONFIG_ENVIRONMENT, mkpath("%s/config", git_dir), 1);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2008-06-25 07:41:34 +02:00
|
|
|
if (safe_create_leading_directories_const(git_dir) < 0)
|
2011-02-23 00:41:26 +01:00
|
|
|
die(_("could not create leading directories of '%s'"), git_dir);
|
2011-03-19 16:16:56 +01:00
|
|
|
|
|
|
|
set_git_dir_init(git_dir, real_git_dir, 0);
|
|
|
|
if (real_git_dir)
|
|
|
|
git_dir = real_git_dir;
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2011-02-23 00:41:27 +01:00
|
|
|
if (0 <= option_verbosity) {
|
|
|
|
if (option_bare)
|
2011-02-23 00:41:28 +01:00
|
|
|
printf(_("Cloning into bare repository %s...\n"), dir);
|
2011-02-23 00:41:27 +01:00
|
|
|
else
|
2011-02-23 00:41:28 +01:00
|
|
|
printf(_("Cloning into %s...\n"), dir);
|
2011-02-23 00:41:27 +01:00
|
|
|
}
|
2010-04-23 14:37:22 +02:00
|
|
|
init_db(option_template, INIT_DB_QUIET);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2008-06-27 14:55:23 +02:00
|
|
|
/*
|
|
|
|
* At this point, the config exists, so we do not need the
|
|
|
|
* environment variable. We actually need to unset it, too, to
|
|
|
|
* re-enable parsing of the global configs.
|
|
|
|
*/
|
|
|
|
unsetenv(CONFIG_ENVIRONMENT);
|
|
|
|
|
2008-05-25 23:25:02 +02:00
|
|
|
git_config(git_default_config, NULL);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
if (option_bare) {
|
2008-08-02 21:38:56 +02:00
|
|
|
if (option_mirror)
|
|
|
|
src_ref_prefix = "refs/";
|
2008-11-21 01:45:01 +01:00
|
|
|
strbuf_addstr(&branch_top, src_ref_prefix);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
|
|
|
git_config_set("core.bare", "true");
|
|
|
|
} else {
|
2008-11-21 01:45:01 +01:00
|
|
|
strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
|
2008-08-02 21:38:56 +02:00
|
|
|
}
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2009-03-06 05:56:16 +01:00
|
|
|
strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
|
|
|
|
|
2008-08-02 21:38:56 +02:00
|
|
|
if (option_mirror || !option_bare) {
|
2008-04-27 19:39:30 +02:00
|
|
|
/* Configure the remote */
|
2009-03-06 05:56:16 +01:00
|
|
|
strbuf_addf(&key, "remote.%s.fetch", option_origin);
|
|
|
|
git_config_set_multivar(key.buf, value.buf, "^$", 0);
|
|
|
|
strbuf_reset(&key);
|
|
|
|
|
2008-08-02 21:38:56 +02:00
|
|
|
if (option_mirror) {
|
2008-11-21 01:45:01 +01:00
|
|
|
strbuf_addf(&key, "remote.%s.mirror", option_origin);
|
|
|
|
git_config_set(key.buf, "true");
|
|
|
|
strbuf_reset(&key);
|
2008-08-02 21:38:56 +02:00
|
|
|
}
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
2010-03-29 18:48:24 +02:00
|
|
|
strbuf_addf(&key, "remote.%s.url", option_origin);
|
|
|
|
git_config_set(key.buf, repo);
|
|
|
|
strbuf_reset(&key);
|
|
|
|
|
2010-03-29 18:48:23 +02:00
|
|
|
if (option_reference)
|
|
|
|
setup_reference(git_dir);
|
|
|
|
|
2009-03-06 05:56:16 +01:00
|
|
|
fetch_pattern = value.buf;
|
|
|
|
refspec = parse_fetch_refspec(1, &fetch_pattern);
|
|
|
|
|
|
|
|
strbuf_reset(&value);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2010-08-23 14:08:22 +02:00
|
|
|
if (is_local) {
|
2008-04-27 19:39:30 +02:00
|
|
|
refs = clone_local(path, git_dir);
|
2009-09-26 05:54:42 +02:00
|
|
|
mapped_refs = wanted_peer_refs(refs, refspec);
|
|
|
|
} else {
|
2010-03-29 18:48:23 +02:00
|
|
|
struct remote *remote = remote_get(option_origin);
|
2008-07-08 06:46:06 +02:00
|
|
|
transport = transport_get(remote, remote->url[0]);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2008-05-27 16:28:43 +02:00
|
|
|
if (!transport->get_refs_list || !transport->fetch)
|
2011-02-23 00:41:26 +01:00
|
|
|
die(_("Don't know how to clone %s"), transport->url);
|
2008-05-27 16:28:43 +02:00
|
|
|
|
2008-04-27 19:39:30 +02:00
|
|
|
transport_set_option(transport, TRANS_OPT_KEEP, "yes");
|
|
|
|
|
|
|
|
if (option_depth)
|
|
|
|
transport_set_option(transport, TRANS_OPT_DEPTH,
|
|
|
|
option_depth);
|
|
|
|
|
2010-02-24 13:50:26 +01:00
|
|
|
transport_set_verbosity(transport, option_verbosity, option_progress);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2008-07-25 19:51:51 +02:00
|
|
|
if (option_upload_pack)
|
|
|
|
transport_set_option(transport, TRANS_OPT_UPLOADPACK,
|
|
|
|
option_upload_pack);
|
|
|
|
|
2008-04-27 19:39:30 +02:00
|
|
|
refs = transport_get_remote_refs(transport);
|
2009-09-26 05:54:42 +02:00
|
|
|
if (refs) {
|
|
|
|
mapped_refs = wanted_peer_refs(refs, refspec);
|
|
|
|
transport_fetch_refs(transport, mapped_refs);
|
|
|
|
}
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
2009-01-23 01:07:32 +01:00
|
|
|
if (refs) {
|
|
|
|
clear_extra_refs();
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2009-09-26 05:54:42 +02:00
|
|
|
write_remote_refs(mapped_refs);
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2009-02-25 09:32:14 +01:00
|
|
|
remote_head = find_ref_by_name(refs, "HEAD");
|
2009-08-26 21:05:08 +02:00
|
|
|
remote_head_points_at =
|
|
|
|
guess_remote_head(remote_head, mapped_refs, 0);
|
|
|
|
|
|
|
|
if (option_branch) {
|
|
|
|
struct strbuf head = STRBUF_INIT;
|
|
|
|
strbuf_addstr(&head, src_ref_prefix);
|
|
|
|
strbuf_addstr(&head, option_branch);
|
|
|
|
our_head_points_at =
|
|
|
|
find_ref_by_name(mapped_refs, head.buf);
|
|
|
|
strbuf_release(&head);
|
|
|
|
|
|
|
|
if (!our_head_points_at) {
|
2011-02-23 00:41:26 +01:00
|
|
|
warning(_("Remote branch %s not found in "
|
|
|
|
"upstream %s, using HEAD instead"),
|
2009-08-26 21:05:08 +02:00
|
|
|
option_branch, option_origin);
|
|
|
|
our_head_points_at = remote_head_points_at;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
our_head_points_at = remote_head_points_at;
|
2009-01-23 01:07:32 +01:00
|
|
|
}
|
|
|
|
else {
|
2011-02-23 00:41:26 +01:00
|
|
|
warning(_("You appear to have cloned an empty repository."));
|
2009-08-26 21:05:08 +02:00
|
|
|
our_head_points_at = NULL;
|
|
|
|
remote_head_points_at = NULL;
|
2009-01-23 01:07:32 +01:00
|
|
|
remote_head = NULL;
|
|
|
|
option_no_checkout = 1;
|
2009-02-12 07:42:27 +01:00
|
|
|
if (!option_bare)
|
2009-03-04 07:29:55 +01:00
|
|
|
install_branch_config(0, "master", option_origin,
|
2009-02-12 07:42:27 +01:00
|
|
|
"refs/heads/master");
|
2009-01-23 01:07:32 +01:00
|
|
|
}
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2009-08-26 21:05:08 +02:00
|
|
|
if (remote_head_points_at && !option_bare) {
|
|
|
|
struct strbuf head_ref = STRBUF_INIT;
|
|
|
|
strbuf_addstr(&head_ref, branch_top.buf);
|
|
|
|
strbuf_addstr(&head_ref, "HEAD");
|
|
|
|
create_symref(head_ref.buf,
|
|
|
|
remote_head_points_at->peer_ref->name,
|
|
|
|
reflog_msg.buf);
|
|
|
|
}
|
2008-04-27 19:39:30 +02:00
|
|
|
|
2009-08-26 21:05:08 +02:00
|
|
|
if (our_head_points_at) {
|
|
|
|
/* Local default branch link */
|
|
|
|
create_symref("HEAD", our_head_points_at->name, NULL);
|
2008-04-27 19:39:30 +02:00
|
|
|
if (!option_bare) {
|
2009-08-26 21:05:08 +02:00
|
|
|
const char *head = skip_prefix(our_head_points_at->name,
|
|
|
|
"refs/heads/");
|
2008-04-27 19:39:30 +02:00
|
|
|
update_ref(reflog_msg.buf, "HEAD",
|
2009-08-26 21:05:08 +02:00
|
|
|
our_head_points_at->old_sha1,
|
2008-04-27 19:39:30 +02:00
|
|
|
NULL, 0, DIE_ON_ERR);
|
2009-03-04 07:29:55 +01:00
|
|
|
install_branch_config(0, head, option_origin,
|
2009-08-26 21:05:08 +02:00
|
|
|
our_head_points_at->name);
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
} else if (remote_head) {
|
|
|
|
/* Source had detached HEAD pointing somewhere. */
|
2009-08-26 21:05:08 +02:00
|
|
|
if (!option_bare) {
|
2008-04-27 19:39:30 +02:00
|
|
|
update_ref(reflog_msg.buf, "HEAD",
|
|
|
|
remote_head->old_sha1,
|
|
|
|
NULL, REF_NODEREF, DIE_ON_ERR);
|
2009-08-26 21:05:08 +02:00
|
|
|
our_head_points_at = remote_head;
|
|
|
|
}
|
2008-04-27 19:39:30 +02:00
|
|
|
} else {
|
|
|
|
/* Nothing to checkout out */
|
|
|
|
if (!option_no_checkout)
|
2011-02-23 00:41:26 +01:00
|
|
|
warning(_("remote HEAD refers to nonexistent ref, "
|
|
|
|
"unable to checkout.\n"));
|
2008-04-27 19:39:30 +02:00
|
|
|
option_no_checkout = 1;
|
|
|
|
}
|
|
|
|
|
2009-09-02 08:36:47 +02:00
|
|
|
if (transport) {
|
2008-07-08 06:46:06 +02:00
|
|
|
transport_unlock_pack(transport);
|
2009-09-02 08:36:47 +02:00
|
|
|
transport_disconnect(transport);
|
|
|
|
}
|
2008-07-08 06:46:06 +02:00
|
|
|
|
2008-04-27 19:39:30 +02:00
|
|
|
if (!option_no_checkout) {
|
|
|
|
struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
|
|
|
|
struct unpack_trees_options opts;
|
|
|
|
struct tree *tree;
|
|
|
|
struct tree_desc t;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
/* We need to be in the new work tree for the checkout */
|
|
|
|
setup_work_tree();
|
|
|
|
|
|
|
|
fd = hold_locked_index(lock_file, 1);
|
|
|
|
|
|
|
|
memset(&opts, 0, sizeof opts);
|
|
|
|
opts.update = 1;
|
2008-05-15 11:48:25 +02:00
|
|
|
opts.merge = 1;
|
|
|
|
opts.fn = oneway_merge;
|
2010-02-24 13:50:25 +01:00
|
|
|
opts.verbose_update = (option_verbosity > 0);
|
2008-05-15 11:48:25 +02:00
|
|
|
opts.src_index = &the_index;
|
2008-04-27 19:39:30 +02:00
|
|
|
opts.dst_index = &the_index;
|
|
|
|
|
2009-08-26 21:05:08 +02:00
|
|
|
tree = parse_tree_indirect(our_head_points_at->old_sha1);
|
2008-04-27 19:39:30 +02:00
|
|
|
parse_tree(tree);
|
|
|
|
init_tree_desc(&t, tree->buffer, tree->size);
|
|
|
|
unpack_trees(1, &t, &opts);
|
|
|
|
|
|
|
|
if (write_cache(fd, active_cache, active_nr) ||
|
|
|
|
commit_locked_index(lock_file))
|
2011-02-23 00:41:26 +01:00
|
|
|
die(_("unable to write new index file"));
|
2009-03-03 06:37:51 +01:00
|
|
|
|
|
|
|
err |= run_hook(NULL, "post-checkout", sha1_to_hex(null_sha1),
|
2009-10-14 00:11:09 +02:00
|
|
|
sha1_to_hex(our_head_points_at->old_sha1), "1",
|
|
|
|
NULL);
|
2009-08-20 01:07:43 +02:00
|
|
|
|
|
|
|
if (!err && option_recursive)
|
|
|
|
err = run_command_v_opt(argv_submodule, RUN_GIT_CMD);
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
strbuf_release(&reflog_msg);
|
2008-11-21 01:45:01 +01:00
|
|
|
strbuf_release(&branch_top);
|
|
|
|
strbuf_release(&key);
|
|
|
|
strbuf_release(&value);
|
2008-04-27 19:39:30 +02:00
|
|
|
junk_pid = 0;
|
2009-03-03 06:37:51 +01:00
|
|
|
return err;
|
2008-04-27 19:39:30 +02:00
|
|
|
}
|