]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/init-db.c
Merge branch 'js/ghwf-setup-msbuild-update'
[thirdparty/git.git] / builtin / init-db.c
CommitLineData
8bc9a0c7
LT
1/*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 */
e83c5163 6#include "cache.h"
b2141fc1 7#include "config.h"
fb58c8d5 8#include "refs.h"
c3c8835f 9#include "builtin.h"
d807c4a0 10#include "exec-cmd.h"
596f91ee 11#include "parse-options.h"
42264bc8 12#include "worktree.h"
e83c5163 13
d3af621b 14#ifndef DEFAULT_GIT_TEMPLATE_DIR
d52fd42a 15#define DEFAULT_GIT_TEMPLATE_DIR "/usr/share/git-core/templates"
d3af621b
JH
16#endif
17
c869753e
SP
18#ifdef NO_TRUSTABLE_FILEMODE
19#define TEST_FILEMODE 0
20#else
21#define TEST_FILEMODE 1
22#endif
23
3c9331a1 24#define GIT_DEFAULT_HASH_ENVIRONMENT "GIT_DEFAULT_HASH"
25
0a2c7eea
DM
26static int init_is_bare_repository = 0;
27static int init_shared_repository = -1;
90b45187 28static const char *init_db_template_dir;
0a2c7eea 29
fa0fccae 30static void copy_templates_1(struct strbuf *path, struct strbuf *template_path,
8d5afef0
JH
31 DIR *dir)
32{
9c28390b 33 size_t path_baselen = path->len;
fa0fccae 34 size_t template_baselen = template_path->len;
8d5afef0
JH
35 struct dirent *de;
36
37 /* Note: if ".git/hooks" file exists in the repository being
38 * re-initialized, /etc/core-git/templates/hooks/update would
f18d244a 39 * cause "git init" to fail here. I think this is sane but
8d5afef0
JH
40 * it means that the set of templates we ship by default, along
41 * with the way the namespace under .git/ is organized, should
42 * be really carefully chosen.
43 */
9c28390b 44 safe_create_dir(path->buf, 1);
8d5afef0
JH
45 while ((de = readdir(dir)) != NULL) {
46 struct stat st_git, st_template;
8d5afef0
JH
47 int exists = 0;
48
9c28390b 49 strbuf_setlen(path, path_baselen);
fa0fccae 50 strbuf_setlen(template_path, template_baselen);
9c28390b 51
8d5afef0
JH
52 if (de->d_name[0] == '.')
53 continue;
9c28390b 54 strbuf_addstr(path, de->d_name);
fa0fccae 55 strbuf_addstr(template_path, de->d_name);
9c28390b 56 if (lstat(path->buf, &st_git)) {
8d5afef0 57 if (errno != ENOENT)
9c28390b 58 die_errno(_("cannot stat '%s'"), path->buf);
8d5afef0
JH
59 }
60 else
61 exists = 1;
62
fa0fccae
BW
63 if (lstat(template_path->buf, &st_template))
64 die_errno(_("cannot stat template '%s'"), template_path->buf);
8d5afef0
JH
65
66 if (S_ISDIR(st_template.st_mode)) {
fa0fccae 67 DIR *subdir = opendir(template_path->buf);
8d5afef0 68 if (!subdir)
fa0fccae 69 die_errno(_("cannot opendir '%s'"), template_path->buf);
9c28390b 70 strbuf_addch(path, '/');
fa0fccae
BW
71 strbuf_addch(template_path, '/');
72 copy_templates_1(path, template_path, subdir);
8d5afef0
JH
73 closedir(subdir);
74 }
75 else if (exists)
76 continue;
77 else if (S_ISLNK(st_template.st_mode)) {
9c28390b 78 struct strbuf lnk = STRBUF_INIT;
765b496d
JK
79 if (strbuf_readlink(&lnk, template_path->buf,
80 st_template.st_size) < 0)
fa0fccae 81 die_errno(_("cannot readlink '%s'"), template_path->buf);
9c28390b
JK
82 if (symlink(lnk.buf, path->buf))
83 die_errno(_("cannot symlink '%s' '%s'"),
84 lnk.buf, path->buf);
85 strbuf_release(&lnk);
8d5afef0
JH
86 }
87 else if (S_ISREG(st_template.st_mode)) {
fa0fccae 88 if (copy_file(path->buf, template_path->buf, st_template.st_mode))
9c28390b 89 die_errno(_("cannot copy '%s' to '%s'"),
fa0fccae 90 template_path->buf, path->buf);
8d5afef0
JH
91 }
92 else
fa0fccae 93 error(_("ignoring template %s"), template_path->buf);
8d5afef0
JH
94 }
95}
96
f225aeb2 97static void copy_templates(const char *template_dir)
8d5afef0 98{
9c28390b
JK
99 struct strbuf path = STRBUF_INIT;
100 struct strbuf template_path = STRBUF_INIT;
101 size_t template_len;
e8805af1 102 struct repository_format template_format = REPOSITORY_FORMAT_INIT;
94ce1672 103 struct strbuf err = STRBUF_INIT;
8d5afef0 104 DIR *dir;
59362e56 105 char *to_free = NULL;
8d5afef0 106
a47d1813 107 if (!template_dir)
d4ebc36c 108 template_dir = getenv(TEMPLATE_DIR_ENVIRONMENT);
90b45187
SD
109 if (!template_dir)
110 template_dir = init_db_template_dir;
2de9de5e 111 if (!template_dir)
59362e56
JH
112 template_dir = to_free = system_path(DEFAULT_GIT_TEMPLATE_DIR);
113 if (!template_dir[0]) {
114 free(to_free);
172035f0 115 return;
59362e56 116 }
9c28390b
JK
117
118 strbuf_addstr(&template_path, template_dir);
119 strbuf_complete(&template_path, '/');
120 template_len = template_path.len;
121
122 dir = opendir(template_path.buf);
d3af621b 123 if (!dir) {
44f560fc 124 warning(_("templates not found in %s"), template_dir);
59362e56 125 goto free_return;
d3af621b
JH
126 }
127
4f629539 128 /* Make sure that template is from the correct vintage */
9c28390b 129 strbuf_addstr(&template_path, "config");
94ce1672 130 read_repository_format(&template_format, template_path.buf);
9c28390b 131 strbuf_setlen(&template_path, template_len);
4f629539 132
94ce1672
JK
133 /*
134 * No mention of version at all is OK, but anything else should be
135 * verified.
136 */
137 if (template_format.version >= 0 &&
138 verify_repository_format(&template_format, &err) < 0) {
139 warning(_("not copying templates from '%s': %s"),
140 template_dir, err.buf);
141 strbuf_release(&err);
59362e56 142 goto close_free_return;
4f629539
JH
143 }
144
fe9aa0b2 145 strbuf_addstr(&path, get_git_common_dir());
9c28390b
JK
146 strbuf_complete(&path, '/');
147 copy_templates_1(&path, &template_path, dir);
59362e56 148close_free_return:
8d5afef0 149 closedir(dir);
59362e56
JH
150free_return:
151 free(to_free);
9c28390b
JK
152 strbuf_release(&path);
153 strbuf_release(&template_path);
e8805af1 154 clear_repository_format(&template_format);
8d5afef0
JH
155}
156
90b45187
SD
157static int git_init_db_config(const char *k, const char *v, void *cb)
158{
90b45187
SD
159 if (!strcmp(k, "init.templatedir"))
160 return git_config_pathname(&init_db_template_dir, k, v);
161
28785339
JS
162 if (starts_with(k, "core."))
163 return platform_core_config(k, v, cb);
164
90b45187
SD
165 return 0;
166}
167
84ccad8d
JK
168/*
169 * If the git_dir is not directly inside the working tree, then git will not
170 * find it by default, and we need to set the worktree explicitly.
171 */
172static int needs_work_tree_config(const char *git_dir, const char *work_tree)
173{
174 if (!strcmp(work_tree, "/") && !strcmp(git_dir, "/.git"))
175 return 0;
176 if (skip_prefix(git_dir, work_tree, &git_dir) &&
177 !strcmp(git_dir, "/.git"))
178 return 0;
179 return 1;
180}
181
47ac9703 182void initialize_repository_version(int hash_algo, int reinit)
efa7ae36 183{
184 char repo_version_string[10];
185 int repo_version = GIT_REPO_VERSION;
186
efa7ae36 187 if (hash_algo != GIT_HASH_SHA1)
188 repo_version = GIT_REPO_VERSION_READ;
189
190 /* This forces creation of new config file */
191 xsnprintf(repo_version_string, sizeof(repo_version_string),
192 "%d", repo_version);
193 git_config_set("core.repositoryformatversion", repo_version_string);
194
195 if (hash_algo != GIT_HASH_SHA1)
196 git_config_set("extensions.objectformat",
197 hash_algos[hash_algo].name);
47ac9703 198 else if (reinit)
199 git_config_set_gently("extensions.objectformat", NULL);
efa7ae36 200}
201
6311cfaf 202static int create_default_files(const char *template_path,
8b8f7189 203 const char *original_git_dir,
32ba12da 204 const char *initial_branch,
8b8f7189 205 const struct repository_format *fmt)
cad88fdf 206{
4f629539 207 struct stat st1;
9c28390b
JK
208 struct strbuf buf = STRBUF_INIT;
209 char *path;
5cc8f372 210 char junk[2];
ef0a89a6 211 int reinit;
c869753e 212 int filemode;
6fb5acfd 213 struct strbuf err = STRBUF_INIT;
cad88fdf 214
90b45187 215 /* Just look for `init.templatedir` */
28785339 216 init_db_template_dir = NULL; /* re-set in case it was set before */
90b45187
SD
217 git_config(git_init_db_config, NULL);
218
7c0a842b
JK
219 /*
220 * First copy the templates -- we might have the default
4f629539
JH
221 * config file there, in which case we would want to read
222 * from it after installing.
4543926b
JK
223 *
224 * Before reading that config, we also need to clear out any cached
225 * values (since we've just potentially changed what's available on
226 * disk).
4f629539 227 */
f225aeb2 228 copy_templates(template_path);
4543926b
JK
229 git_config_clear();
230 reset_shared_repository();
ef90d6d4 231 git_config(git_default_config, NULL);
5a688fe4 232
7c0a842b
JK
233 /*
234 * We must make sure command-line options continue to override any
235 * values we might have just re-read from the config.
236 */
237 is_bare_repository_cfg = init_is_bare_repository;
0a2c7eea 238 if (init_shared_repository != -1)
7875acb6 239 set_shared_repository(init_shared_repository);
4f629539 240
138086a7
JH
241 /*
242 * We would have created the above under user's umask -- under
243 * shared-repository settings, we would need to fix them up.
244 */
7875acb6 245 if (get_shared_repository()) {
f225aeb2 246 adjust_shared_perm(get_git_dir());
138086a7
JH
247 }
248
6fb5acfd
DT
249 /*
250 * We need to create a "refs" dir in any case so that older
251 * versions of git can tell that this is a repository.
252 */
253 safe_create_dir(git_path("refs"), 1);
254 adjust_shared_perm(git_path("refs"));
255
256 if (refs_init_db(&err))
257 die("failed to set up refs db: %s", err.buf);
258
cad88fdf 259 /*
32ba12da
JS
260 * Point the HEAD symref to the initial branch with if HEAD does
261 * not yet exist.
cad88fdf 262 */
9c28390b 263 path = git_path_buf(&buf, "HEAD");
5cc8f372
JS
264 reinit = (!access(path, R_OK)
265 || readlink(path, junk, sizeof(junk)-1) != -1);
ef0a89a6 266 if (!reinit) {
32ba12da
JS
267 char *ref;
268
269 if (!initial_branch)
8747ebb7 270 initial_branch = git_default_branch_name();
32ba12da
JS
271
272 ref = xstrfmt("refs/heads/%s", initial_branch);
273 if (check_refname_format(ref, 0) < 0)
274 die(_("invalid initial branch name: '%s'"),
275 initial_branch);
276
277 if (create_symref("HEAD", ref, NULL) < 0)
cad88fdf 278 exit(1);
32ba12da 279 free(ref);
cad88fdf 280 }
e24317b4 281
47ac9703 282 initialize_repository_version(fmt->hash_algo, 0);
4f629539 283
4f629539 284 /* Check filemode trustability */
9c28390b 285 path = git_path_buf(&buf, "config");
c869753e
SP
286 filemode = TEST_FILEMODE;
287 if (TEST_FILEMODE && !lstat(path, &st1)) {
4f629539 288 struct stat st2;
c869753e 289 filemode = (!chmod(path, st1.st_mode ^ S_IXUSR) &&
4f629539 290 !lstat(path, &st2) &&
1f32ecff
MH
291 st1.st_mode != st2.st_mode &&
292 !chmod(path, st1.st_mode));
c7bf68d6
TB
293 if (filemode && !reinit && (st1.st_mode & S_IXUSR))
294 filemode = 0;
e24317b4 295 }
3d180648 296 git_config_set("core.filemode", filemode ? "true" : "false");
ef0a89a6 297
e90fdc39 298 if (is_bare_repository())
3d180648 299 git_config_set("core.bare", "true");
7d1864ce 300 else {
e90fdc39 301 const char *work_tree = get_git_work_tree();
3d180648 302 git_config_set("core.bare", "false");
196055c2 303 /* allow template config file to override the default */
341fb286 304 if (log_all_ref_updates == LOG_REFS_UNSET)
3d180648 305 git_config_set("core.logallrefupdates", "true");
6311cfaf 306 if (needs_work_tree_config(original_git_dir, work_tree))
3d180648 307 git_config_set("core.worktree", work_tree);
7d1864ce 308 }
75d24499 309
75d24499 310 if (!reinit) {
2455406a 311 /* Check if symlink is supported in the work tree */
9c28390b 312 path = git_path_buf(&buf, "tXXXXXX");
75d24499
JH
313 if (!close(xmkstemp(path)) &&
314 !unlink(path) &&
315 !symlink("testing", path) &&
316 !lstat(path, &st1) &&
317 S_ISLNK(st1.st_mode))
318 unlink(path); /* good */
319 else
3d180648 320 git_config_set("core.symlinks", "false");
2455406a
DP
321
322 /* Check if the filesystem is case-insensitive */
9c28390b 323 path = git_path_buf(&buf, "CoNfIg");
2455406a 324 if (!access(path, F_OK))
3d180648 325 git_config_set("core.ignorecase", "true");
fdf72966 326 probe_utf8_pathname_composition();
75d24499
JH
327 }
328
9c28390b 329 strbuf_release(&buf);
ef0a89a6 330 return reinit;
cad88fdf
LT
331}
332
9173912b
JN
333static void create_object_directory(void)
334{
9c28390b
JK
335 struct strbuf path = STRBUF_INIT;
336 size_t baselen;
337
338 strbuf_addstr(&path, get_object_directory());
339 baselen = path.len;
340
341 safe_create_dir(path.buf, 1);
9173912b 342
9c28390b
JK
343 strbuf_setlen(&path, baselen);
344 strbuf_addstr(&path, "/pack");
345 safe_create_dir(path.buf, 1);
9173912b 346
9c28390b
JK
347 strbuf_setlen(&path, baselen);
348 strbuf_addstr(&path, "/info");
349 safe_create_dir(path.buf, 1);
9173912b 350
9c28390b 351 strbuf_release(&path);
9173912b
JN
352}
353
822d9406 354static void separate_git_dir(const char *git_dir, const char *git_link)
b57fb80a
NTND
355{
356 struct stat st;
b57fb80a
NTND
357
358 if (!stat(git_link, &st)) {
359 const char *src;
360
361 if (S_ISREG(st.st_mode))
13d6ec91 362 src = read_gitfile(git_link);
b57fb80a
NTND
363 else if (S_ISDIR(st.st_mode))
364 src = git_link;
365 else
97f261b1 366 die(_("unable to handle file type %d"), (int)st.st_mode);
b57fb80a
NTND
367
368 if (rename(src, git_dir))
2c050e01 369 die_errno(_("unable to move %s to %s"), src, git_dir);
42264bc8 370 repair_worktrees(NULL, NULL);
b57fb80a
NTND
371 }
372
1f76a10b 373 write_file(git_link, "gitdir: %s", git_dir);
b57fb80a
NTND
374}
375
8b8f7189 376static void validate_hash_algorithm(struct repository_format *repo_fmt, int hash)
377{
3c9331a1 378 const char *env = getenv(GIT_DEFAULT_HASH_ENVIRONMENT);
8b8f7189 379 /*
380 * If we already have an initialized repo, don't allow the user to
381 * specify a different algorithm, as that could cause corruption.
382 * Otherwise, if the user has specified one on the command line, use it.
383 */
384 if (repo_fmt->version >= 0 && hash != GIT_HASH_UNKNOWN && hash != repo_fmt->hash_algo)
385 die(_("attempt to reinitialize repository with different hash"));
386 else if (hash != GIT_HASH_UNKNOWN)
387 repo_fmt->hash_algo = hash;
3c9331a1 388 else if (env) {
389 int env_algo = hash_algo_by_name(env);
390 if (env_algo == GIT_HASH_UNKNOWN)
391 die(_("unknown hash algorithm '%s'"), env);
392 repo_fmt->hash_algo = env_algo;
393 }
8b8f7189 394}
395
33158701 396int init_db(const char *git_dir, const char *real_git_dir,
32ba12da
JS
397 const char *template_dir, int hash, const char *initial_branch,
398 unsigned int flags)
f225aeb2 399{
9173912b 400 int reinit;
1bd19079 401 int exist_ok = flags & INIT_DB_EXIST_OK;
ce83eadd 402 char *original_git_dir = real_pathdup(git_dir, 1);
8b8f7189 403 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
33158701 404
1bd19079
NTND
405 if (real_git_dir) {
406 struct stat st;
33158701 407
1bd19079
NTND
408 if (!exist_ok && !stat(git_dir, &st))
409 die(_("%s already exists"), git_dir);
410
411 if (!exist_ok && !stat(real_git_dir, &st))
412 die(_("%s already exists"), real_git_dir);
f225aeb2 413
0915a5b4 414 set_git_dir(real_git_dir, 1);
822d9406
NTND
415 git_dir = get_git_dir();
416 separate_git_dir(git_dir, original_git_dir);
1bd19079
NTND
417 }
418 else {
0915a5b4 419 set_git_dir(git_dir, 1);
822d9406 420 git_dir = get_git_dir();
1bd19079
NTND
421 }
422 startup_info->have_repository = 1;
f225aeb2 423
28785339
JS
424 /* Just look for `core.hidedotfiles` */
425 git_config(git_init_db_config, NULL);
426
b57fb80a 427 safe_create_dir(git_dir, 0);
f225aeb2 428
0a2c7eea
DM
429 init_is_bare_repository = is_bare_repository();
430
f225aeb2
DB
431 /* Check to see if the repository version is right.
432 * Note that a newly created repository does not have
433 * config file, so this will not fail. What we are catching
434 * is an attempt to reinitialize new repository with an old tool.
435 */
8b8f7189 436 check_repository_format(&repo_fmt);
f225aeb2 437
8b8f7189 438 validate_hash_algorithm(&repo_fmt, hash);
439
32ba12da
JS
440 reinit = create_default_files(template_dir, original_git_dir,
441 initial_branch, &repo_fmt);
442 if (reinit && initial_branch)
443 warning(_("re-init: ignored --initial-branch=%s"),
444 initial_branch);
f225aeb2 445
9173912b 446 create_object_directory();
f225aeb2 447
7875acb6 448 if (get_shared_repository()) {
f225aeb2
DB
449 char buf[10];
450 /* We do not spell "group" and such, so that
451 * the configuration can be read by older version
452 * of git. Note, we use octal numbers for new share modes,
453 * and compatibility values for PERM_GROUP and
454 * PERM_EVERYBODY.
455 */
7875acb6 456 if (get_shared_repository() < 0)
5a688fe4 457 /* force to the mode value */
7875acb6
JK
458 xsnprintf(buf, sizeof(buf), "0%o", -get_shared_repository());
459 else if (get_shared_repository() == PERM_GROUP)
5096d490 460 xsnprintf(buf, sizeof(buf), "%d", OLD_PERM_GROUP);
7875acb6 461 else if (get_shared_repository() == PERM_EVERYBODY)
5096d490 462 xsnprintf(buf, sizeof(buf), "%d", OLD_PERM_EVERYBODY);
f225aeb2 463 else
033abf97 464 BUG("invalid value for shared_repository");
3d180648
PS
465 git_config_set("core.sharedrepository", buf);
466 git_config_set("receive.denyNonFastforwards", "true");
f225aeb2
DB
467 }
468
d06f15d9 469 if (!(flags & INIT_DB_QUIET)) {
d06f15d9 470 int len = strlen(git_dir);
3e5dd7e9 471
c30364d0
VA
472 if (reinit)
473 printf(get_shared_repository()
474 ? _("Reinitialized existing shared Git repository in %s%s\n")
475 : _("Reinitialized existing Git repository in %s%s\n"),
476 git_dir, len && git_dir[len-1] != '/' ? "/" : "");
477 else
478 printf(get_shared_repository()
479 ? _("Initialized empty shared Git repository in %s%s\n")
480 : _("Initialized empty Git repository in %s%s\n"),
481 git_dir, len && git_dir[len-1] != '/' ? "/" : "");
d06f15d9 482 }
f225aeb2 483
6311cfaf 484 free(original_git_dir);
f225aeb2
DB
485 return 0;
486}
487
488static int guess_repository_type(const char *git_dir)
6adcca3f 489{
6adcca3f 490 const char *slash;
56b9f6e7
RS
491 char *cwd;
492 int cwd_is_git_dir;
6adcca3f 493
6adcca3f
JH
494 /*
495 * "GIT_DIR=. git init" is always bare.
496 * "GIT_DIR=`pwd` git init" too.
497 */
498 if (!strcmp(".", git_dir))
f225aeb2 499 return 1;
56b9f6e7
RS
500 cwd = xgetcwd();
501 cwd_is_git_dir = !strcmp(git_dir, cwd);
502 free(cwd);
503 if (cwd_is_git_dir)
f225aeb2 504 return 1;
6adcca3f
JH
505 /*
506 * "GIT_DIR=.git or GIT_DIR=something/.git is usually not.
507 */
508 if (!strcmp(git_dir, ".git"))
f225aeb2 509 return 0;
6adcca3f
JH
510 slash = strrchr(git_dir, '/');
511 if (slash && !strcmp(slash, "/.git"))
f225aeb2 512 return 0;
6adcca3f
JH
513
514 /*
515 * Otherwise it is often bare. At this point
516 * we are just guessing.
517 */
f225aeb2 518 return 1;
6adcca3f
JH
519}
520
596f91ee
MK
521static int shared_callback(const struct option *opt, const char *arg, int unset)
522{
517fe807 523 BUG_ON_OPT_NEG(unset);
596f91ee
MK
524 *((int *) opt->value) = (arg) ? git_config_perm("arg", arg) : PERM_GROUP;
525 return 0;
526}
527
528static const char *const init_db_usage[] = {
9c9b4f2f 529 N_("git init [-q | --quiet] [--bare] [--template=<template-directory>] [--shared[=<permissions>]] [<directory>]"),
596f91ee
MK
530 NULL
531};
d3af621b 532
4696cb93
ZW
533/*
534 * If you want to, you can share the DB area with any number of branches.
535 * That has advantages: you can save space by sharing all the SHA1 objects.
536 * On the other hand, it might just make lookup slower and messier. You
537 * be the judge. The default case is to have one DB per managed directory.
538 */
a633fca0 539int cmd_init_db(int argc, const char **argv, const char *prefix)
e83c5163 540{
cad88fdf 541 const char *git_dir;
b57fb80a 542 const char *real_git_dir = NULL;
83518360 543 const char *work_tree;
c3c8835f 544 const char *template_dir = NULL;
f225aeb2 545 unsigned int flags = 0;
8b8f7189 546 const char *object_format = NULL;
32ba12da 547 const char *initial_branch = NULL;
8b8f7189 548 int hash_algo = GIT_HASH_UNKNOWN;
596f91ee 549 const struct option init_db_options[] = {
ce4a5e53
NTND
550 OPT_STRING(0, "template", &template_dir, N_("template-directory"),
551 N_("directory from which templates will be used")),
596f91ee 552 OPT_SET_INT(0, "bare", &is_bare_repository_cfg,
ce4a5e53 553 N_("create a bare repository"), 1),
596f91ee 554 { OPTION_CALLBACK, 0, "shared", &init_shared_repository,
ce4a5e53
NTND
555 N_("permissions"),
556 N_("specify that the git repository is to be shared amongst several users"),
596f91ee 557 PARSE_OPT_OPTARG | PARSE_OPT_NONEG, shared_callback, 0},
ce4a5e53
NTND
558 OPT_BIT('q', "quiet", &flags, N_("be quiet"), INIT_DB_QUIET),
559 OPT_STRING(0, "separate-git-dir", &real_git_dir, N_("gitdir"),
560 N_("separate git dir from working tree")),
32ba12da
JS
561 OPT_STRING('b', "initial-branch", &initial_branch, N_("name"),
562 N_("override the name of the initial branch")),
8b8f7189 563 OPT_STRING(0, "object-format", &object_format, N_("hash"),
564 N_("specify the hash algorithm to use")),
596f91ee
MK
565 OPT_END()
566 };
567
0397ff24
JH
568 argc = parse_options(argc, argv, prefix, init_db_options, init_db_usage, 0);
569
ccf236a2
ES
570 if (real_git_dir && is_bare_repository_cfg == 1)
571 die(_("--separate-git-dir and --bare are mutually exclusive"));
572
b57fb80a 573 if (real_git_dir && !is_absolute_path(real_git_dir))
ce83eadd 574 real_git_dir = real_pathdup(real_git_dir, 1);
b57fb80a 575
e1df7fe4
NTND
576 if (template_dir && *template_dir && !is_absolute_path(template_dir))
577 template_dir = absolute_pathdup(template_dir);
578
0397ff24 579 if (argc == 1) {
53d48885
NS
580 int mkdir_tried = 0;
581 retry:
0397ff24 582 if (chdir(argv[0]) < 0) {
53d48885
NS
583 if (!mkdir_tried) {
584 int saved;
585 /*
586 * At this point we haven't read any configuration,
587 * and we know shared_repository should always be 0;
588 * but just in case we play safe.
589 */
7875acb6
JK
590 saved = get_shared_repository();
591 set_shared_repository(0);
0397ff24 592 switch (safe_create_leading_directories_const(argv[0])) {
f3565c0c
MH
593 case SCLD_OK:
594 case SCLD_PERMS:
595 break;
0be0521b 596 case SCLD_EXISTS:
53d48885
NS
597 errno = EEXIST;
598 /* fallthru */
53d48885 599 default:
f3565c0c 600 die_errno(_("cannot mkdir %s"), argv[0]);
53d48885
NS
601 break;
602 }
7875acb6 603 set_shared_repository(saved);
0397ff24 604 if (mkdir(argv[0], 0777) < 0)
33e92e47 605 die_errno(_("cannot mkdir %s"), argv[0]);
53d48885
NS
606 mkdir_tried = 1;
607 goto retry;
608 }
33e92e47 609 die_errno(_("cannot chdir to %s"), argv[0]);
53d48885 610 }
0397ff24
JH
611 } else if (0 < argc) {
612 usage(init_db_usage[0]);
d3af621b 613 }
0397ff24 614 if (is_bare_repository_cfg == 1) {
4d3ab44d
RS
615 char *cwd = xgetcwd();
616 setenv(GIT_DIR_ENVIRONMENT, cwd, argc > 0);
617 free(cwd);
d3af621b
JH
618 }
619
8b8f7189 620 if (object_format) {
621 hash_algo = hash_algo_by_name(object_format);
622 if (hash_algo == GIT_HASH_UNKNOWN)
623 die(_("unknown hash algorithm '%s'"), object_format);
624 }
625
5a688fe4 626 if (init_shared_repository != -1)
7875acb6 627 set_shared_repository(init_shared_repository);
5a688fe4 628
6adcca3f
JH
629 /*
630 * GIT_WORK_TREE makes sense only in conjunction with GIT_DIR
631 * without --bare. Catch the error early.
632 */
e5b07c53
JK
633 git_dir = xstrdup_or_null(getenv(GIT_DIR_ENVIRONMENT));
634 work_tree = xstrdup_or_null(getenv(GIT_WORK_TREE_ENVIRONMENT));
83518360 635 if ((!git_dir || is_bare_repository_cfg == 1) && work_tree)
33e92e47
ÆAB
636 die(_("%s (or --work-tree=<directory>) not allowed without "
637 "specifying %s (or --git-dir=<directory>)"),
6adcca3f
JH
638 GIT_WORK_TREE_ENVIRONMENT,
639 GIT_DIR_ENVIRONMENT);
640
cad88fdf
LT
641 /*
642 * Set up the default .git directory contents
643 */
ef0a89a6 644 if (!git_dir)
cad88fdf 645 git_dir = DEFAULT_GIT_DIR_ENVIRONMENT;
af6e277c 646
59d876cc
ES
647 /*
648 * When --separate-git-dir is used inside a linked worktree, take
649 * care to ensure that the common .git/ directory is relocated, not
650 * the worktree-specific .git/worktrees/<id>/ directory.
651 */
652 if (real_git_dir) {
653 int err;
654 const char *p;
655 struct strbuf sb = STRBUF_INIT;
656
657 p = read_gitfile_gently(git_dir, &err);
658 if (p && get_common_dir(&sb, p)) {
659 struct strbuf mainwt = STRBUF_INIT;
660
661 strbuf_addbuf(&mainwt, &sb);
662 strbuf_strip_suffix(&mainwt, "/.git");
663 if (chdir(mainwt.buf) < 0)
664 die_errno(_("cannot chdir to %s"), mainwt.buf);
665 strbuf_release(&mainwt);
666 git_dir = strbuf_detach(&sb, NULL);
667 }
668 strbuf_release(&sb);
669 }
670
f225aeb2
DB
671 if (is_bare_repository_cfg < 0)
672 is_bare_repository_cfg = guess_repository_type(git_dir);
673
674 if (!is_bare_repository_cfg) {
b31d2022
NTND
675 const char *git_dir_parent = strrchr(git_dir, '/');
676 if (git_dir_parent) {
677 char *rel = xstrndup(git_dir, git_dir_parent - git_dir);
ce83eadd 678 git_work_tree_cfg = real_pathdup(rel, 1);
b31d2022 679 free(rel);
f225aeb2 680 }
56b9f6e7
RS
681 if (!git_work_tree_cfg)
682 git_work_tree_cfg = xgetcwd();
83518360 683 if (work_tree)
2d186c8b 684 set_git_work_tree(work_tree);
83518360
NTND
685 else
686 set_git_work_tree(git_work_tree_cfg);
f225aeb2 687 if (access(get_git_work_tree(), X_OK))
33e92e47 688 die_errno (_("Cannot access work tree '%s'"),
0721c314 689 get_git_work_tree());
94df2506 690 }
83518360 691 else {
ccf236a2
ES
692 if (real_git_dir)
693 die(_("--separate-git-dir incompatible with bare repository"));
83518360 694 if (work_tree)
2d186c8b 695 set_git_work_tree(work_tree);
83518360 696 }
af6e277c 697
0e5bba53 698 UNLEAK(real_git_dir);
e5b07c53
JK
699 UNLEAK(git_dir);
700 UNLEAK(work_tree);
0e5bba53 701
33158701 702 flags |= INIT_DB_EXIST_OK;
32ba12da
JS
703 return init_db(git_dir, real_git_dir, template_dir, hash_algo,
704 initial_branch, flags);
e83c5163 705}