I'm using Git Bash for Windows, version 2.34.1.windows.1
. I would like Git to automatically initialize submodules when I do a clone
, checkout
or pull
. I found this question, but the accepted answer, where you configure it with
git config --global submodule.recurse true
does not have any effect. After doing a clone
I still have to go into the repository and do
git submodule update --init
to get a submodule.
Is there something I'm missing? Has something changed between those other versions of Git and the one I'm using now? Might the Windows version not honor this setting?