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 .El
72 .It Cm pack Oo Fl a Oc Oo Fl r Ar repository-path Oc Oo Fl x Ar reference Oc Op Ar reference ...
73 Generate a new pack file and a corresponding pack file index.
74 By default, add any loose objects which are reachable via any references
75 to the generated pack file.
76 .Pp
77 If one or more
78 .Ar reference
79 arguments is specified, only add objects which are reachable via the specified
80 references.
81 Each
82 .Ar reference
83 argument may either specify a specific reference or a reference namespace,
84 in which case all references within this namespace will be used.
85 .Pp
86 .Cm gotadmin pack
87 always ignores references in the
88 .Pa refs/got/
89 namespace, effectively treating such references as if they did not refer
90 to any objects.
91 .Pp
92 The options for
93 .Cm gotadmin pack
94 are as follows:
95 .Bl -tag -width Ds
96 .It Fl a
97 Add objects to the generated pack file even if they are already packed
98 in a different pack file.
99 Unless this option is specified, only loose objects will be added.
100 .It Fl r Ar repository-path
101 Use the repository at the specified path.
102 If not specified, assume the repository is located at or above the current
103 working directory.
104 .It Fl x Ar reference
105 Exclude objects reachable via the specified
106 .Ar reference
107 from the pack file.
108 The
109 .Ar reference
110 argument may either specify a specific reference or a reference namespace,
111 in which case all references within this namespace will be excluded.
112 The
113 .Fl x
114 option may be specified multiple times to build a list of references to exclude.
115 .Pp
116 Exclusion takes precedence over inclusion.
117 If a reference appears in both the included and excluded lists, it will
118 be excluded.
119 .El
120 .Tg ix
121 .It Cm indexpack Ar packfile-path
122 .Dl (alias: Cm ix )
123 Create a pack index for the pack file at
124 .Ar packfile-path .
125 .Pp
126 A pack index is required for using the corresponding pack file with
127 .Xr got 1 .
128 Usually, a pack index will be created by commands such as
129 .Cm gotadmin pack
130 or
131 .Cm got fetch
132 as part of regular operation.
133 The
134 .Cm gotadmin indexpack
135 command may be used to recover from a corrupt or missing index.
136 A given pack file will always yield the same bit-identical index.
137 .Pp
138 The provided
139 .Ar packfile-path
140 must be located within the
141 .Pa objects/pack/
142 directory of the repository and should end in
143 .Pa .pack .
144 The filename of the corresponding pack index is equivalent, except
145 that it ends in
146 .Pa .idx .
147 .Tg ls
148 .It Cm listpack Oo Fl h Oc Oo Fl s Oc Ar packfile-path
149 .Dl (alias: Cm ls )
150 List the contents of the pack file at
151 .Ar packfile-path .
152 .Pp
153 Each object contained in the pack file will be displayed on a single line.
154 The information shown includes the object ID, object type, object offset,
155 and object size.
156 .Pp
157 If a packed object is deltified against another object the delta base
158 will be shown as well.
159 For offset deltas, the delta base is identified via an offset into the
160 pack file.
161 For reference deltas, the delta base is identified via an object ID.
162 .Pp
163 The provided
164 .Ar packfile-path
165 must be located within the
166 .Pa objects/pack/
167 directory of the repository and should end in
168 .Pa .pack .
169 .Pp
170 The options for
171 .Cm gotadmin listpack
172 are as follows:
173 .Bl -tag -width Ds
174 .It Fl h
175 Show object sizes in human-readable form.
176 .It Fl s
177 Display statistics about the pack file after listing objects.
178 This includes the total number of objects stored in the pack file
179 and a break-down of the number of objects per object type.
180 .El
181 .Tg cl
182 .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
183 .Dl (alias: Cm cl )
184 Purge unreferenced loose objects from the repository and display
185 the amount of disk space which has been freed as a result.
186 .Pp
187 Unreferenced objects are present in the repository but cannot be
188 reached via any reference in the entire
189 .Pa refs/
190 namespace.
191 .Pp
192 Loose objects are stored as individual files beneath the repository's
193 .Pa objects/
194 directory,
195 spread across 256 sub-directories named after the 256 possible
196 hexadecimal values of the first byte of an object identifier.
197 .Pp
198 Packed objects stored in pack files under
199 .Pa objects/pack/
200 will not be purged.
201 However, if redundant copies of packed objects exist in loose form,
202 such redundant copies will be purged.
203 .Pp
204 Objects will usually become unreferenced as a result of deleting
205 branches or tags with
206 .Cm got branch -d
207 or
208 .Cm got tag -d .
209 Deleting arbitrary references with
210 .Cm got ref -d
211 may also leave unreferenced objects behind.
212 .Pp
213 In order to determine the set of objects which are referenced, search
214 all references for commit objects and tag objects, and traverse the
215 corresponding tree object hierarchies.
216 Any loose object IDs not encountered during this search are unreferenced
217 and thus subject to removal.
218 Display the number of commits which have been searched to indicate progress.
219 .Pp
220 References in the
221 .Pa refs/got
222 namespace may prevent objects from being purged.
223 This includes references in the
224 .Pa refs/got/worktree
225 namespace created by
226 .Cm got checkout
227 and
228 .Cm got update ,
229 as well as references in the
230 .Pa refs/got/backup
231 namespace created by
232 .Cm got rebase
233 and
234 .Cm got histedit .
235 .Cm gotadmin cleanup
236 will only purge corresponding objects once such references have been
237 deleted with
238 .Cm got ref -d .
239 .Pp
240 Some Git repositories contain pack index files which lack a corresponding
241 pack file, which is an inconsistent repository state.
242 In such cases,
243 .Cm gotadmin cleanup -p -n
244 will display a list of affected pack index files.
245 Whenever possible the missing pack files should be restored.
246 If restoring missing pack files is not possible then affected pack index
247 files can be removed with
248 .Cm gotadmin cleanup -p .
249 .Pp
250 The
251 .Dq preciousObjects
252 Git extension is intended to prevent the removal of objects from a repository.
253 .Cm gotadmin cleanup
254 will refuse to operate on repositories where this extension is active.
255 .Pp
256 The options for
257 .Cm gotadmin cleanup
258 are as follows:
259 .Bl -tag -width Ds
260 .It Fl a
261 Delete all loose objects.
262 By default, objects which are newer than an implementation-defined
263 modification timestamp are kept on disk to prevent race conditions
264 with other commands that add new objects to the repository while
265 .Cm gotadmin cleanup
266 is running.
267 .It Fl p
268 Instead of purging unreferenced loose objects, remove any pack index files
269 which do not have a corresponding pack file.
270 .It Fl n
271 Display the usual progress output and summary information but do not actually
272 remove any files from disk.
273 .It Fl r Ar repository-path
274 Use the repository at the specified path.
275 If not specified, assume the repository is located at or above the current
276 working directory.
277 .It Fl q
278 Suppress progress reporting and disk space summary output.
279 .El
280 .El
281 .Sh EXIT STATUS
282 .Ex -std gotadmin
283 .Sh SEE ALSO
284 .Xr got 1 ,
285 .Xr tog 1 ,
286 .Xr git-repository 5 ,
287 .Xr got.conf 5
288 .Sh AUTHORS
289 .An Stefan Sperling Aq Mt stsp@openbsd.org
290 .An Ori Bernstein Aq Mt ori@openbsd.org
291 .Sh CAVEATS
292 .Nm
293 is a work-in-progress and some features remain to be implemented.
294 .Pp
295 At present, the user has to fall back on
296 .Xr git 1
297 to perform some tasks.
298 In particular:
299 .Bl -bullet
300 .It
301 Removing redundant or unreferenced packed objects requires
302 .Xr git-gc 1
303 and perhaps
304 .Xr git-repack 1 .
305 .It
306 Exporting data from repositories requires
307 .Xr git-fast-export 1 .
308 .It
309 Importing data into repositories requires
310 .Xr git-fast-import 1 .
311 .El
312 .Sh BUGS
313 Disk space savings reported by
314 .Cm gotadmin cleanup
315 will be misleading if the repository contains object files that were
316 hard-linked from another repository.
317 Such hard-links will be created by certain
318 .Xr git 1
319 commands.
320 By itself,
321 .Xr got 1
322 will never create hard-linked object files.