GOTADMIN(1) | General Commands Manual | GOTADMIN(1) |
gotadmin
— Game of
Trees repository administration
gotadmin |
[-hV ] command
[arg ...] |
gotadmin
is the repository maintenance
tool for the got(1) version control system.
got(1) stores the history of tracked files in a
Git repository, as used by the Git version control system.
gotadmin
provides commands for inspecting and
manipulating the on-disk state of Git repositories. The repository format is
described in git-repository(5).
gotadmin
provides global and
command-specific options. Global options must precede the command name, and
are as follows:
-h
-V
,
--version
The commands for gotadmin
are as
follows:
init
[-b
branch]
repository-pathAfter gotadmin init
, the
got import
command must be used to populate the
empty repository before got checkout
can be
used.
The options for gotadmin init
are as
follows:
-b
branchinfo
[-r
repository-path]The options for gotadmin info
are as
follows:
pack
[-aDq
] [-r
repository-path] [-x
reference] [reference ...]If one or more reference arguments is specified, only add objects which are reachable via the specified references. Each reference argument may either specify a specific reference or a reference namespace, in which case all references within this namespace will be used.
gotadmin pack
always ignores
references in the refs/got/ namespace,
effectively treating such references as if they did not refer to any
objects.
The options for gotadmin pack
are as
follows:
-a
-D
-q
-r
repository-path-x
reference-x
option may be specified multiple times to build a list of references
to exclude.
Exclusion takes precedence over inclusion. If a reference appears in both the included and excluded lists, it will be excluded.
indexpack
packfile-path(alias:
ix
)
A pack index is required for using the corresponding pack file
with got(1). Usually, a pack index will be created by
commands such as gotadmin pack
or
got fetch
as part of regular operation. The
gotadmin indexpack
command may be used to
recover from a corrupt or missing index. A given pack file will always
yield the same bit-identical index.
The provided packfile-path must be located within the objects/pack/ directory of the repository and should end in .pack. The filename of the corresponding pack index is equivalent, except that it ends in .idx.
listpack
[-hs
] packfile-path(alias:
ls
)
Each object contained in the pack file will be displayed on a single line. The information shown includes the object ID, object type, object offset, and object size.
If a packed object is deltified against another object, the delta base will be shown as well. For offset deltas, the delta base is identified via an offset into the pack file. For reference deltas, the delta base is identified via an object ID.
The provided packfile-path must be
located within the objects/pack/ directory of
the repository and should end in .pack. The
corresponding pack index must exist and can be created with
gotadmin indexpack
if it is missing.
The options for gotadmin listpack
are
as follows:
cleanup
[-anpq
] [-r
repository-path](alias:
cl
)
Unreferenced objects are present in the repository but cannot
be reached via any reference in the entire refs/
namespace. Objects will usually become unreferenced as a result of
deleting branches, tags, or other references with got
branch -d
, got ref -d
, or
got fetch -X
.
Loose objects are stored as individual files beneath the repository's objects/ directory, spread across 256 sub-directories named after the 256 possible hexadecimal values of the first byte of an object identifier.
Packed objects are stored in pack files under objects/pack/.
If redundant copies of packed objects exist in loose form,
such redundant copies will be purged. If all the objects of a pack file
are present in other pack files, the redundant pack file will be purged.
Pack files will usually become redundant as a result of repacking the
repository with gotadmin
pack
-a
.
References in the refs/got namespace
may prevent objects from being purged. This includes references in the
refs/got/worktree namespace created by
got checkout
and got
update
, as well as references in the
refs/got/backup namespace created by
got rebase
and got
histedit
. gotadmin cleanup
will only
purge corresponding objects once such references have been deleted with
got rebase -X
, got histedit
-X
, or got ref -d
.
The “preciousObjects” Git extension is intended
to prevent the removal of objects from a repository.
gotadmin cleanup
will refuse to operate on
repositories where this extension is active.
For compatibility with Git, if a file with the extension .keep exists and corresponds to a pack file with the extension .pack then this pack file will not be removed.
Some Git repositories contain pack index files which lack a
corresponding pack file, which is an inconsistent repository state. In
such cases, gotadmin cleanup -p -n
will display
a list of affected pack index files. Whenever possible, the missing pack
files should be restored. If restoring missing pack files is not
possible, then affected pack index files can be removed with
gotadmin cleanup -p
.
The options for gotadmin cleanup
are
as follows:
-a
gotadmin
cleanup
is running.-n
-p
-q
-r
repository-pathdump
[-q
] [-r
repository-path] [-x
reference] [reference ...]If one or more reference arguments is specified, only add objects which are reachable via the specified references. Each reference argument may either specify a specific reference or a reference namespace, in which case all references within this namespace will be used.
The options for gotadmin
dump
are as follows:
-q
-r
repository-path-x
reference-x
option may be specified multiple times to build a list of references
to exclude.
Exclusion takes precedence over inclusion. If a reference appears in both the included and excluded lists, it will be excluded.
load
[-nq
] [-l
bundle-path] [-r
repository-path] [reference
...]If one or more reference arguments are provided then only load the specified references from the bundle. Otherwise, all references will be loaded.
The options for gotadmin load
are as
follows:
-l
bundle-path-l
option is specified then no
reference arguments are allowed. The
-l
option is incompatible with the
-n
option.-n
-q
-r
repository-pathThe gotadmin
utility exits 0 on
success, and >0 if an error occurs.
Christian Weisgerber
<naddy@openbsd.org>
Josh Rickmar
<jrick@zettaport.com>
Klemens Nanni
<kn@openbsd.org>
Omar Polo
<op@openbsd.org>
Ori Bernstein
<ori@openbsd.org>
Stefan Sperling
<stsp@openbsd.org>
Tracey Emery
<tracey@traceyemery.net>
gotadmin
is a work-in-progress and some
features remain to be implemented.
At present, the user has to fall back on git(1) to perform some tasks. In particular:
Disk space savings reported by gotadmin
cleanup
will be misleading if the repository contains object files
that were hard-linked from another repository. Such hard-links will be
created by certain git(1) commands. By itself,
got(1) will never create hard-linked object files.
January 31, 2025 | Debian |