Merge branch 'mh/config-flip-xbit-back-after-checking'
* mh/config-flip-xbit-back-after-checking: create_default_files(): don't set u+x bit on $GIT_DIR/config
This commit is contained in:
@ -12,6 +12,13 @@ check_config () {
|
||||
echo "expected a directory $1, a file $1/config and $1/refs"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if test_have_prereq POSIXPERM && test -x "$1/config"
|
||||
then
|
||||
echo "$1/config is executable?"
|
||||
return 1
|
||||
fi
|
||||
|
||||
bare=$(cd "$1" && git config --bool core.bare)
|
||||
worktree=$(cd "$1" && git config core.worktree) ||
|
||||
worktree=unset
|
||||
|
Reference in New Issue
Block a user