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