Last Updated: February 25, 2016
·
481
· acoomans

Useful commands for git submodules

add module

git submodule add -b branchName repoName dirName

recursively update all submodules

git submodule update --init --recursive

clone a repository with all its submodules

git clone -b branchName --recursive repoName