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