We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31bc17d commit 20c0702Copy full SHA for 20c0702
zsh/startup/git-rc.zsh
@@ -12,9 +12,9 @@ function git-repo() {
12
echo "The 'gh' utility is required: https://github.com/cli/cli"
13
fi
14
15
- gh repo clone "$url" "$clonedir" || return $?
+ gh repo clone "$url" "$clonedir" -- --filter=blob:none || return $?
16
else
17
- git clone "$url" "$clonedir" || return $?
+ git clone --filter=blob:none "$url" "$clonedir" || return $?
18
19
20
0 commit comments