From: Thomas Tuegel Date: Mon, 17 Jul 2017 13:20:13 +0000 (-0500) Subject: Do not use shared Git repositories X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/12d208c25fef8a67da18d54077a0b67e0bf4e862?hp=12d208c25fef8a67da18d54077a0b67e0bf4e862 Do not use shared Git repositories Shared repositories were created using `git init --shared=0600` with the intent of keeping configuration data private. Git reports an error if "shared" repositories are created with private permissions. (Due to an apparent bug, the error was not reported before git-2.13.2.) Instead of creating a shared repository, use `umask 0077` to make created files accessible only to the current user. The umask setting is inherited by child processes and respected by Git. ---