git-submodule: Add tldr page for the git-submodule command.

Update git-submodule to pass linter requirements.
This commit is contained in:
Zak Remer
2016-03-29 13:08:18 -07:00
parent 38f4a514a5
commit b184ceca66

View File

@@ -0,0 +1,15 @@
# 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`