Blob


1 .\"
2 .\" Copyright (c) 2021 Stefan Sperling
3 .\"
4 .\" Permission to use, copy, modify, and distribute this software for any
5 .\" purpose with or without fee is hereby granted, provided that the above
6 .\" copyright notice and this permission notice appear in all copies.
7 .\"
8 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 .\"
16 .Dd $Mdocdate$
17 .Dt GOTADMIN 1
18 .Os
19 .Sh NAME
20 .Nm gotadmin
21 .Nd Game of Trees repository administration
22 .Sh SYNOPSIS
23 .Nm
24 .Ar command
25 .Op Fl h
26 .Op Ar arg ...
27 .Sh DESCRIPTION
28 .Nm
29 is the repository maintenance tool for the
30 .Xr got 1
31 version control system.
32 .Pp
33 .Xr got 1
34 stores the history of tracked files in a Git repository, as used
35 by the Git version control system.
36 .Nm
37 provides commands for inspecting and manipulating the on-disk state of
38 Git repositories.
39 The repository format is described in
40 .Xr git-repository 5 .
41 .Pp
42 .Nm
43 provides global and command-specific options.
44 Global options must precede the command name, and are as follows:
45 .Bl -tag -width tenletters
46 .It Fl h
47 Display usage information and exit immediately.
48 .It Fl V , -version
49 Display program version and exit immediately.
50 .El
51 .Pp
52 The commands for
53 .Nm
54 are as follows:
55 .Bl -tag -width checkout
56 .It Cm info Oo Fl r Ar repository-path Oc
57 Display information about a repository.
58 This includes some configuration settings from
59 .Xr got.conf 5 ,
60 and the number of objects stored in the repository, in packed or
61 loose form, as well as the current on-disk size of these objects.
62 .Pp
63 The options for
64 .Cm gotadmin info
65 are as follows:
66 .Bl -tag -width Ds
67 .It Fl r Ar repository-path
68 Use the repository at the specified path.
69 If not specified, assume the repository is located at or above the current
70 working directory.
71 If this directory is a
72 .Xr got 1
73 work tree, use the repository path associated with this work tree.
74 .El
75 .It Cm pack Oo Fl a Oc Oo Fl r Ar repository-path Oc Oo Fl x Ar reference Oc Op Ar reference ...
76 Generate a new pack file and a corresponding pack file index.
77 By default, add any loose objects which are reachable via any references
78 to the generated pack file.
79 .Pp
80 If one or more
81 .Ar reference
82 arguments is specified, only add objects which are reachable via the specified
83 references.
84 Each
85 .Ar reference
86 argument may either specify a specific reference or a reference namespace,
87 in which case all references within this namespace will be used.
88 .Pp
89 .Cm gotadmin pack
90 always ignores references in the
91 .Pa refs/got/
92 namespace, effectively treating such references as if they did not refer
93 to any objects.
94 .Pp
95 The options for
96 .Cm gotadmin pack
97 are as follows:
98 .Bl -tag -width Ds
99 .It Fl a
100 Add objects to the generated pack file even if they are already packed
101 in a different pack file.
102 Unless this option is specified, only loose objects will be added.
103 .It Fl r Ar repository-path
104 Use the repository at the specified path.
105 If not specified, assume the repository is located at or above the current
106 working directory.
107 If this directory is a
108 .Xr got 1
109 work tree, use the repository path associated with this work tree.
110 .It Fl x Ar reference
111 Exclude objects reachable via the specified
112 .Ar reference
113 from the pack file.
114 The
115 .Ar reference
116 argument may either specify a specific reference or a reference namespace,
117 in which case all references within this namespace will be excluded.
118 The
119 .Fl x
120 option may be specified multiple times to build a list of references to exclude.
121 .Pp
122 Exclusion takes precedence over inclusion.
123 If a reference appears in both the included and excluded lists, it will
124 be excluded.
125 .El
126 .Tg ix
127 .It Cm indexpack Ar packfile-path
128 .Dl Pq alias: Cm ix
129 Create a pack index for the pack file at
130 .Ar packfile-path .
131 .Pp
132 A pack index is required for using the corresponding pack file with
133 .Xr got 1 .
134 Usually, a pack index will be created by commands such as
135 .Cm gotadmin pack
136 or
137 .Cm got fetch
138 as part of regular operation.
139 The
140 .Cm gotadmin indexpack
141 command may be used to recover from a corrupt or missing index.
142 A given pack file will always yield the same bit-identical index.
143 .Pp
144 The provided
145 .Ar packfile-path
146 must be located within the
147 .Pa objects/pack/
148 directory of the repository and should end in
149 .Pa .pack .
150 The filename of the corresponding pack index is equivalent, except
151 that it ends in
152 .Pa .idx .
153 .Tg ls
154 .It Cm listpack Oo Fl h Oc Oo Fl s Oc Ar packfile-path
155 .Dl Pq alias: Cm ls
156 List the contents of the pack file at
157 .Ar packfile-path .
158 .Pp
159 Each object contained in the pack file will be displayed on a single line.
160 The information shown includes the object ID, object type, object offset,
161 and object size.
162 .Pp
163 If a packed object is deltified against another object, the delta base
164 will be shown as well.
165 For offset deltas, the delta base is identified via an offset into the
166 pack file.
167 For reference deltas, the delta base is identified via an object ID.
168 .Pp
169 The provided
170 .Ar packfile-path
171 must be located within the
172 .Pa objects/pack/
173 directory of the repository and should end in
174 .Pa .pack .
175 The corresponding pack index must exist and can be created with
176 .Cm gotadmin indexpack
177 if it is missing.
178 .Pp
179 The options for
180 .Cm gotadmin listpack
181 are as follows:
182 .Bl -tag -width Ds
183 .It Fl h
184 Show object sizes in human-readable form.
185 .It Fl s
186 Display statistics about the pack file after listing objects.
187 This includes the total number of objects stored in the pack file
188 and a break-down of the number of objects per object type.
189 .El
190 .Tg cl
191 .It Cm cleanup Oo Fl a Oc Oo Fl p Oc Oo Fl n Oc Oo Fl r Ar repository-path Oc Oo Fl q Oc
192 .Dl Pq alias: Cm cl
193 Purge unreferenced loose objects from the repository and display
194 the amount of disk space which has been freed as a result.
195 .Pp
196 Unreferenced objects are present in the repository but cannot be
197 reached via any reference in the entire
198 .Pa refs/
199 namespace.
200 .Pp
201 Loose objects are stored as individual files beneath the repository's
202 .Pa objects/
203 directory,
204 spread across 256 sub-directories named after the 256 possible
205 hexadecimal values of the first byte of an object identifier.
206 .Pp
207 Packed objects stored in pack files under
208 .Pa objects/pack/
209 will not be purged.
210 However, if redundant copies of packed objects exist in loose form,
211 such redundant copies will be purged.
212 .Pp
213 Objects will usually become unreferenced as a result of deleting
214 branches or tags with
215 .Cm got branch -d
216 or
217 .Cm got tag -d .
218 Deleting arbitrary references with
219 .Cm got ref -d
220 may also leave unreferenced objects behind.
221 .Pp
222 In order to determine the set of objects which are referenced, search
223 all references for commit objects and tag objects, and traverse the
224 corresponding tree object hierarchies.
225 Any loose object IDs not encountered during this search are unreferenced
226 and thus subject to removal.
227 Display the number of commits which have been searched to indicate progress.
228 .Pp
229 References in the
230 .Pa refs/got
231 namespace may prevent objects from being purged.
232 This includes references in the
233 .Pa refs/got/worktree
234 namespace created by
235 .Cm got checkout
236 and
237 .Cm got update ,
238 as well as references in the
239 .Pa refs/got/backup
240 namespace created by
241 .Cm got rebase
242 and
243 .Cm got histedit .
244 .Cm gotadmin cleanup
245 will only purge corresponding objects once such references have been
246 deleted with
247 .Cm got ref -d .
248 .Pp
249 Some Git repositories contain pack index files which lack a corresponding
250 pack file, which is an inconsistent repository state.
251 In such cases,
252 .Cm gotadmin cleanup -p -n
253 will display a list of affected pack index files.
254 Whenever possible, the missing pack files should be restored.
255 If restoring missing pack files is not possible, then affected pack index
256 files can be removed with
257 .Cm gotadmin cleanup -p .
258 .Pp
259 The
260 .Dq preciousObjects
261 Git extension is intended to prevent the removal of objects from a repository.
262 .Cm gotadmin cleanup
263 will refuse to operate on repositories where this extension is active.
264 .Pp
265 The options for
266 .Cm gotadmin cleanup
267 are as follows:
268 .Bl -tag -width Ds
269 .It Fl a
270 Delete all loose objects.
271 By default, objects which are newer than an implementation-defined
272 modification timestamp are kept on disk to prevent race conditions
273 with other commands that add new objects to the repository while
274 .Cm gotadmin cleanup
275 is running.
276 .It Fl p
277 Instead of purging unreferenced loose objects, remove any pack index files
278 which do not have a corresponding pack file.
279 .It Fl n
280 Display the usual progress output and summary information but do not actually
281 remove any files from disk.
282 .It Fl r Ar repository-path
283 Use the repository at the specified path.
284 If not specified, assume the repository is located at or above the current
285 working directory.
286 If this directory is a
287 .Xr got 1
288 work tree, use the repository path associated with this work tree.
289 .It Fl q
290 Suppress progress reporting and disk space summary output.
291 .El
292 .El
293 .Sh EXIT STATUS
294 .Ex -std gotadmin
295 .Sh SEE ALSO
296 .Xr got 1 ,
297 .Xr tog 1 ,
298 .Xr git-repository 5 ,
299 .Xr got.conf 5
300 .Sh AUTHORS
301 .An Stefan Sperling Aq Mt stsp@openbsd.org
302 .An Ori Bernstein Aq Mt ori@openbsd.org
303 .Sh CAVEATS
304 .Nm
305 is a work-in-progress and some features remain to be implemented.
306 .Pp
307 At present, the user has to fall back on
308 .Xr git 1
309 to perform some tasks.
310 In particular:
311 .Bl -bullet
312 .It
313 Removing redundant or unreferenced packed objects requires
314 .Xr git-gc 1
315 and perhaps
316 .Xr git-repack 1 .
317 .It
318 Exporting data from repositories requires
319 .Xr git-fast-export 1 .
320 .It
321 Importing data into repositories requires
322 .Xr git-fast-import 1 .
323 .El
324 .Sh BUGS
325 Disk space savings reported by
326 .Cm gotadmin cleanup
327 will be misleading if the repository contains object files that were
328 hard-linked from another repository.
329 Such hard-links will be created by certain
330 .Xr git 1
331 commands.
332 By itself,
333 .Xr got 1
334 will never create hard-linked object files.