how to add a git submodule code example
Example 1: git load all submodules
git submodule update --init --recursive
Example 2: add submodule
$ git submodule add <remote_url> <destination_folder>
git submodule update --init --recursive
$ git submodule add <remote_url> <destination_folder>