From 2ed9d366b4c82bcf5726c68913209fa0f9fb1fc7 Mon Sep 17 00:00:00 2001 From: Forrest Desjardins Date: Wed, 27 Dec 2017 23:10:06 -0900 Subject: [PATCH] git-clone: add `git clone --recursive` entry --- pages/common/git-clone.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/git-clone.md b/pages/common/git-clone.md index 1a235fa1b6..b346ad144c 100644 --- a/pages/common/git-clone.md +++ b/pages/common/git-clone.md @@ -6,6 +6,10 @@ `git clone {{remote_repository_location}}` +- Clone an existing repository and its submodules: + +`git clone --recursive {{remote_repository_location}}` + - For cloning from the local machine: `git clone -l`