mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-11 06:16:53 +03:00
5a54763c72
- use underscore rather than minus - use lower case rather than uppder case
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`
|