Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cloning a repo with git can be really slow if the repo is big. Adding `--filter=blob:none` to the `git clone` command will make it really faster and slimmer because it will lazy-download blobs on checkout, while only getting commit metadata for whatever is not checked out. See "Blobless Clones" in https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/ for a good explanation. Also interesting to see that pip 21.3 itself landed this enhancement: pypa/pip#9086. @moduon MT-83
- Loading branch information