X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/aef309d6d15a29109d9172e6da151e5491370d3d..d3ff85c0d7594234d13a5256adaa2d77d7a7a4d6:/vcsh diff --git a/vcsh b/vcsh index ff0ec2b..ce6705d 100755 --- a/vcsh +++ b/vcsh @@ -22,6 +22,9 @@ VERSION='1.20141026' SELF=$(basename $0) +# Ensure all files created are accessible only to the current user. +umask 0077 + fatal() { echo "$SELF: fatal: $1" >&2 [ -z $2 ] && exit 1 @@ -262,7 +265,7 @@ init() { [ ! -e "$GIT_DIR" ] || fatal "'$GIT_DIR' exists" 10 mkdir -p "$VCSH_BASE" || fatal "could not create '$VCSH_BASE'" 50 cd "$VCSH_BASE" || fatal "could not enter '$VCSH_BASE'" 11 - git init --shared=0600 + git init --shared=false upgrade hook post-init }