How to git submodule init & git submodule update in a single command
Instead of separately running
submodule-init.sh
git submodule init
git submodule updateyou can just
submodule-update-init.sh
git submodule update --initIn many cases, you also want to git submodule update recursively using:
submodule-update-recursive.sh
git submodule update --init --recursiveCheck out similar posts by category:
Git
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow