blob: caf3025031d83dc860b22c7798dd5f40b6b89ed2 [file] [log] [blame]
Daniel Barkalow8434c2f2008-04-27 13:39:30 -04001/*
2 * Builtin "git clone"
3 *
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
7 *
8 * Clone a repository into a different directory that does not yet exist.
9 */
10
11#include "cache.h"
12#include "parse-options.h"
13#include "fetch-pack.h"
14#include "refs.h"
15#include "tree.h"
16#include "tree-walk.h"
17#include "unpack-trees.h"
18#include "transport.h"
19#include "strbuf.h"
20#include "dir.h"
Johan Herland3e8aded2008-06-15 16:06:16 +020021#include "pack-refs.h"
Jeff King4a16d072009-01-22 01:02:35 -050022#include "sigchain.h"
Junio C Hamanoa9f2c132009-03-03 22:29:55 -080023#include "branch.h"
Jay Soffian8ef51732009-02-25 03:32:13 -050024#include "remote.h"
Jeff Kingdfa7a6c2009-03-03 00:37:51 -050025#include "run-command.h"
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040026
27/*
28 * Overall FIXMEs:
29 * - respect DB_ENVIRONMENT for .git/objects.
30 *
31 * Implementation notes:
32 * - dropping use-separate-remote and no-separate-remote compatibility
33 *
34 */
35static const char * const builtin_clone_usage[] = {
Stephan Beyer1b1dd232008-07-13 15:36:15 +020036 "git clone [options] [--] <repo> [<dir>]",
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040037 NULL
38};
39
Johannes Schindelinbc699af2008-08-02 21:38:56 +020040static int option_quiet, option_no_checkout, option_bare, option_mirror;
Johan Herlande7fed182009-08-20 01:07:43 +020041static int option_local, option_no_hardlinks, option_shared, option_recursive;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040042static char *option_template, *option_reference, *option_depth;
43static char *option_origin = NULL;
Jeff King7a4ee282009-08-26 15:05:08 -040044static char *option_branch = NULL;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040045static char *option_upload_pack = "git-upload-pack";
Miklos Vajna21188b12008-10-09 01:40:32 +020046static int option_verbose;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040047
48static struct option builtin_clone_options[] = {
49 OPT__QUIET(&option_quiet),
Miklos Vajna21188b12008-10-09 01:40:32 +020050 OPT__VERBOSE(&option_verbose),
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040051 OPT_BOOLEAN('n', "no-checkout", &option_no_checkout,
52 "don't create a checkout"),
53 OPT_BOOLEAN(0, "bare", &option_bare, "create a bare repository"),
Junio C Hamanoebc9d422009-10-30 15:15:36 -070054 { OPTION_BOOLEAN, 0, "naked", &option_bare, NULL,
55 "create a bare repository",
56 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
Johannes Schindelinbc699af2008-08-02 21:38:56 +020057 OPT_BOOLEAN(0, "mirror", &option_mirror,
58 "create a mirror repository (implies bare)"),
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040059 OPT_BOOLEAN('l', "local", &option_local,
60 "to clone from a local repository"),
61 OPT_BOOLEAN(0, "no-hardlinks", &option_no_hardlinks,
62 "don't use local hardlinks, always copy"),
63 OPT_BOOLEAN('s', "shared", &option_shared,
64 "setup as shared repository"),
Johan Herlande7fed182009-08-20 01:07:43 +020065 OPT_BOOLEAN(0, "recursive", &option_recursive,
Junio C Hamanoebc9d422009-10-30 15:15:36 -070066 "initialize submodules in the clone"),
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040067 OPT_STRING(0, "template", &option_template, "path",
68 "path the template repository"),
69 OPT_STRING(0, "reference", &option_reference, "repo",
70 "reference repository"),
71 OPT_STRING('o', "origin", &option_origin, "branch",
Fabrizio Chiarello02ed2452008-09-19 14:07:26 +020072 "use <branch> instead of 'origin' to track upstream"),
Jeff King7a4ee282009-08-26 15:05:08 -040073 OPT_STRING('b', "branch", &option_branch, "branch",
74 "checkout <branch> instead of the remote's HEAD"),
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040075 OPT_STRING('u', "upload-pack", &option_upload_pack, "path",
76 "path to git-upload-pack on the remote"),
77 OPT_STRING(0, "depth", &option_depth, "depth",
78 "create a shallow clone of that depth"),
79
80 OPT_END()
81};
82
Johan Herlande7fed182009-08-20 01:07:43 +020083static const char *argv_submodule[] = {
84 "submodule", "update", "--init", "--recursive", NULL
85};
86
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040087static char *get_repo_path(const char *repo, int *is_bundle)
88{
89 static char *suffix[] = { "/.git", ".git", "" };
90 static char *bundle_suffix[] = { ".bundle", "" };
91 struct stat st;
92 int i;
93
94 for (i = 0; i < ARRAY_SIZE(suffix); i++) {
95 const char *path;
96 path = mkpath("%s%s", repo, suffix[i]);
Junio C Hamano90b4a712008-09-09 01:27:07 -070097 if (is_directory(path)) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -040098 *is_bundle = 0;
Daniel Barkalow1b9a9462008-06-05 23:15:19 -040099 return xstrdup(make_nonrelative_path(path));
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400100 }
101 }
102
103 for (i = 0; i < ARRAY_SIZE(bundle_suffix); i++) {
104 const char *path;
105 path = mkpath("%s%s", repo, bundle_suffix[i]);
106 if (!stat(path, &st) && S_ISREG(st.st_mode)) {
107 *is_bundle = 1;
Daniel Barkalow1b9a9462008-06-05 23:15:19 -0400108 return xstrdup(make_nonrelative_path(path));
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400109 }
110 }
111
112 return NULL;
113}
114
Johannes Schindelin6612f872008-08-01 16:01:36 +0200115static char *guess_dir_name(const char *repo, int is_bundle, int is_bare)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400116{
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200117 const char *end = repo + strlen(repo), *start;
Alex Riesen8a94bc72009-05-13 18:32:06 +0200118 char *dir;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400119
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200120 /*
Alex Riesen8a94bc72009-05-13 18:32:06 +0200121 * Strip trailing spaces, slashes and /.git
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200122 */
Alex Riesen8a94bc72009-05-13 18:32:06 +0200123 while (repo < end && (is_dir_sep(end[-1]) || isspace(end[-1])))
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200124 end--;
125 if (end - repo > 5 && is_dir_sep(end[-5]) &&
126 !strncmp(end - 4, ".git", 4)) {
127 end -= 5;
128 while (repo < end && is_dir_sep(end[-1]))
129 end--;
130 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400131
Johannes Sixtb8c5db32008-07-19 11:32:45 +0200132 /*
133 * Find last component, but be prepared that repo could have
134 * the form "remote.example.com:foo.git", i.e. no slash
135 * in the directory part.
136 */
137 start = end;
138 while (repo < start && !is_dir_sep(start[-1]) && start[-1] != ':')
139 start--;
140
141 /*
142 * Strip .{bundle,git}.
143 */
144 if (is_bundle) {
145 if (end - start > 7 && !strncmp(end - 7, ".bundle", 7))
146 end -= 7;
147 } else {
148 if (end - start > 4 && !strncmp(end - 4, ".git", 4))
149 end -= 4;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400150 }
151
Johannes Schindelin6612f872008-08-01 16:01:36 +0200152 if (is_bare) {
Miklos Vajna32716a22008-11-21 01:44:59 +0100153 struct strbuf result = STRBUF_INIT;
154 strbuf_addf(&result, "%.*s.git", (int)(end - start), start);
Linus Torvalds2af202b2009-06-18 10:28:43 -0700155 dir = strbuf_detach(&result, NULL);
Alex Riesen8a94bc72009-05-13 18:32:06 +0200156 } else
157 dir = xstrndup(start, end - start);
158 /*
159 * Replace sequences of 'control' characters and whitespace
160 * with one ascii space, remove leading and trailing spaces.
161 */
162 if (*dir) {
163 char *out = dir;
164 int prev_space = 1 /* strip leading whitespace */;
165 for (end = dir; *end; ++end) {
166 char ch = *end;
167 if ((unsigned char)ch < '\x20')
168 ch = '\x20';
169 if (isspace(ch)) {
170 if (prev_space)
171 continue;
172 prev_space = 1;
173 } else
174 prev_space = 0;
175 *out++ = ch;
176 }
177 *out = '\0';
178 if (out > dir && prev_space)
179 out[-1] = '\0';
Johannes Schindelin6612f872008-08-01 16:01:36 +0200180 }
Alex Riesen8a94bc72009-05-13 18:32:06 +0200181 return dir;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400182}
183
Clemens Buchacher44a68fd2008-09-03 20:55:55 +0200184static void strip_trailing_slashes(char *dir)
185{
186 char *end = dir + strlen(dir);
187
188 while (dir < end - 1 && is_dir_sep(end[-1]))
189 end--;
190 *end = '\0';
191}
192
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400193static void setup_reference(const char *repo)
194{
195 const char *ref_git;
196 char *ref_git_copy;
197
198 struct remote *remote;
199 struct transport *transport;
200 const struct ref *extra;
201
202 ref_git = make_absolute_path(option_reference);
203
204 if (is_directory(mkpath("%s/.git/objects", ref_git)))
205 ref_git = mkpath("%s/.git", ref_git);
206 else if (!is_directory(mkpath("%s/objects", ref_git)))
207 die("reference repository '%s' is not a local directory.",
208 option_reference);
209
210 ref_git_copy = xstrdup(ref_git);
211
212 add_to_alternates_file(ref_git_copy);
213
214 remote = remote_get(ref_git_copy);
215 transport = transport_get(remote, ref_git_copy);
216 for (extra = transport_get_remote_refs(transport); extra;
217 extra = extra->next)
218 add_extra_ref(extra->name, extra->old_sha1, 0);
219
220 transport_disconnect(transport);
221
222 free(ref_git_copy);
223}
224
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100225static void copy_or_link_directory(struct strbuf *src, struct strbuf *dest)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400226{
227 struct dirent *de;
228 struct stat buf;
229 int src_len, dest_len;
230 DIR *dir;
231
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100232 dir = opendir(src->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400233 if (!dir)
Thomas Rast0721c312009-06-27 17:58:47 +0200234 die_errno("failed to open '%s'", src->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400235
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100236 if (mkdir(dest->buf, 0777)) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400237 if (errno != EEXIST)
Thomas Rast0721c312009-06-27 17:58:47 +0200238 die_errno("failed to create directory '%s'", dest->buf);
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100239 else if (stat(dest->buf, &buf))
Thomas Rast0721c312009-06-27 17:58:47 +0200240 die_errno("failed to stat '%s'", dest->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400241 else if (!S_ISDIR(buf.st_mode))
Alexander Potashevd7530702009-01-04 21:38:41 +0300242 die("%s exists and is not a directory", dest->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400243 }
244
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100245 strbuf_addch(src, '/');
246 src_len = src->len;
247 strbuf_addch(dest, '/');
248 dest_len = dest->len;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400249
250 while ((de = readdir(dir)) != NULL) {
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100251 strbuf_setlen(src, src_len);
252 strbuf_addstr(src, de->d_name);
253 strbuf_setlen(dest, dest_len);
254 strbuf_addstr(dest, de->d_name);
255 if (stat(src->buf, &buf)) {
256 warning ("failed to stat %s\n", src->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400257 continue;
258 }
259 if (S_ISDIR(buf.st_mode)) {
260 if (de->d_name[0] != '.')
261 copy_or_link_directory(src, dest);
262 continue;
263 }
264
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100265 if (unlink(dest->buf) && errno != ENOENT)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200266 die_errno("failed to unlink '%s'", dest->buf);
Daniel Barkalowfdabc242008-05-20 14:15:14 -0400267 if (!option_no_hardlinks) {
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100268 if (!link(src->buf, dest->buf))
Daniel Barkalowfdabc242008-05-20 14:15:14 -0400269 continue;
270 if (option_local)
Thomas Rast0721c312009-06-27 17:58:47 +0200271 die_errno("failed to create link '%s'", dest->buf);
Daniel Barkalowfdabc242008-05-20 14:15:14 -0400272 option_no_hardlinks = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400273 }
Clemens Buchacherf7835a22009-09-12 11:03:48 +0200274 if (copy_file_with_time(dest->buf, src->buf, 0666))
Thomas Rast0721c312009-06-27 17:58:47 +0200275 die_errno("failed to copy file to '%s'", dest->buf);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400276 }
Brandon Casey689ef4d2008-05-17 23:00:01 -0500277 closedir(dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400278}
279
280static const struct ref *clone_local(const char *src_repo,
281 const char *dest_repo)
282{
283 const struct ref *ret;
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100284 struct strbuf src = STRBUF_INIT;
285 struct strbuf dest = STRBUF_INIT;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400286 struct remote *remote;
287 struct transport *transport;
288
289 if (option_shared)
290 add_to_alternates_file(src_repo);
291 else {
Miklos Vajnab9e125e2008-11-21 01:45:00 +0100292 strbuf_addf(&src, "%s/objects", src_repo);
293 strbuf_addf(&dest, "%s/objects", dest_repo);
294 copy_or_link_directory(&src, &dest);
295 strbuf_release(&src);
296 strbuf_release(&dest);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400297 }
298
299 remote = remote_get(src_repo);
300 transport = transport_get(remote, src_repo);
301 ret = transport_get_remote_refs(transport);
302 transport_disconnect(transport);
303 return ret;
304}
305
306static const char *junk_work_tree;
307static const char *junk_git_dir;
Ali Gholami Rudie161acd2009-04-01 12:34:44 +0430308static pid_t junk_pid;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400309
310static void remove_junk(void)
311{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500312 struct strbuf sb = STRBUF_INIT;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400313 if (getpid() != junk_pid)
314 return;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400315 if (junk_git_dir) {
316 strbuf_addstr(&sb, junk_git_dir);
317 remove_dir_recursively(&sb, 0);
318 strbuf_reset(&sb);
319 }
320 if (junk_work_tree) {
321 strbuf_addstr(&sb, junk_work_tree);
322 remove_dir_recursively(&sb, 0);
323 strbuf_reset(&sb);
324 }
325}
326
327static void remove_junk_on_signal(int signo)
328{
329 remove_junk();
Jeff King4a16d072009-01-22 01:02:35 -0500330 sigchain_pop(signo);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400331 raise(signo);
332}
333
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400334static struct ref *wanted_peer_refs(const struct ref *refs,
335 struct refspec *refspec)
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400336{
337 struct ref *local_refs = NULL;
338 struct ref **tail = &local_refs;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400339
340 get_fetch_map(refs, refspec, &tail, 0);
Johannes Schindelin468386a2008-08-08 04:29:35 +0200341 if (!option_mirror)
342 get_fetch_map(refs, tag_refspec, &tail, 0);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400343
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400344 return local_refs;
345}
346
347static void write_remote_refs(const struct ref *local_refs)
348{
349 const struct ref *r;
350
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400351 for (r = local_refs; r; r = r->next)
Johan Herland3e8aded2008-06-15 16:06:16 +0200352 add_extra_ref(r->peer_ref->name, r->old_sha1, 0);
353
354 pack_refs(PACK_REFS_ALL);
355 clear_extra_refs();
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400356}
357
358int cmd_clone(int argc, const char **argv, const char *prefix)
359{
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400360 int is_bundle = 0;
361 struct stat buf;
362 const char *repo_name, *repo, *work_tree, *git_dir;
363 char *path, *dir;
Alexander Potashev55892d22009-01-11 15:19:12 +0300364 int dest_exists;
Jeff King7a4ee282009-08-26 15:05:08 -0400365 const struct ref *refs, *remote_head, *mapped_refs;
366 const struct ref *remote_head_points_at;
367 const struct ref *our_head_points_at;
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100368 struct strbuf key = STRBUF_INIT, value = STRBUF_INIT;
369 struct strbuf branch_top = STRBUF_INIT, reflog_msg = STRBUF_INIT;
Shawn O. Pearce1db4a752008-07-08 04:46:06 +0000370 struct transport *transport = NULL;
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200371 char *src_ref_prefix = "refs/heads/";
Jeff Kingdfa7a6c2009-03-03 00:37:51 -0500372 int err = 0;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400373
Daniel Barkalow689f0392009-03-05 23:56:16 -0500374 struct refspec *refspec;
375 const char *fetch_pattern;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400376
377 junk_pid = getpid();
378
Stephen Boyd37782922009-05-23 11:53:12 -0700379 argc = parse_options(argc, argv, prefix, builtin_clone_options,
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400380 builtin_clone_usage, 0);
381
Jonathan Niederd52dc4b2009-10-29 03:10:30 -0500382 if (argc > 2)
383 usage_msg_opt("Too many arguments.",
384 builtin_clone_usage, builtin_clone_options);
385
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400386 if (argc == 0)
Jonathan Niederd52dc4b2009-10-29 03:10:30 -0500387 usage_msg_opt("You must specify a repository to clone.",
388 builtin_clone_usage, builtin_clone_options);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400389
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200390 if (option_mirror)
391 option_bare = 1;
392
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400393 if (option_bare) {
394 if (option_origin)
395 die("--bare and --origin %s options are incompatible.",
396 option_origin);
397 option_no_checkout = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400398 }
399
400 if (!option_origin)
401 option_origin = "origin";
402
403 repo_name = argv[0];
404
405 path = get_repo_path(repo_name, &is_bundle);
406 if (path)
Johan Herland86521ac2008-09-01 21:07:33 +0200407 repo = xstrdup(make_nonrelative_path(repo_name));
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400408 else if (!strchr(repo_name, ':'))
409 repo = xstrdup(make_absolute_path(repo_name));
410 else
411 repo = repo_name;
412
413 if (argc == 2)
414 dir = xstrdup(argv[1]);
415 else
Johannes Schindelin6612f872008-08-01 16:01:36 +0200416 dir = guess_dir_name(repo_name, is_bundle, option_bare);
Clemens Buchacher44a68fd2008-09-03 20:55:55 +0200417 strip_trailing_slashes(dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400418
Alexander Potashev55892d22009-01-11 15:19:12 +0300419 dest_exists = !stat(dir, &buf);
420 if (dest_exists && !is_empty_dir(dir))
421 die("destination path '%s' already exists and is not "
422 "an empty directory.", dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400423
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400424 strbuf_addf(&reflog_msg, "clone: from %s", repo);
425
426 if (option_bare)
427 work_tree = NULL;
428 else {
429 work_tree = getenv("GIT_WORK_TREE");
430 if (work_tree && !stat(work_tree, &buf))
431 die("working tree '%s' already exists.", work_tree);
432 }
433
434 if (option_bare || work_tree)
435 git_dir = xstrdup(dir);
436 else {
437 work_tree = dir;
438 git_dir = xstrdup(mkpath("%s/.git", dir));
439 }
440
441 if (!option_bare) {
442 junk_work_tree = work_tree;
Jeff King8e21d632008-06-25 01:41:34 -0400443 if (safe_create_leading_directories_const(work_tree) < 0)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200444 die_errno("could not create leading directories of '%s'",
445 work_tree);
Alexander Potashev55892d22009-01-11 15:19:12 +0300446 if (!dest_exists && mkdir(work_tree, 0755))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200447 die_errno("could not create work tree dir '%s'.",
448 work_tree);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400449 set_git_work_tree(work_tree);
450 }
451 junk_git_dir = git_dir;
452 atexit(remove_junk);
Jeff King57b235a2009-01-22 01:03:08 -0500453 sigchain_push_common(remove_junk_on_signal);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400454
Ali Gholami Rudi50b5f422009-04-01 15:52:25 +0430455 setenv(CONFIG_ENVIRONMENT, mkpath("%s/config", git_dir), 1);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400456
Jeff King8e21d632008-06-25 01:41:34 -0400457 if (safe_create_leading_directories_const(git_dir) < 0)
458 die("could not create leading directories of '%s'", git_dir);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400459 set_git_dir(make_absolute_path(git_dir));
460
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400461 init_db(option_template, option_quiet ? INIT_DB_QUIET : 0);
462
Johannes Schindelin5b8063b2008-06-27 13:55:23 +0100463 /*
464 * At this point, the config exists, so we do not need the
465 * environment variable. We actually need to unset it, too, to
466 * re-enable parsing of the global configs.
467 */
468 unsetenv(CONFIG_ENVIRONMENT);
469
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400470 if (option_reference)
471 setup_reference(git_dir);
472
Junio C Hamano9bd81e42008-05-25 14:25:02 -0700473 git_config(git_default_config, NULL);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400474
475 if (option_bare) {
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200476 if (option_mirror)
477 src_ref_prefix = "refs/";
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100478 strbuf_addstr(&branch_top, src_ref_prefix);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400479
480 git_config_set("core.bare", "true");
481 } else {
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100482 strbuf_addf(&branch_top, "refs/remotes/%s/", option_origin);
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200483 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400484
Daniel Barkalow689f0392009-03-05 23:56:16 -0500485 strbuf_addf(&value, "+%s*:%s*", src_ref_prefix, branch_top.buf);
486
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200487 if (option_mirror || !option_bare) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400488 /* Configure the remote */
Daniel Barkalow689f0392009-03-05 23:56:16 -0500489 strbuf_addf(&key, "remote.%s.fetch", option_origin);
490 git_config_set_multivar(key.buf, value.buf, "^$", 0);
491 strbuf_reset(&key);
492
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200493 if (option_mirror) {
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100494 strbuf_addf(&key, "remote.%s.mirror", option_origin);
495 git_config_set(key.buf, "true");
496 strbuf_reset(&key);
Johannes Schindelinbc699af2008-08-02 21:38:56 +0200497 }
498
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100499 strbuf_addf(&key, "remote.%s.url", option_origin);
500 git_config_set(key.buf, repo);
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100501 strbuf_reset(&key);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400502 }
503
Daniel Barkalow689f0392009-03-05 23:56:16 -0500504 fetch_pattern = value.buf;
505 refspec = parse_fetch_refspec(1, &fetch_pattern);
506
507 strbuf_reset(&value);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400508
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400509 if (path && !is_bundle) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400510 refs = clone_local(path, git_dir);
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400511 mapped_refs = wanted_peer_refs(refs, refspec);
512 } else {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400513 struct remote *remote = remote_get(argv[0]);
Shawn O. Pearce1db4a752008-07-08 04:46:06 +0000514 transport = transport_get(remote, remote->url[0]);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400515
Jeff King37b78c22008-05-27 10:28:43 -0400516 if (!transport->get_refs_list || !transport->fetch)
517 die("Don't know how to clone %s", transport->url);
518
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400519 transport_set_option(transport, TRANS_OPT_KEEP, "yes");
520
521 if (option_depth)
522 transport_set_option(transport, TRANS_OPT_DEPTH,
523 option_depth);
524
525 if (option_quiet)
526 transport->verbose = -1;
Miklos Vajna21188b12008-10-09 01:40:32 +0200527 else if (option_verbose)
528 transport->progress = 1;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400529
Steve Haslam837c8762008-07-25 18:51:51 +0100530 if (option_upload_pack)
531 transport_set_option(transport, TRANS_OPT_UPLOADPACK,
532 option_upload_pack);
533
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400534 refs = transport_get_remote_refs(transport);
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400535 if (refs) {
536 mapped_refs = wanted_peer_refs(refs, refspec);
537 transport_fetch_refs(transport, mapped_refs);
538 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400539 }
540
Sverre Rabbelier86ac7512009-01-23 01:07:32 +0100541 if (refs) {
542 clear_extra_refs();
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400543
Nicolas Pitre5bdc32d2009-09-25 23:54:42 -0400544 write_remote_refs(mapped_refs);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400545
Jay Soffian6cb4e6c2009-02-25 03:32:14 -0500546 remote_head = find_ref_by_name(refs, "HEAD");
Jeff King7a4ee282009-08-26 15:05:08 -0400547 remote_head_points_at =
548 guess_remote_head(remote_head, mapped_refs, 0);
549
550 if (option_branch) {
551 struct strbuf head = STRBUF_INIT;
552 strbuf_addstr(&head, src_ref_prefix);
553 strbuf_addstr(&head, option_branch);
554 our_head_points_at =
555 find_ref_by_name(mapped_refs, head.buf);
556 strbuf_release(&head);
557
558 if (!our_head_points_at) {
559 warning("Remote branch %s not found in "
560 "upstream %s, using HEAD instead",
561 option_branch, option_origin);
562 our_head_points_at = remote_head_points_at;
563 }
564 }
565 else
566 our_head_points_at = remote_head_points_at;
Sverre Rabbelier86ac7512009-01-23 01:07:32 +0100567 }
568 else {
569 warning("You appear to have cloned an empty repository.");
Jeff King7a4ee282009-08-26 15:05:08 -0400570 our_head_points_at = NULL;
571 remote_head_points_at = NULL;
Sverre Rabbelier86ac7512009-01-23 01:07:32 +0100572 remote_head = NULL;
573 option_no_checkout = 1;
Junio C Hamano5cd12b82009-02-11 22:42:27 -0800574 if (!option_bare)
Junio C Hamanoa9f2c132009-03-03 22:29:55 -0800575 install_branch_config(0, "master", option_origin,
Junio C Hamano5cd12b82009-02-11 22:42:27 -0800576 "refs/heads/master");
Sverre Rabbelier86ac7512009-01-23 01:07:32 +0100577 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400578
Jeff King7a4ee282009-08-26 15:05:08 -0400579 if (remote_head_points_at && !option_bare) {
580 struct strbuf head_ref = STRBUF_INIT;
581 strbuf_addstr(&head_ref, branch_top.buf);
582 strbuf_addstr(&head_ref, "HEAD");
583 create_symref(head_ref.buf,
584 remote_head_points_at->peer_ref->name,
585 reflog_msg.buf);
586 }
587
588 if (our_head_points_at) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400589 /* Local default branch link */
Jeff King7a4ee282009-08-26 15:05:08 -0400590 create_symref("HEAD", our_head_points_at->name, NULL);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400591 if (!option_bare) {
Jeff King7a4ee282009-08-26 15:05:08 -0400592 const char *head = skip_prefix(our_head_points_at->name,
593 "refs/heads/");
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400594 update_ref(reflog_msg.buf, "HEAD",
Jeff King7a4ee282009-08-26 15:05:08 -0400595 our_head_points_at->old_sha1,
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400596 NULL, 0, DIE_ON_ERR);
Junio C Hamanoa9f2c132009-03-03 22:29:55 -0800597 install_branch_config(0, head, option_origin,
Jeff King7a4ee282009-08-26 15:05:08 -0400598 our_head_points_at->name);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400599 }
600 } else if (remote_head) {
601 /* Source had detached HEAD pointing somewhere. */
Jeff King7a4ee282009-08-26 15:05:08 -0400602 if (!option_bare) {
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400603 update_ref(reflog_msg.buf, "HEAD",
604 remote_head->old_sha1,
605 NULL, REF_NODEREF, DIE_ON_ERR);
Jeff King7a4ee282009-08-26 15:05:08 -0400606 our_head_points_at = remote_head;
607 }
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400608 } else {
609 /* Nothing to checkout out */
610 if (!option_no_checkout)
611 warning("remote HEAD refers to nonexistent ref, "
612 "unable to checkout.\n");
613 option_no_checkout = 1;
614 }
615
Jeff King12d49962009-09-02 02:36:47 -0400616 if (transport) {
Shawn O. Pearce1db4a752008-07-08 04:46:06 +0000617 transport_unlock_pack(transport);
Jeff King12d49962009-09-02 02:36:47 -0400618 transport_disconnect(transport);
619 }
Shawn O. Pearce1db4a752008-07-08 04:46:06 +0000620
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400621 if (!option_no_checkout) {
622 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
623 struct unpack_trees_options opts;
624 struct tree *tree;
625 struct tree_desc t;
626 int fd;
627
628 /* We need to be in the new work tree for the checkout */
629 setup_work_tree();
630
631 fd = hold_locked_index(lock_file, 1);
632
633 memset(&opts, 0, sizeof opts);
634 opts.update = 1;
Johannes Schindelina73bc122008-05-15 10:48:25 +0100635 opts.merge = 1;
636 opts.fn = oneway_merge;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400637 opts.verbose_update = !option_quiet;
Johannes Schindelina73bc122008-05-15 10:48:25 +0100638 opts.src_index = &the_index;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400639 opts.dst_index = &the_index;
640
Jeff King7a4ee282009-08-26 15:05:08 -0400641 tree = parse_tree_indirect(our_head_points_at->old_sha1);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400642 parse_tree(tree);
643 init_tree_desc(&t, tree->buffer, tree->size);
644 unpack_trees(1, &t, &opts);
645
646 if (write_cache(fd, active_cache, active_nr) ||
647 commit_locked_index(lock_file))
648 die("unable to write new index file");
Jeff Kingdfa7a6c2009-03-03 00:37:51 -0500649
650 err |= run_hook(NULL, "post-checkout", sha1_to_hex(null_sha1),
Björn Steinbrinkd01a8e32009-10-14 00:11:09 +0200651 sha1_to_hex(our_head_points_at->old_sha1), "1",
652 NULL);
Johan Herlande7fed182009-08-20 01:07:43 +0200653
654 if (!err && option_recursive)
655 err = run_command_v_opt(argv_submodule, RUN_GIT_CMD);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400656 }
657
658 strbuf_release(&reflog_msg);
Miklos Vajnab5ff37a2008-11-21 01:45:01 +0100659 strbuf_release(&branch_top);
660 strbuf_release(&key);
661 strbuf_release(&value);
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400662 junk_pid = 0;
Jeff Kingdfa7a6c2009-03-03 00:37:51 -0500663 return err;
Daniel Barkalow8434c2f2008-04-27 13:39:30 -0400664}