Merge pull request #837 from kazmasaurus/add-git-submodule

git-submodule: Add tldr page for the git-submodule command.
waldyrious/alt-syntax
Felix Yan 2016-03-29 21:43:45 -05:00
commit cf05add3ff
1 changed files with 15 additions and 0 deletions

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`