You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/clone.md
+1
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ Clone a repository
14
14
| singleBranch | bool = false | Instead of the default behavior of fetching all the branches, only fetch a single branch. |
15
15
| noCheckout | bool = false | If true, clone will only fetch the repo, not check out a branch. Skipping checkout can save a lot of time normally spent writing files to disk. |
16
16
| noGitSuffix | bool = false | If true, clone will not auto-append a `.git` suffix to the `url`. (**AWS CodeCommit needs this option**) |
17
+
| noTags | bool = false | By default clone will fetch all tags. `noTags` disables that behavior. |
17
18
| remote | string = 'origin' | What to name the remote that is created. The default is 'origin'. |
18
19
| depth | integer = undefined | Determines how much of the git repository's history to retrieve. |
19
20
| since | Date = undefined | Only fetch commits created after the given date. Mutually exclusive with `depth`. |
0 commit comments