Git Submodules allow you to embed another repository inside your repository. This is useful for managing dependencies.
git submodule add
)git submodule update --init --recursive
)Task 18: Add a submodule to your repository.
git submodule add <https://github.com/example/repo.git> submodule-folder
Task 19: Clone a repo with submodules.
git clone --recurse-submodules <https://github.com/example/repo.git>