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:
248
248
.PHONY : clean-prog
249
249
endif
250
250
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)
251
254
submodules :
252
255
$(ECHO ) " Updating submodules: $( GIT_SUBMODULES) "
253
256
ifneq ($(GIT_SUBMODULES ) ,)
254
257
$(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)
258
258
$(Q)cd $(TOP) && git submodule update --init --filter=blob:none $(GIT_SUBMODULES) || \
259
259
git submodule update --init $(GIT_SUBMODULES)
260
260
endif
You can’t perform that action at this time.
0 commit comments