Browse Source

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

Marco Bonelli 5 năm trước cách đây
mục cha
commit
13982a4fcb
1 tập tin đã thay đổi với 5 bổ sung5 xóa
  1. 5 5
      pages/common/git-clone.md

+ 5 - 5
pages/common/git-clone.md

@@ -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}}`