git-clone: correct and reword examples (#3470)

italian
Marco Bonelli 2019-10-27 12:07:00 +01:00 committed by GitHub
parent 598e6730e3
commit 13982a4fcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -11,14 +11,14 @@
`git clone --recursive {{remote_repository_location}}`
- For cloning from the local machine:
- Clone a local repository:
`git clone -l`
`git clone -l {{path/to/local/repository}}`
- Do it quietly:
- Clone quietly:
`git clone -q`
`git clone -q {{remote_repository_location}}`
- Clone an existing repository, and truncate to the specified number of revisions, save your time mostly:
- Clone an existing repository only fetching the 10 most recent commits on the default branch (useful to save time):
`git clone --depth {{10}} {{remote_repository_location}}`