This article provides a detailed explanation on how to clone a Git repository without pulling down large binary files using Git LFS, by utilizing the command git clone --filter=blob:none <repo_url>.

lfs download is mandatory while doing git clone

skip with:

1
2
env GIT_LFS_SKIP_SMUDGE=1 git clone --filter=blob:none <repo_url>

Comments