File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -248,13 +248,13 @@ clean-prog:
248248.PHONY : clean-prog
249249endif
250250
251+ # If available, do blobless partial clones of submodules to save time and space.
252+ # A blobless partial clone lazily fetches data as needed, but has all the metadata available (tags, etc.).
253+ # Fallback to standard submodule update if blobless isn't available (earlier than 2.36.0)
251254submodules :
252255 $(ECHO ) " Updating submodules: $( GIT_SUBMODULES) "
253256ifneq ($(GIT_SUBMODULES ) ,)
254257 $(Q)cd $(TOP) && git submodule sync $(GIT_SUBMODULES)
255- # If available, do blobless partial clones of submodules to save time and space.
256- # A blobless partial clone lazily fetches data as needed, but has all the metadata available (tags, etc.).
257- # Fallback to standard submodule update if blobless isn't available (earlier than 2.36.0)
258258 $(Q)cd $(TOP) && git submodule update --init --filter=blob:none $(GIT_SUBMODULES) || \
259259 git submodule update --init $(GIT_SUBMODULES)
260260endif
You can’t perform that action at this time.
0 commit comments