1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 17:22:10 +02:00
tldr/pages/common/git-submodule.md
2019-01-30 11:19:23 +00:00

20 lines
497 B
Markdown

# git submodule
> Inspects, updates and manages submodules.
> Homepage: <https://git-scm.com/docs/git-submodule>.
- Install a repository's specified submodules:
`git submodule update --init --recursive`
- Add a git repository as a submodule:
`git submodule add {{repository_url}}`
- Add a git repository as a submodule at the specified directory:
`git submodule add {{repository_url}} {{path/to/directory}}`
- Update every submodule to its latest commit:
`git submodule foreach git pull`