mirror of https://github.com/CrimsonTome/tldr.git
16 lines
314 B
Markdown
16 lines
314 B
Markdown
# git submodule
|
|
|
|
> Inspects, updates and manages submodules.
|
|
|
|
- Install a repository's specified submodules:
|
|
|
|
`git submodule update --init --recursive`
|
|
|
|
- Add a git repository as a submodule:
|
|
|
|
`git submodule add {{repository-url}}`
|
|
|
|
- Update every submodule to its latest commit:
|
|
|
|
`git submodule foreach git pull`
|