1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
// Warning!! Code generated automatically: this file must not be edited by hand
use crateoption_arg;
use crateFnOptionArg;
pub const LOCAL: &str = "--local";
pub const NO_HARDLINKS: &str = "--no-hardlinks";
pub const SHARED: &str = "--shared";
pub const DISSOCIATE: &str = "--dissociate";
pub const QUIET: &str = "--quiet";
pub const VERBOSE: &str = "--verbose";
pub const PROGRESS: &str = "--progress";
pub const NO_CHECKOUT: &str = "--no-checkout";
pub const BARE: &str = "--bare";
pub const MIRROR: &str = "--mirror";
pub const ORIGIN: &str = "--origin";
pub const BRANCH: &str = "--branch";
pub const UPLOAD_PACK: &str = "--upload-pack";
pub const TEMPLATE: &str = "--template";
pub const DEPTH: &str = "--depth";
pub const SHALLOW_SINCE: &str = "--shallow-since";
pub const SHALLOW_EXCLUDE: &str = "--shallow-exclude";
pub const SINGLE_BRANCH: &str = "--single-branch";
pub const NO_SINGLE_BRANCH: &str = "--no-single-branch";
pub const RECURSE_SUBMODULES: &str = "--recurse-submodules";
pub const SHALLOW_SUBMODULES: &str = "--shallow-submodules";
pub const NO_SHALLOW_SUBMODULES: &str = "--no-shallow-submodules";
pub const SEPARATE_GIT_DIR: &str = "--separate-git-dir";
pub const JOBS: &str = "--jobs";
/// When the repository to clone from is on a local machine, this flag bypasses the normal 'Git aware' transport mechanism and clones the repository by making a copy of HEAD and everything under objects and refs directories.
/// The files under .git/objects/ directory are hardlinked to save space when possible.
/// --local, -l
/// Force the cloning process from a repository on a local filesystem to copy the files under the .git/objects directory instead of using hardlinks.
/// This may be desirable if you are trying to make a back-up of your repository.
/// --no-hardlinks
/// When the repository to clone is on the local machine, instead of using hard links, automatically setup .git/objects/info/alternates to share the objects with the source repository.
/// The resulting repository starts out without any object of its own.
/// --shared, -s
/// Borrow the objects from reference repositories specified with the --reference options only to reduce network transfer,
/// and stop borrowing from them after a clone is made by making necessary local copies of borrowed objects.
/// This option can also be used when cloning locally from a repository that already borrows objects from another repository—the new repository will borrow objects from the same repository,
/// and this option can be used to stop the borrowing.
/// --dissociate
/// Operate quietly.
/// Progress is not reported to the standard error stream.
/// --quiet, -q
/// Run verbosely.
/// Does not affect the reporting of progress status to the standard error stream.
/// --verbose, -v
/// Progress status is reported on the standard error stream by default when it is attached to a terminal, unless -q is specified.
/// This flag forces progress status even if the standard error stream is not directed to a terminal.
/// --progress
/// No checkout of HEAD is performed after the clone is complete.
/// --no-checkout, -n
/// Make a bare Git repository.
/// That is, instead of creating <directory> and placing the administrative files in <directory>/.git, make the <directory> itself the $GIT_DIR.
/// This obviously implies the -n because there is nowhere to check out the working tree.
/// Also the branch heads at the remote are copied directly to corresponding local branch heads, without mapping them to refs/remotes/origin/.
/// When this option is used, neither remote-tracking branches nor the related configuration variables are created.
/// --bare
/// Set up a mirror of the source repository.
/// This implies --bare.
/// Compared to --bare, --mirror not only maps local branches of the source to local branches of the target,
/// it maps all refs (including remote-tracking branches, notes etc.) and sets up a refspec configuration such that all these refs are overwritten by a git remote update in the target repository.
/// --mirror
/// Instead of using the remote name origin to keep track of the upstream repository, use <name>.
/// --origin <name>, -o <name>
/// Instead of pointing the newly created HEAD to the branch pointed to by the cloned repository’s HEAD, point to <name> branch instead.
/// In a non-bare repository, this is the branch that will be checked out.
/// --branch can also take tags and detaches the HEAD at that commit in the resulting repository.
/// --branch <name>, -b <name>
/// When given, and the repository to clone from is accessed via ssh, this specifies a non-default path for the command run on the other end.
/// --upload-pack <upload-pack>, -u <upload-pack>
/// Specify the directory from which templates will be used; (See the 'TEMPLATE DIRECTORY' section of git-init(1).)
/// --template=<template_directory>
/// Create a shallow clone with a history truncated to the specified number of commits.
/// Implies --single-branch unless --no-single-branch is given to fetch the histories near the tips of all branches.
/// If you want to clone submodules shallowly, also pass --shallow-submodules.
/// --depth <depth>
/// Create a shallow clone with a history after the specified time.
/// --shallow-since=<date>
/// Create a shallow clone with a history, excluding commits reachable from a specified remote branch or tag.
/// This option can be specified multiple times.
/// --shallow-exclude=<revision>
/// Clone only the history leading to the tip of a single branch, either specified by the --branch option or the primary branch remote’s HEAD points at.
/// Further fetches into the resulting repository will only update the remote-tracking branch for the branch this option was used for the initial cloning.
/// If the HEAD at the remote did not point at any branch when --single-branch clone was made, no remote-tracking branch is created.
/// --single-branch
/// Clone only the history leading to the tip of a single branch, either specified by the --branch option or the primary branch remote’s HEAD points at.
/// Further fetches into the resulting repository will only update the remote-tracking branch for the branch this option was used for the initial cloning.
/// If the HEAD at the remote did not point at any branch when --single-branch clone was made, no remote-tracking branch is created.
/// --no-single-branch
/// After the clone is created, initialize and clone submodules within based on the provided pathspec.
/// If no pathspec is provided, all submodules are initialized and cloned.
/// Submodules are initialized and cloned using their default settings.
/// The resulting clone has submodule.active set to the provided pathspec, or '.' (meaning all submodules) if no pathspec is provided.
/// This is equivalent to running git submodule update --init --recursive immediately after the clone is finished.
/// This option is ignored if the cloned repository does not have a worktree/checkout (i.e.
/// if any of --no-checkout/-n, --bare, or --mirror is given)
/// --recurse-submodules[=<pathspec>]
/// All submodules which are cloned will be shallow with a depth of 1.
/// --shallow-submodules
/// All submodules which are cloned will be shallow with a depth of 1.
/// --no-shallow-submodules
/// Instead of placing the cloned repository where it is supposed to be, place the cloned repository at the specified directory,
/// then make a filesystem-agnostic Git symbolic link to there.
/// The result is Git repository can be separated from working tree.
/// --separate-git-dir=<git-dir>
/// The number of submodules fetched at the same time.
/// Defaults to the submodule.fetchJobs option.
/// -j <n>, --jobs <n>
/// The (possibly remote) repository to clone from.
/// <url>
/// The name of a new directory to clone into.
/// The "humanish" part of the source repository is used if no directory is explicitly given (repo for /path/to/repo.git and foo for host.xz:foo/.git).
/// Cloning into an existing directory is only allowed if the directory is empty.
/// <path>