git submodule pull latest code example
Example 1: git pull with submodules
git pull --recurse-submodules
Example 2: git update all submodules
git submodule update --recursive --remote
Example 3: git load all submodules
git submodule update --init --recursive
Example 4: git pull with submodules
git submodule update
Example 5: git pull onbly submodule
git submodule update --remote <path to the submodule>