Complete the command to clone a repository including its submodules.
git clone --[1] <repository-url>The --recurse-submodules option tells Git to clone the repository and initialize and update each submodule.
Complete the command to initialize submodules after cloning without --recurse-submodules.
git submodule [1]The git submodule init command initializes your local configuration file for submodules.
Fix the error in the command to update submodules recursively.
git submodule update --[1]The --recursive flag updates submodules and their nested submodules recursively.
Fill both blanks to clone a repository and initialize submodules manually.
git clone <repo-url> && git submodule [1] && git submodule [2]
After cloning, git submodule init initializes submodules, and git submodule update fetches and checks out the submodule content.
Fill all three blanks to clone a repo, initialize, and update submodules recursively.
git clone --[1] <repo-url> && git submodule [2] && git submodule update --[3]
This sequence clones the repo with submodules, initializes them, and updates all submodules recursively.