diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-04-19 17:36:22 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-19 17:38:40 -0700 |
commit | 66996ecc28f001d3dcc73090717bb8c6e47c0d75 (patch) | |
tree | d1a4847442f3ce9baadd3e27f23f3a395b072e31 /Documentation/config.txt | |
parent | Work around ash "alternate value" expansion bug (diff) | |
parent | GIT 1.6.2.4 (diff) | |
download | tgif-66996ecc28f001d3dcc73090717bb8c6e47c0d75.tar.xz |
Sync with 1.6.2.4
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 5ffd14141a..35056e1a9c 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -295,8 +295,10 @@ core.sharedRepository:: group-shareable. When 'umask' (or 'false'), git will use permissions reported by umask(2). When '0xxx', where '0xxx' is an octal number, files in the repository will have this mode value. '0xxx' will override - user's umask value, and thus, users with a safe umask (0077) can use - this option. Examples: '0660' is equivalent to 'group'. '0640' is a + user's umask value (whereas the other options will only override + requested parts of the user's umask value). Examples: '0660' will make + the repo read/write-able for the owner and group, but inaccessible to + others (equivalent to 'group' unless umask is e.g. '0022'). '0640' is a repository that is group-readable but not group-writable. See linkgit:git-init[1]. False by default. |