From b184ceca66df0bd5f1820d556a1400ecd8c455eb Mon Sep 17 00:00:00 2001 From: Zak Remer Date: Tue, 29 Mar 2016 13:08:18 -0700 Subject: [PATCH] git-submodule: Add tldr page for the git-submodule command. Update git-submodule to pass linter requirements. --- pages/common/git-submodule.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/common/git-submodule.md diff --git a/pages/common/git-submodule.md b/pages/common/git-submodule.md new file mode 100644 index 000000000..28607c453 --- /dev/null +++ b/pages/common/git-submodule.md @@ -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`