]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/config/extensions.txt
format-patch: fix leak of empty header string
[thirdparty/git.git] / Documentation / config / extensions.txt
1 extensions.objectFormat::
2 Specify the hash algorithm to use. The acceptable values are `sha1` and
3 `sha256`. If not specified, `sha1` is assumed. It is an error to specify
4 this key unless `core.repositoryFormatVersion` is 1.
5 +
6 Note that this setting should only be set by linkgit:git-init[1] or
7 linkgit:git-clone[1]. Trying to change it after initialization will not
8 work and will produce hard-to-diagnose issues.
9
10 extensions.refStorage::
11 Specify the ref storage format to use. The acceptable values are:
12 +
13 include::../ref-storage-format.txt[]
14 +
15 It is an error to specify this key unless `core.repositoryFormatVersion` is 1.
16 +
17 Note that this setting should only be set by linkgit:git-init[1] or
18 linkgit:git-clone[1]. Trying to change it after initialization will not
19 work and will produce hard-to-diagnose issues.
20
21 extensions.worktreeConfig::
22 If enabled, then worktrees will load config settings from the
23 `$GIT_DIR/config.worktree` file in addition to the
24 `$GIT_COMMON_DIR/config` file. Note that `$GIT_COMMON_DIR` and
25 `$GIT_DIR` are the same for the main working tree, while other
26 working trees have `$GIT_DIR` equal to
27 `$GIT_COMMON_DIR/worktrees/<id>/`. The settings in the
28 `config.worktree` file will override settings from any other
29 config files.
30 +
31 When enabling `extensions.worktreeConfig`, you must be careful to move
32 certain values from the common config file to the main working tree's
33 `config.worktree` file, if present:
34 +
35 * `core.worktree` must be moved from `$GIT_COMMON_DIR/config` to
36 `$GIT_COMMON_DIR/config.worktree`.
37 * If `core.bare` is true, then it must be moved from `$GIT_COMMON_DIR/config`
38 to `$GIT_COMMON_DIR/config.worktree`.
39 +
40 It may also be beneficial to adjust the locations of `core.sparseCheckout`
41 and `core.sparseCheckoutCone` depending on your desire for customizable
42 sparse-checkout settings for each worktree. By default, the `git
43 sparse-checkout` builtin enables `extensions.worktreeConfig`, assigns
44 these config values on a per-worktree basis, and uses the
45 `$GIT_DIR/info/sparse-checkout` file to specify the sparsity for each
46 worktree independently. See linkgit:git-sparse-checkout[1] for more
47 details.
48 +
49 For historical reasons, `extensions.worktreeConfig` is respected
50 regardless of the `core.repositoryFormatVersion` setting.