Files
30-seconds-of-code/snippets/add-submodule.md
Isabelle Viktoria Maciohsek ed2f41b0d8 Bake dates into snippets
2021-06-13 19:47:48 +03:00

572 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
Add a submodule repository,submodule,advanced 2021-04-08T20:05:15+03:00 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"