My project has a bunch of git submodules, and every time I clone my project, it takes a long time to clone all submodules.
Is there any way to make all submodules as a package, so maybe I can just unzip them, pull new commits, instead of clone them all?
I've tried just packing the submodule directories together in previous git version, and it works fine due to the git root of submodules are right in the path/to/submodule/.git, but recently, I found that they put the submodule git root centralized in .git/modules/path/to/submodule/.git, so this way is not working now.
Any idea?