Autogenerated manpages for v2.47.0-rc1-33-g90fe38
[git-manpages.git] / man1 / git-repack.1
blob3db6a9258703db54a0823f636327246533f87d22
1 '\" t
2 .\"     Title: git-repack
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-10-04
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.rc1.33.g90fe3800b9
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REPACK" "1" "2024-10-04" "Git 2\&.47\&.0\&.rc1\&.33\&.g9" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-repack \- Pack unpacked objects in a repository
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit repack\fR [\-a] [\-A] [\-d] [\-f] [\-F] [\-l] [\-n] [\-q] [\-b] [\-m] [\-\-window=<n>] [\-\-depth=<n>] [\-\-threads=<n>] [\-\-keep\-pack=<pack\-name>] [\-\-write\-midx]
36 .fi
37 .SH "DESCRIPTION"
38 .sp
39 This command is used to combine all objects that do not currently reside in a "pack", into a pack\&. It can also be used to re\-organize existing packs into a single, more efficient pack\&.
40 .sp
41 A pack is a collection of objects, individually compressed, with delta compression applied, stored in a single file, with an associated index file\&.
42 .sp
43 Packs are used to reduce the load on mirror systems, backup engines, disk storage, etc\&.
44 .SH "OPTIONS"
45 .PP
46 \-a
47 .RS 4
48 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
49 \fB\-d\fR\&. This will clean up the objects that
50 \fBgit prune\fR
51 leaves behind, but
52 \fBgit fsck \-\-full \-\-dangling\fR
53 shows as dangling\&.
54 .sp
55 Note that users fetching over dumb protocols will have to fetch the whole new pack in order to get any contained object, no matter how many other objects in that pack they already have locally\&.
56 .sp
57 Promisor packfiles are repacked separately: if there are packfiles that have an associated "\&.promisor" file, these packfiles will be repacked into another separate pack, and an empty "\&.promisor" file corresponding to the new separate pack will be written\&.
58 .RE
59 .PP
60 \-A
61 .RS 4
62 Same as
63 \fB\-a\fR, unless
64 \fB\-d\fR
65 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
66 \fIgit gc\fR
67 invocation\&. See
68 \fBgit-gc\fR(1)\&.
69 .RE
70 .PP
71 \-d
72 .RS 4
73 After packing, if the newly created packs make some existing packs redundant, remove the redundant packs\&. Also run
74 \fIgit prune\-packed\fR
75 to remove redundant loose object files\&.
76 .RE
77 .PP
78 \-\-cruft
79 .RS 4
80 Same as
81 \fB\-a\fR, unless
82 \fB\-d\fR
83 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 next
84 \fBgit gc\fR
85 invocation (see
86 \fBgit-gc\fR(1))\&. Incompatible with
87 \fB\-k\fR\&.
88 .RE
89 .PP
90 \-\-cruft\-expiration=<approxidate>
91 .RS 4
92 Expire unreachable objects older than
93 \fB<approxidate>\fR
94 immediately instead of waiting for the next
95 \fBgit gc\fR
96 invocation\&. Only useful with
97 \fB\-\-cruft \-d\fR\&.
98 .RE
99 .PP
100 \-\-max\-cruft\-size=<n>
101 .RS 4
102 Repack cruft objects into packs as large as
103 \fB<n>\fR
104 bytes before creating new packs\&. As long as there are enough cruft packs smaller than
105 \fB<n>\fR, 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
106 \fB<n>\fR
107 will not be modified\&. When the new cruft pack is larger than
108 \fB<n>\fR
109 bytes, it will be split into multiple packs, all of which are guaranteed to be at most
110 \fB<n>\fR
111 bytes in size\&. Only useful with
112 \fB\-\-cruft \-d\fR\&.
115 \-\-expire\-to=<dir>
116 .RS 4
117 Write a cruft pack containing pruned objects (if any) to the directory
118 \fB<dir>\fR\&. This option is useful for keeping a copy of any pruned objects in a separate directory as a backup\&. Only useful with
119 \fB\-\-cruft \-d\fR\&.
123 .RS 4
124 Pass the
125 \fB\-\-local\fR
126 option to
127 \fIgit pack\-objects\fR\&. See
128 \fBgit-pack-objects\fR(1)\&.
132 .RS 4
133 Pass the
134 \fB\-\-no\-reuse\-delta\fR
135 option to
136 \fBgit\-pack\-objects\fR, see
137 \fBgit-pack-objects\fR(1)\&.
141 .RS 4
142 Pass the
143 \fB\-\-no\-reuse\-object\fR
144 option to
145 \fBgit\-pack\-objects\fR, see
146 \fBgit-pack-objects\fR(1)\&.
149 \-q, \-\-quiet
150 .RS 4
151 Show no progress over the standard error stream and pass the
152 \fB\-q\fR
153 option to
154 \fIgit pack\-objects\fR\&. See
155 \fBgit-pack-objects\fR(1)\&.
159 .RS 4
160 Do not update the server information with
161 \fIgit update\-server\-info\fR\&. This option skips updating local catalog files needed to publish this repository (or a direct copy of it) over HTTP or FTP\&. See
162 \fBgit-update-server-info\fR(1)\&.
165 \-\-window=<n>, \-\-depth=<n>
166 .RS 4
167 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
168 \fB\-\-window\fR
169 to see if using delta compression saves space\&.
170 \fB\-\-depth\fR
171 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\&.
173 The default value for \-\-window is 10 and \-\-depth is 50\&. The maximum depth is 4095\&.
176 \-\-threads=<n>
177 .RS 4
178 This option is passed through to
179 \fBgit pack\-objects\fR\&.
182 \-\-window\-memory=<n>
183 .RS 4
184 This option provides an additional limit on top of
185 \fB\-\-window\fR; the window size will dynamically scale down so as to not take up more than
186 \fI<n>\fR
187 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"\&.
188 \fB\-\-window\-memory=0\fR
189 makes memory usage unlimited\&. The default is taken from the
190 \fBpack\&.windowMemory\fR
191 configuration variable\&. Note that the actual memory usage will be the limit multiplied by the number of threads used by
192 \fBgit-pack-objects\fR(1)\&.
195 \-\-max\-pack\-size=<n>
196 .RS 4
197 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
198 \fBpack\&.packSizeLimit\fR
199 is set\&. Note that this option may result in a larger and slower repository; see the discussion in
200 \fBpack\&.packSizeLimit\fR\&.
203 \-\-filter=<filter\-spec>
204 .RS 4
205 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\(cqs best to perform it in a bare repo and to use the
206 \fB\-a\fR
208 \fB\-d\fR
209 options along with this option\&. Also
210 \fB\-\-no\-write\-bitmap\-index\fR
211 (or the
212 \fBrepack\&.writebitmaps\fR
213 config option set to
214 \fBfalse\fR) should be used otherwise writing bitmap index will fail, as it supposes a single packfile containing all the objects\&. See
215 \fBgit-rev-list\fR(1)
216 for valid
217 \fB<filter\-spec>\fR
218 forms\&.
221 \-\-filter\-to=<dir>
222 .RS 4
223 Write the pack containing filtered out objects to the directory
224 \fB<dir>\fR\&. Only useful with
225 \fB\-\-filter\fR\&. This can be used for putting the pack on a separate object directory that is accessed through the Git alternates mechanism\&.
226 \fBWARNING:\fR
227 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 the
228 \fBobjects\fR
230 \fBobjects/info/alternates\fR
231 sections of
232 \fBgitrepository-layout\fR(5)\&.
235 \-b, \-\-write\-bitmap\-index
236 .RS 4
237 Write a reachability bitmap index as part of the repack\&. This only makes sense when used with
238 \fB\-a\fR,
239 \fB\-A\fR
241 \fB\-m\fR, as the bitmaps must be able to refer to all reachable objects\&. This option overrides the setting of
242 \fBrepack\&.writeBitmaps\fR\&. This option has no effect if multiple packfiles are created, unless writing a MIDX (in which case a multi\-pack bitmap is created)\&.
245 \-\-pack\-kept\-objects
246 .RS 4
247 Include objects in
248 \fB\&.keep\fR
249 files when repacking\&. Note that we still do not delete
250 \fB\&.keep\fR
251 packs after
252 \fBpack\-objects\fR
253 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
254 \fB\-b\fR
256 \fBrepack\&.writeBitmaps\fR, as it ensures that the bitmapped packfile has the necessary objects\&.
259 \-\-keep\-pack=<pack\-name>
260 .RS 4
261 Exclude the given pack from repacking\&. This is the equivalent of having
262 \fB\&.keep\fR
263 file on the pack\&.
264 \fB<pack\-name>\fR
265 is the pack file name without leading directory (e\&.g\&.
266 \fBpack\-123\&.pack\fR)\&. The option can be specified multiple times to keep multiple packs\&.
269 \-\-unpack\-unreachable=<when>
270 .RS 4
271 When loosening unreachable objects, do not bother loosening any objects older than
272 \fB<when>\fR\&. This can be used to optimize out the write of any objects that would be immediately pruned by a follow\-up
273 \fBgit prune\fR\&.
276 \-k, \-\-keep\-unreachable
277 .RS 4
278 When used with
279 \fB\-ad\fR, 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)\&.
282 \-i, \-\-delta\-islands
283 .RS 4
284 Pass the
285 \fB\-\-delta\-islands\fR
286 option to
287 \fBgit\-pack\-objects\fR, see
288 \fBgit-pack-objects\fR(1)\&.
291 \-g<factor>, \-\-geometric=<factor>
292 .RS 4
293 Arrange resulting pack structure so that each successive pack contains at least
294 \fB<factor>\fR
295 times the number of objects as the next\-largest pack\&.
297 \fBgit repack\fR
298 ensures this by determining a "cut" of packfiles that need to be repacked into one in order to ensure a geometric progression\&. It picks the smallest set of packfiles such that as many of the larger packfiles (by count of objects contained in that pack) may be left intact\&.
300 Unlike other repack modes, the set of objects to pack is determined uniquely by the set of packs being "rolled\-up"; in other words, the packs determined to need to be combined in order to restore a geometric progression\&.
302 Loose objects are implicitly included in this "roll\-up", without respect to their reachability\&. This is subject to change in the future\&.
304 When writing a multi\-pack bitmap,
305 \fBgit repack\fR
306 selects the largest resulting pack as the preferred pack for object selection by the MIDX (see
307 \fBgit-multi-pack-index\fR(1))\&.
310 \-m, \-\-write\-midx
311 .RS 4
312 Write a multi\-pack index (see
313 \fBgit-multi-pack-index\fR(1)) containing the non\-redundant packs\&.
315 .SH "CONFIGURATION"
317 Various configuration variables affect packing, see \fBgit-config\fR(1) (search for "pack" and "delta")\&.
319 By default, the command passes \fB\-\-delta\-base\-offset\fR option to \fIgit pack\-objects\fR; this typically results in slightly smaller packs, but the generated packs are incompatible with versions of Git older than version 1\&.4\&.4\&. If you need to share your repository with such ancient Git versions, either directly or via the dumb http protocol, then you need to set the configuration variable \fBrepack\&.UseDeltaBaseOffset\fR to "false" and repack\&. Access from old Git versions over the native protocol is unaffected by this option as the conversion is performed on the fly as needed in that case\&.
321 Delta compression is not used on objects larger than the \fBcore\&.bigFileThreshold\fR configuration variable and on files with the attribute \fBdelta\fR set to false\&.
322 .SH "SEE ALSO"
324 \fBgit-pack-objects\fR(1) \fBgit-prune-packed\fR(1)
325 .SH "GIT"
327 Part of the \fBgit\fR(1) suite