diff options
author | Jonas Fonseca <fonseca@diku.dk> | 2006-08-09 02:26:23 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-08 17:45:20 -0700 |
commit | d5dc6a76d49367cddc015e01d2e9aa22e64d7e28 (patch) | |
tree | f5b592ae5c738400031f3df2b7a7a223e38c6295 /Documentation/config.txt | |
parent | git-push: allow pushing from subdirectories (diff) | |
download | tgif-d5dc6a76d49367cddc015e01d2e9aa22e64d7e28.tar.xz |
Update git-init-db(1) and documentation of core.sharedRepository
Combine option descriptions in git-init-db(1). Reflect the changes to
additionally allow all users to read the created git repository.
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index d89916bea7..ce722a2db0 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -83,9 +83,12 @@ core.repositoryFormatVersion:: version. core.sharedRepository:: - If true, the repository is made shareable between several users - in a group (making sure all the files and objects are group-writable). - See gitlink:git-init-db[1]. False by default. + When 'group' (or 'true'), the repository is made shareable between + several users in a group (making sure all the files and objects are + group-writable). When 'all' (or 'world' or 'everybody'), the + repository will be readable by all users, additionally to being + group-shareable. When 'umask' (or 'false'), git will use permissions + reported by umask(2). See gitlink:git-init-db[1]. False by default. core.warnAmbiguousRefs:: If true, git will warn you if the ref name you passed it is ambiguous |