SYNOPSIS
gitrepack
[-a
] [-A
] [-d
] [-f
] [-F
] [-l
] [-n
] [-q
] [-b
] [-m
] [--window=
<n>] [--depth=
<n>] [--threads=
<n>] [--keep-pack=
<pack-name>] [--write-midx
]
DESCRIPTION
このコマンドは、現在パック内に存在しないすべてのオブジェクトを1つのパックに結合するために使用されます。また、既存のパックを単一のより効率的なパックに再編成するために使用することもできます。
パックは、個別に圧縮され、デルタ圧縮が適用され、関連付けられたインデックスファイルとともに単一のファイルに格納されたオブジェクトのコレクションです。
パックは、ミラーシステム、バックアップエンジン、ディスクストレージなどの負荷を軽減するために使用されます。
OPTIONS
-
-a
-
Instead of incrementally packing the unpacked objects, pack everything referenced into a single pack. Especially useful when packing a repository that is used for private development. Use with
-d
. This will clean up the objects thatgit
prune
leaves behind, butgit
fsck
--full
--dangling
shows as dangling.馬鹿プロトコル(dumb protocol)を介してフェッチするユーザーは、含まれているオブジェクトを取得するために、そのパック内にすでにローカルにある他のオブジェクトの数に関係なく、まったく新しいパックをフェッチする必要があることに注意してください。
promisorパックファイルは個別に再パックされます。
.promisor
ファイルに関連付けられているパックファイルがある場合、これらのパックファイルは別の個別パックに再パックされ、新しい個別パックに対応する、空の.promisor
ファイルが書き込まれます。 -
-A
-
Same as
-a
, unless-d
is used. Then any unreachable objects in a previous pack become loose, unpacked objects, instead of being left in the old pack. Unreachable objects are never intentionally added to a pack, even when repacking. This option prevents unreachable objects from being immediately deleted by way of being left in the old pack and then removed. Instead, the loose unreachable objects will be pruned according to normal expiry rules with the next git gc invocation. See git-gc(1). -
-d
-
After packing, if the newly created packs make some existing packs redundant, remove the redundant packs. Also run git prune-packed to remove redundant loose object files.
-
--cruft
-
Same as
-a
, unless-d
is used. Then any unreachable objects are packed into a separate cruft pack. Unreachable objects can be pruned using the normal expiry rules with the nextgit
gc
invocation (see git-gc(1)). Incompatible with-k
. -
--cruft-expiration=
<approxidate> -
Expire unreachable objects older than <approxidate> immediately instead of waiting for the next
git
gc
invocation. Only useful with--cruft
-d
. -
--max-cruft-size=
<n> -
Repack cruft objects into packs as large as <n> bytes before creating new packs. As long as there are enough cruft packs smaller than <n>, repacking will cause a new cruft pack to be created containing objects from any combined cruft packs, along with any new unreachable objects. Cruft packs larger than <n> will not be modified. When the new cruft pack is larger than <n> bytes, it will be split into multiple packs, all of which are guaranteed to be at most <n> bytes in size. Only useful with
--cruft
-d
. -
--expire-to=
<dir> -
Write a cruft pack containing pruned objects (if any) to the directory <dir>. This option is useful for keeping a copy of any pruned objects in a separate directory as a backup. Only useful with
--cruft
-d
. -
-l
-
Pass the
--local
option to git pack-objects. See git-pack-objects(1). -
-f
-
Pass the
--no-reuse-delta
option togit-pack-objects
, see git-pack-objects(1). -
-F
-
Pass the
--no-reuse-object
option togit-pack-objects
, see git-pack-objects(1). -
-q
-
--quiet
-
Show no progress over the standard error stream and pass the
-q
option to git pack-objects. See git-pack-objects(1). -
-n
-
Do not update the server information with git update-server-info. This option skips updating local catalog files needed to publish this repository (or a direct copy of it) over HTTP or FTP. See git-update-server-info(1).
-
--window=
<n> -
--depth=
<n> -
These two options affect how the objects contained in the pack are stored using delta compression. The objects are first internally sorted by type, size and optionally names and compared against the other objects within
--window
to see if using delta compression saves space.--depth
limits the maximum delta depth; making it too deep affects the performance on the unpacker side, because delta data needs to be applied that many times to get to the necessary object.--window
のデフォルト値は10で、--depth
は50です。最大深度(maximum depth)は4095です。 -
--threads=
<n> -
This option is passed through to
git
pack-objects
. -
--window-memory=
<n> -
This option provides an additional limit on top of
--window
; the window size will dynamically scale down so as to not take up more than <n> bytes in memory. This is useful in repositories with a mix of large and small objects to not run out of memory with a large window, but still be able to take advantage of the large window for the smaller objects. The size can be suffixed with "k", "m", or "g".--window-memory=0
makes memory usage unlimited. The default is taken from thepack.windowMemory
configuration variable. Note that the actual memory usage will be the limit multiplied by the number of threads used by git-pack-objects(1). -
--max-pack-size=
<n> -
Maximum size of each output pack file. The size can be suffixed with "k", "m", or "g". The minimum size allowed is limited to 1 MiB. If specified, multiple packfiles may be created, which also prevents the creation of a bitmap index. The default is unlimited, unless the config variable
pack.packSizeLimit
is set. Note that this option may result in a larger and slower repository; see the discussion inpack.packSizeLimit
. -
--filter=
<filter-spec> -
Remove objects matching the filter specification from the resulting packfile and put them into a separate packfile. Note that objects used in the working directory are not filtered out. So for the split to fully work, it’s best to perform it in a bare repo and to use the
-a
and-d
options along with this option. Also--no-write-bitmap-index
(or therepack.writebitmaps
config option set tofalse
) should be used otherwise writing bitmap index will fail, as it supposes a single packfile containing all the objects. See git-rev-list(1) for valid <filter-spec> forms. -
--filter-to=
<dir> -
Write the pack containing filtered out objects to the directory <dir>. Only useful with
--filter
. This can be used for putting the pack on a separate object directory that is accessed through the Git alternates mechanism. WARNING: If the packfile containing the filtered out objects is not accessible, the repo can become corrupt as it might not be possible to access the objects in that packfile. See theobjects
andobjects/info/alternates
sections of gitrepository-layout(5). -
-b
-
--write-bitmap-index
-
Write a reachability bitmap index as part of the repack. This only makes sense when used with
-a
,-A
or-m
, as the bitmaps must be able to refer to all reachable objects. This option overrides the setting ofrepack.writeBitmaps
. This option has no effect if multiple packfiles are created, unless writing a MIDX (in which case a multi-pack bitmap is created). -
--pack-kept-objects
-
Include objects in
.keep
files when repacking. Note that we still do not delete.keep
packs afterpack-objects
finishes. This means that we may duplicate objects, but this makes the option safe to use when there are concurrent pushes or fetches. This option is generally only useful if you are writing bitmaps with-b
orrepack.writeBitmaps
, as it ensures that the bitmapped packfile has the necessary objects. -
--keep-pack=
<pack-name> -
Exclude the given pack from repacking. This is the equivalent of having
.keep
file on the pack. <pack-name> is the pack file name without leading directory (e.g.pack-123.pack
). The option can be specified multiple times to keep multiple packs. -
--unpack-unreachable=
<when> -
When loosening unreachable objects, do not bother loosening any objects older than <when>. This can be used to optimize out the write of any objects that would be immediately pruned by a follow-up
git
prune
. -
-k
-
--keep-unreachable
-
When used with
-ad
, any unreachable objects from existing packs will be appended to the end of the packfile instead of being removed. In addition, any unreachable loose objects will be packed (and their loose counterparts removed). -
-i
-
--delta-islands
-
Pass the
--delta-islands
option togit-pack-objects
, see git-pack-objects(1). -
-g
<factor> -
--geometric=
<factor> -
Arrange resulting pack structure so that each successive pack contains at least <factor> times the number of objects as the next-largest pack.
git
repack
が、等比数列を確実にするために1つに再パックする必要があるパックファイルの「切り分け」を決断することによってこれを保証します。 大きいパックファイルの多く(そのパックに含まれるオブジェクトの数による)がそのまま残るように、パックファイルの最小セットを選択します。他の再パックモードとは異なり、梱包するオブジェクトのセットは、「ロールアップ」(rolled-up)されるパックのセットによって一意に決定されます。言い換えれば、等比数列を復元するために組み合わせる必要があると判断されたパックです。
Loose objects are implicitly included in this "roll-up", without respect to their reachability. This is subject to change in the future.
マルチパック・ビットマップを書き込む場合、
git
repack
は結果として最大のパックを MIDX によるオブジェクト選択の優先パックとして選択します(git-multi-pack-index(1) 参照)。 -
-m
-
--write-midx
-
Write a multi-pack index (see git-multi-pack-index(1)) containing the non-redundant packs.
CONFIGURATION
さまざまな構成変数がパッキングに影響します。 git-config(1) を参照してください(「pack」と「delta」を検索してください)。
デフォルトでは、コマンドは --delta-base-offset
オプションを git
pack-objects
に渡します。これにより、通常、パックはわずかに小さくなりますが、生成されたパックは、バージョン1.4.4より古いバージョンのGitと互換性がありません。直接またはダムhttpプロトコルを介して、このような古いバージョンのGitとリポジトリを共有する必要がある場合は、構成変数 repack.UseDeltaBaseOffset
を false
に設定して再パックする必要があります。この場合、必要に応じて変換がオンザフライで実行されるため、ネイティブプロトコルを介した古いGitバージョンからのアクセスではこのオプションの影響を受けません。
デルタ圧縮は、 core.bigFileThreshold
構成変数より大きいオブジェクト、および属性 delta
がfalseに設定されているファイルでは使用されません。
SEE ALSO
GIT
Part of the git(1) suite