git-clone: add `git clone --recursive` entry (#1844)

coverage
Starbeamrainbowlabs 2017-12-30 16:07:17 +00:00 committed by GitHub
commit 93ad4bf3eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -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`
@ -16,4 +20,4 @@
- Clone an existing repository, and truncate to the specified number of revisions, save your time mostly:
`git clone --depth 10 {{remote_repository_location}}`
`git clone --depth {{10}} {{remote_repository_location}}`