I am sure some of you, like me, have cloned a repository and experienced the long wait time to copy data locally with a fast computer and fast internet.
The repository might have large Git packfiles .git/objects/pack
which surpass 1G in size.
Digging a little deeper, you might find that this might be caused by blob files: assets in the repository.
While not necessarily a bad thing, some of these files might be better off in another repository, since they do not appear necessary to run or deploy the app.
In the meanwhile, to save a little time, you can always shallow copy (0m49.415s on my computer):
# Shallow clone staging
git clone \