Skip to main content

How can I check out a Git repository with submodules?

09 Aug 2013 - git

# to add the subproject to .git/config.
git submodule init
# to pull down the latest changes to the submodule.
git submodule update

References