Autogenerated manpages for v2.45.2-436-gcd77e
[git-manpages.git] / man1 / git-repack.1
blob69f84d0db58d21d3a5178e15a6e317894bd44d1a
1 '\" t
2 .\"     Title: git-repack
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-06-06
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.45.2.436.gcd77e87115
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REPACK" "1" "2024\-06\-06" "Git 2\&.45\&.2\&.436\&.gcd77e8" "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 .sp
38 .SH "DESCRIPTION"
39 .sp
40 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\&.
41 .sp
42 A pack is a collection of objects, individually compressed, with delta compression applied, stored in a single file, with an associated index file\&.
43 .sp
44 Packs are used to reduce the load on mirror systems, backup engines, disk storage, etc\&.
45 .SH "OPTIONS"
46 .PP
47 \-a
48 .RS 4
49 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
50 \fB\-d\fR\&. This will clean up the objects that
51 \fBgit prune\fR
52 leaves behind, but
53 \fBgit fsck \-\-full \-\-dangling\fR
54 shows as dangling\&.
55 .sp
56 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\&.
57 .sp
58 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\&.
59 .RE
60 .PP
61 \-A
62 .RS 4
63 Same as
64 \fB\-a\fR, unless
65 \fB\-d\fR
66 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
67 \fIgit gc\fR
68 invocation\&. See
69 \fBgit-gc\fR(1)\&.
70 .RE
71 .PP
72 \-d
73 .RS 4
74 After packing, if the newly created packs make some existing packs redundant, remove the redundant packs\&. Also run
75 \fIgit prune\-packed\fR
76 to remove redundant loose object files\&.
77 .RE
78 .PP
79 \-\-cruft
80 .RS 4
81 Same as
82 \fB\-a\fR, unless
83 \fB\-d\fR
84 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
85 \fBgit gc\fR
86 invocation (see
87 \fBgit-gc\fR(1))\&. Incompatible with
88 \fB\-k\fR\&.
89 .RE
90 .PP
91 \-\-cruft\-expiration=<approxidate>
92 .RS 4
93 Expire unreachable objects older than
94 \fB<approxidate>\fR
95 immediately instead of waiting for the next
96 \fBgit gc\fR
97 invocation\&. Only useful with
98 \fB\-\-cruft \-d\fR\&.
99 .RE
101 \-\-max\-cruft\-size=<n>
102 .RS 4
103 Repack cruft objects into packs as large as
104 \fB<n>\fR
105 bytes before creating new packs\&. As long as there are enough cruft packs smaller than
106 \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
107 \fB<n>\fR
108 will not be modified\&. When the new cruft pack is larger than
109 \fB<n>\fR
110 bytes, it will be split into multiple packs, all of which are guaranteed to be at most
111 \fB<n>\fR
112 bytes in size\&. Only useful with
113 \fB\-\-cruft \-d\fR\&.
116 \-\-expire\-to=<dir>
117 .RS 4
118 Write a cruft pack containing pruned objects (if any) to the directory
119 \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
120 \fB\-\-cruft \-d\fR\&.
124 .RS 4
125 Pass the
126 \fB\-\-local\fR
127 option to
128 \fIgit pack\-objects\fR\&. See
129 \fBgit-pack-objects\fR(1)\&.
133 .RS 4
134 Pass the
135 \fB\-\-no\-reuse\-delta\fR
136 option to
137 \fBgit\-pack\-objects\fR, see
138 \fBgit-pack-objects\fR(1)\&.
142 .RS 4
143 Pass the
144 \fB\-\-no\-reuse\-object\fR
145 option to
146 \fBgit\-pack\-objects\fR, see
147 \fBgit-pack-objects\fR(1)\&.
150 \-q, \-\-quiet
151 .RS 4
152 Show no progress over the standard error stream and pass the
153 \fB\-q\fR
154 option to
155 \fIgit pack\-objects\fR\&. See
156 \fBgit-pack-objects\fR(1)\&.
160 .RS 4
161 Do not update the server information with
162 \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
163 \fBgit-update-server-info\fR(1)\&.
166 \-\-window=<n>, \-\-depth=<n>
167 .RS 4
168 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
169 \fB\-\-window\fR
170 to see if using delta compression saves space\&.
171 \fB\-\-depth\fR
172 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\&.
174 The default value for \-\-window is 10 and \-\-depth is 50\&. The maximum depth is 4095\&.
177 \-\-threads=<n>
178 .RS 4
179 This option is passed through to
180 \fBgit pack\-objects\fR\&.
183 \-\-window\-memory=<n>
184 .RS 4
185 This option provides an additional limit on top of
186 \fB\-\-window\fR; the window size will dynamically scale down so as to not take up more than
187 \fI<n>\fR
188 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"\&.
189 \fB\-\-window\-memory=0\fR
190 makes memory usage unlimited\&. The default is taken from the
191 \fBpack\&.windowMemory\fR
192 configuration variable\&. Note that the actual memory usage will be the limit multiplied by the number of threads used by
193 \fBgit-pack-objects\fR(1)\&.
196 \-\-max\-pack\-size=<n>
197 .RS 4
198 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
199 \fBpack\&.packSizeLimit\fR
200 is set\&. Note that this option may result in a larger and slower repository; see the discussion in
201 \fBpack\&.packSizeLimit\fR\&.
204 \-\-filter=<filter\-spec>
205 .RS 4
206 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
207 \fB\-a\fR
209 \fB\-d\fR
210 options along with this option\&. Also
211 \fB\-\-no\-write\-bitmap\-index\fR
212 (or the
213 \fBrepack\&.writebitmaps\fR
214 config option set to
215 \fBfalse\fR) should be used otherwise writing bitmap index will fail, as it supposes a single packfile containing all the objects\&. See
216 \fBgit-rev-list\fR(1)
217 for valid
218 \fB<filter\-spec>\fR
219 forms\&.
222 \-\-filter\-to=<dir>
223 .RS 4
224 Write the pack containing filtered out objects to the directory
225 \fB<dir>\fR\&. Only useful with
226 \fB\-\-filter\fR\&. This can be used for putting the pack on a separate object directory that is accessed through the Git alternates mechanism\&.
227 \fBWARNING:\fR
228 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
229 \fBobjects\fR
231 \fBobjects/info/alternates\fR
232 sections of
233 \fBgitrepository-layout\fR(5)\&.
236 \-b, \-\-write\-bitmap\-index
237 .RS 4
238 Write a reachability bitmap index as part of the repack\&. This only makes sense when used with
239 \fB\-a\fR,
240 \fB\-A\fR
242 \fB\-m\fR, as the bitmaps must be able to refer to all reachable objects\&. This option overrides the setting of
243 \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)\&.
246 \-\-pack\-kept\-objects
247 .RS 4
248 Include objects in
249 \fB\&.keep\fR
250 files when repacking\&. Note that we still do not delete
251 \fB\&.keep\fR
252 packs after
253 \fBpack\-objects\fR
254 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
255 \fB\-b\fR
257 \fBrepack\&.writeBitmaps\fR, as it ensures that the bitmapped packfile has the necessary objects\&.
260 \-\-keep\-pack=<pack\-name>
261 .RS 4
262 Exclude the given pack from repacking\&. This is the equivalent of having
263 \fB\&.keep\fR
264 file on the pack\&.
265 \fB<pack\-name>\fR
266 is the pack file name without leading directory (e\&.g\&.
267 \fBpack\-123\&.pack\fR)\&. The option can be specified multiple times to keep multiple packs\&.
270 \-\-unpack\-unreachable=<when>
271 .RS 4
272 When loosening unreachable objects, do not bother loosening any objects older than
273 \fB<when>\fR\&. This can be used to optimize out the write of any objects that would be immediately pruned by a follow\-up
274 \fBgit prune\fR\&.
277 \-k, \-\-keep\-unreachable
278 .RS 4
279 When used with
280 \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)\&.
283 \-i, \-\-delta\-islands
284 .RS 4
285 Pass the
286 \fB\-\-delta\-islands\fR
287 option to
288 \fBgit\-pack\-objects\fR, see
289 \fBgit-pack-objects\fR(1)\&.
292 \-g<factor>, \-\-geometric=<factor>
293 .RS 4
294 Arrange resulting pack structure so that each successive pack contains at least
295 \fB<factor>\fR
296 times the number of objects as the next\-largest pack\&.
298 \fBgit repack\fR
299 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\&.
301 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\&.
303 Loose objects are implicitly included in this "roll\-up", without respect to their reachability\&. This is subject to change in the future\&.
305 When writing a multi\-pack bitmap,
306 \fBgit repack\fR
307 selects the largest resulting pack as the preferred pack for object selection by the MIDX (see
308 \fBgit-multi-pack-index\fR(1))\&.
311 \-m, \-\-write\-midx
312 .RS 4
313 Write a multi\-pack index (see
314 \fBgit-multi-pack-index\fR(1)) containing the non\-redundant packs\&.
316 .SH "CONFIGURATION"
318 Various configuration variables affect packing, see \fBgit-config\fR(1) (search for "pack" and "delta")\&.
320 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\&.
322 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\&.
323 .SH "SEE ALSO"
325 \fBgit-pack-objects\fR(1) \fBgit-prune-packed\fR(1)
326 .SH "GIT"
328 Part of the \fBgit\fR(1) suite