Clone a git repository having submodules

suggest change

When you clone a repository that uses submodules, you’ll need to initialize and update them.

$ git clone --recursive https://github.com/username/repo.git

This will clone the referenced submodules and place them in the appropriate folders (including submodules within submodules). This is equivalent to running git submodule update --init --recursive immediately after the clone is finished.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents