X-Git-Url: https://git.madduck.net/code/vcsh.git/blobdiff_plain/36a7cedf196793a6d99f9d3ba2e69805cfff23ab..12d208c25fef8a67da18d54077a0b67e0bf4e862:/vcsh diff --git a/vcsh b/vcsh index de1b419..57a465c 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 @@ -261,7 +264,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 }