Initialize the repo submodules.
# Not recursive submodules
git submodule update
# Recursive submodules
git submodule update --recursiveChange to the modules folder and update its contents.
cd <SUBMODULE_DIR>
git checkout <TARGET_BRANCH>
git pullInitialize the repo submodules.
# Not recursive submodules
git submodule update
# Recursive submodules
git submodule update --recursiveChange to the modules folder and update its contents.
cd <SUBMODULE_DIR>
git checkout <TARGET_BRANCH>
git pull