Files
30-seconds-of-code/git/snippets/add-submodule.md
2023-05-01 22:28:09 +03:00

587 B

title, type, tags, author, cover, dateModified
title type tags author cover dateModified
Add a submodule snippet
repository
submodule
chalarangelo rocky-mountains 2021-04-13T21:10:59+03:00

Adds a new submodule to the repository.

  • Use git submodule add <upstream-path> <local-path> to add a new submodule from <upstream-path> to <local-path>.
git submodule add <upstream-path> <local-path>
git submodule add https://github.com/30-seconds/30-seconds-of-code ./30code
# Creates the directory `30code` containing the submodule from
# "https://github.com/30-seconds/30-seconds-of-code"