]> git.madduck.net Git - code/vcsh.git/commit

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Do not use shared Git repositories
authorThomas Tuegel <ttuegel@mailbox.org>
Mon, 17 Jul 2017 13:20:13 +0000 (08:20 -0500)
committerThomas Tuegel <ttuegel@mailbox.org>
Mon, 17 Jul 2017 13:20:13 +0000 (08:20 -0500)
commit12d208c25fef8a67da18d54077a0b67e0bf4e862
treef55f58657fc0da6184ed26b26945ef1b885bb958
parent36a7cedf196793a6d99f9d3ba2e69805cfff23ab
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.
t/100-init.t
vcsh