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 .Pp
176 The options for
177 .Cm gotadmin listpack
178 are as follows:
179 .Bl -tag -width Ds
180 .It Fl h
181 Show object sizes in human-readable form.
182 .It Fl s
183 Display statistics about the pack file after listing objects.
184 This includes the total number of objects stored in the pack file
185 and a break-down of the number of objects per object type.
186 .El
187 .Tg cl
188 .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
189 .Dl Pq alias: Cm cl
190 Purge unreferenced loose objects from the repository and display
191 the amount of disk space which has been freed as a result.
192 .Pp
193 Unreferenced objects are present in the repository but cannot be
194 reached via any reference in the entire
195 .Pa refs/
196 namespace.
197 .Pp
198 Loose objects are stored as individual files beneath the repository's
199 .Pa objects/
200 directory,
201 spread across 256 sub-directories named after the 256 possible
202 hexadecimal values of the first byte of an object identifier.
203 .Pp
204 Packed objects stored in pack files under
205 .Pa objects/pack/
206 will not be purged.
207 However, if redundant copies of packed objects exist in loose form,
208 such redundant copies will be purged.
209 .Pp
210 Objects will usually become unreferenced as a result of deleting
211 branches or tags with
212 .Cm got branch -d
213 or
214 .Cm got tag -d .
215 Deleting arbitrary references with
216 .Cm got ref -d
217 may also leave unreferenced objects behind.
218 .Pp
219 In order to determine the set of objects which are referenced, search
220 all references for commit objects and tag objects, and traverse the
221 corresponding tree object hierarchies.
222 Any loose object IDs not encountered during this search are unreferenced
223 and thus subject to removal.
224 Display the number of commits which have been searched to indicate progress.
225 .Pp
226 References in the
227 .Pa refs/got
228 namespace may prevent objects from being purged.
229 This includes references in the
230 .Pa refs/got/worktree
231 namespace created by
232 .Cm got checkout
233 and
234 .Cm got update ,
235 as well as references in the
236 .Pa refs/got/backup
237 namespace created by
238 .Cm got rebase
239 and
240 .Cm got histedit .
241 .Cm gotadmin cleanup
242 will only purge corresponding objects once such references have been
243 deleted with
244 .Cm got ref -d .
245 .Pp
246 Some Git repositories contain pack index files which lack a corresponding
247 pack file, which is an inconsistent repository state.
248 In such cases,
249 .Cm gotadmin cleanup -p -n
250 will display a list of affected pack index files.
251 Whenever possible the missing pack files should be restored.
252 If restoring missing pack files is not possible then affected pack index
253 files can be removed with
254 .Cm gotadmin cleanup -p .
255 .Pp
256 The
257 .Dq preciousObjects
258 Git extension is intended to prevent the removal of objects from a repository.
259 .Cm gotadmin cleanup
260 will refuse to operate on repositories where this extension is active.
261 .Pp
262 The options for
263 .Cm gotadmin cleanup
264 are as follows:
265 .Bl -tag -width Ds
266 .It Fl a
267 Delete all loose objects.
268 By default, objects which are newer than an implementation-defined
269 modification timestamp are kept on disk to prevent race conditions
270 with other commands that add new objects to the repository while
271 .Cm gotadmin cleanup
272 is running.
273 .It Fl p
274 Instead of purging unreferenced loose objects, remove any pack index files
275 which do not have a corresponding pack file.
276 .It Fl n
277 Display the usual progress output and summary information but do not actually
278 remove any files from disk.
279 .It Fl r Ar repository-path
280 Use the repository at the specified path.
281 If not specified, assume the repository is located at or above the current
282 working directory.
283 If this directory is a
284 .Xr got 1
285 work tree, use the repository path associated with this work tree.
286 .It Fl q
287 Suppress progress reporting and disk space summary output.
288 .El
289 .El
290 .Sh EXIT STATUS
291 .Ex -std gotadmin
292 .Sh SEE ALSO
293 .Xr got 1 ,
294 .Xr tog 1 ,
295 .Xr git-repository 5 ,
296 .Xr got.conf 5
297 .Sh AUTHORS
298 .An Stefan Sperling Aq Mt stsp@openbsd.org
299 .An Ori Bernstein Aq Mt ori@openbsd.org
300 .Sh CAVEATS
301 .Nm
302 is a work-in-progress and some features remain to be implemented.
303 .Pp
304 At present, the user has to fall back on
305 .Xr git 1
306 to perform some tasks.
307 In particular:
308 .Bl -bullet
309 .It
310 Removing redundant or unreferenced packed objects requires
311 .Xr git-gc 1
312 and perhaps
313 .Xr git-repack 1 .
314 .It
315 Exporting data from repositories requires
316 .Xr git-fast-export 1 .
317 .It
318 Importing data into repositories requires
319 .Xr git-fast-import 1 .
320 .El
321 .Sh BUGS
322 Disk space savings reported by
323 .Cm gotadmin cleanup
324 will be misleading if the repository contains object files that were
325 hard-linked from another repository.
326 Such hard-links will be created by certain
327 .Xr git 1
328 commands.
329 By itself,
330 .Xr got 1
331 will never create hard-linked object files.