Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 473 Bytes

File metadata and controls

17 lines (14 loc) · 473 Bytes

Git checkout the submodules for a given repository

If cloning a repo and need to get the submodules downloaded for the 1st time, run below command

git submodule update --init --recursive

To get the latest after cloning etc.. i.e. for the not very first time

git submodule update --recursive

or

git pull --recurse-submodules

Documentation link