Complete the command to check the current status of all git submodules.
git submodule [1]The git submodule status command shows the current commit checked out in each submodule.
Complete the command to initialize all submodules recursively.
git submodule [1] --recursiveThe git submodule init --recursive command initializes submodules and their nested submodules.
Fix the error in the command to synchronize submodule URLs from the .gitmodules file.
git submodule [1]The git submodule sync command updates the URLs of submodules to match the .gitmodules file.
Fill both blanks to update all submodules recursively and initialize any new ones.
git submodule [1] --init --[2]
The command git submodule update --init --recursive fetches and checks out submodules, initializes new ones, and does this recursively for nested submodules.
Fill all three blanks to show submodule status, synchronize URLs, and then update submodules recursively.
git submodule [1] && git submodule [2] && git submodule [3] --recursive
This sequence first shows the submodule status, then synchronizes URLs, and finally updates all submodules recursively.