]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/config/safe.txt
Merge branch 'es/add-doc-list-short-form-of-all-in-synopsis'
[thirdparty/git.git] / Documentation / config / safe.txt
CommitLineData
8d1a7448
GC
1safe.bareRepository::
2 Specifies which bare repositories Git will work with. The currently
3 supported values are:
4+
5* `all`: Git works with all bare repositories. This is the default.
6* `explicit`: Git only works with bare repositories specified via
7 the top-level `--git-dir` command-line option, or the `GIT_DIR`
8 environment variable (see linkgit:git[1]).
9+
10If you do not use bare repositories in your workflow, then it may be
11beneficial to set `safe.bareRepository` to `explicit` in your global
12config. This will protect you from attacks that involve cloning a
13repository that contains a bare repository and running a Git command
14within that directory.
15+
16This config setting is only respected in protected configuration (see
cf6cac20 17<<SCOPES>>). This prevents untrusted repositories from tampering with
8d1a7448
GC
18this value.
19
8959555c
JS
20safe.directory::
21 These config entries specify Git-tracked directories that are
22 considered safe even if they are owned by someone other than the
23 current user. By default, Git will refuse to even parse a Git
24 config of a repository owned by someone else, let alone run its
25 hooks, and this config setting allows users to specify exceptions,
26 e.g. for intentionally shared repositories (see the `--shared`
27 option in linkgit:git-init[1]).
28+
29This is a multi-valued setting, i.e. you can add more than one directory
30via `git config --add`. To reset the list of safe directories (e.g. to
31override any such directories specified in the system config), add a
32`safe.directory` entry with an empty value.
33+
6061601d 34This config setting is only respected in protected configuration (see
cf6cac20 35<<SCOPES>>). This prevents untrusted repositories from tampering with this
6061601d 36value.
8959555c
JS
37+
38The value of this setting is interpolated, i.e. `~/<path>` expands to a
39path relative to the home directory and `%(prefix)/<path>` expands to a
40path relative to Git's (runtime) prefix.
0f85c4a3
DS
41+
42To completely opt-out of this security check, set `safe.directory` to the
43string `*`. This will allow all repositories to be treated as if their
44directory was listed in the `safe.directory` list. If `safe.directory=*`
45is set in system config and you want to re-enable this protection, then
46initialize your list with an empty value before listing the repositories
47that you deem safe.
ae9abbb6
CMAB
48+
49As explained, Git only allows you to access repositories owned by
50yourself, i.e. the user who is running Git, by default. When Git
51is running as 'root' in a non Windows platform that provides sudo,
6b11e3d5
CMAB
52however, git checks the SUDO_UID environment variable that sudo creates
53and will allow access to the uid recorded as its value in addition to
54the id from 'root'.
ae9abbb6
CMAB
55This is to make it easy to perform a common sequence during installation
56"make && sudo make install". A git process running under 'sudo' runs as
57'root' but the 'sudo' command exports the environment variable to record
58which id the original user has.
59If that is not what you would prefer and want git to only trust
6b11e3d5 60repositories that are owned by root instead, then you can remove
ae9abbb6 61the `SUDO_UID` variable from root's environment before invoking git.