Set default git-config values known to fix repository issues

- core.autocrlf=false -> #4069
- fsck.zeroPaddedFilemode -> #4963

Fixes #4069
Fixes #4963
This commit is contained in:
Marc Cornellà
2019-10-21 16:42:06 +02:00
parent a7c740b1d7
commit 534ec60bfd
2 changed files with 16 additions and 2 deletions

View File

@@ -90,7 +90,11 @@ setup_ohmyzsh() {
exit 1
fi
git clone --depth=1 --branch "$BRANCH" "$REMOTE" "$ZSH" || {
git clone -c core.eol=lf -c core.autocrlf=false \
-c fsck.zeroPaddedFilemode=ignore \
-c fetch.fsck.zeroPaddedFilemode=ignore \
-c receive.fsck.zeroPaddedFilemode=ignore \
--depth=1 --branch "$BRANCH" "$REMOTE" "$ZSH" || {
error "git clone of oh-my-zsh repo failed"
exit 1
}