-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the checkout_submodules.py script to support the recursive configuration in the .gitmodules file. #33089
Update the checkout_submodules.py script to support the recursive configuration in the .gitmodules file. #33089
Conversation
…figuration in the .gitmodules file.
PR #33089: Size comparison from f084d65 to 7bcfe13 Decreases (2 builds for efr32)
Full report (71 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink)
|
I wonder, can't the same be achieved with standard git's https://git-scm.com/docs/gitmodules#Documentation/gitmodules.txt-submoduleltnamegtfetchRecurseSubmodules? |
I had wondered the same thing, tried it, and it didn't work as I expected. After having read some documents, it seems that the 'fetchRecurseSubmodules' only affects the 'fetch' behavior, but it doesn't help you to update submodules recursively for your working space. |
…figuration in the .gitmodules file. (project-chip#33089)
I split this PR out from #33065 for a standalone change.