Autogenerated manpages for v2.40.1-423-g2807b
[git-manpages.git] / man1 / git-repack.1
blobfafba22a04a95fd54c7ff95702a1a6e3aa8e00e3
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: 04/25/2023
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.40.1.423.g2807bd2c10
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REPACK" "1" "04/25/2023" "Git 2\&.40\&.1\&.423\&.g2807bd" "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 \-\-expire\-to=<dir>
102 .RS 4
103 Write a cruft pack containing pruned objects (if any) to the directory
104 \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
105 \fB\-\-cruft \-d\fR\&.
109 .RS 4
110 Pass the
111 \fB\-\-local\fR
112 option to
113 \fIgit pack\-objects\fR\&. See
114 \fBgit-pack-objects\fR(1)\&.
118 .RS 4
119 Pass the
120 \fB\-\-no\-reuse\-delta\fR
121 option to
122 \fBgit\-pack\-objects\fR, see
123 \fBgit-pack-objects\fR(1)\&.
127 .RS 4
128 Pass the
129 \fB\-\-no\-reuse\-object\fR
130 option to
131 \fBgit\-pack\-objects\fR, see
132 \fBgit-pack-objects\fR(1)\&.
135 \-q, \-\-quiet
136 .RS 4
137 Show no progress over the standard error stream and pass the
138 \fB\-q\fR
139 option to
140 \fIgit pack\-objects\fR\&. See
141 \fBgit-pack-objects\fR(1)\&.
145 .RS 4
146 Do not update the server information with
147 \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
148 \fBgit-update-server-info\fR(1)\&.
151 \-\-window=<n>, \-\-depth=<n>
152 .RS 4
153 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
154 \fB\-\-window\fR
155 to see if using delta compression saves space\&.
156 \fB\-\-depth\fR
157 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\&.
159 The default value for \-\-window is 10 and \-\-depth is 50\&. The maximum depth is 4095\&.
162 \-\-threads=<n>
163 .RS 4
164 This option is passed through to
165 \fBgit pack\-objects\fR\&.
168 \-\-window\-memory=<n>
169 .RS 4
170 This option provides an additional limit on top of
171 \fB\-\-window\fR; the window size will dynamically scale down so as to not take up more than
172 \fI<n>\fR
173 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"\&.
174 \fB\-\-window\-memory=0\fR
175 makes memory usage unlimited\&. The default is taken from the
176 \fBpack\&.windowMemory\fR
177 configuration variable\&. Note that the actual memory usage will be the limit multiplied by the number of threads used by
178 \fBgit-pack-objects\fR(1)\&.
181 \-\-max\-pack\-size=<n>
182 .RS 4
183 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
184 \fBpack\&.packSizeLimit\fR
185 is set\&. Note that this option may result in a larger and slower repository; see the discussion in
186 \fBpack\&.packSizeLimit\fR\&.
189 \-b, \-\-write\-bitmap\-index
190 .RS 4
191 Write a reachability bitmap index as part of the repack\&. This only makes sense when used with
192 \fB\-a\fR,
193 \fB\-A\fR
195 \fB\-m\fR, as the bitmaps must be able to refer to all reachable objects\&. This option overrides the setting of
196 \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)\&.
199 \-\-pack\-kept\-objects
200 .RS 4
201 Include objects in
202 \fB\&.keep\fR
203 files when repacking\&. Note that we still do not delete
204 \fB\&.keep\fR
205 packs after
206 \fBpack\-objects\fR
207 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
208 \fB\-b\fR
210 \fBrepack\&.writeBitmaps\fR, as it ensures that the bitmapped packfile has the necessary objects\&.
213 \-\-keep\-pack=<pack\-name>
214 .RS 4
215 Exclude the given pack from repacking\&. This is the equivalent of having
216 \fB\&.keep\fR
217 file on the pack\&.
218 \fB<pack\-name>\fR
219 is the pack file name without leading directory (e\&.g\&.
220 \fBpack\-123\&.pack\fR)\&. The option could be specified multiple times to keep multiple packs\&.
223 \-\-unpack\-unreachable=<when>
224 .RS 4
225 When loosening unreachable objects, do not bother loosening any objects older than
226 \fB<when>\fR\&. This can be used to optimize out the write of any objects that would be immediately pruned by a follow\-up
227 \fBgit prune\fR\&.
230 \-k, \-\-keep\-unreachable
231 .RS 4
232 When used with
233 \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)\&.
236 \-i, \-\-delta\-islands
237 .RS 4
238 Pass the
239 \fB\-\-delta\-islands\fR
240 option to
241 \fBgit\-pack\-objects\fR, see
242 \fBgit-pack-objects\fR(1)\&.
245 \-g=<factor>, \-\-geometric=<factor>
246 .RS 4
247 Arrange resulting pack structure so that each successive pack contains at least
248 \fB<factor>\fR
249 times the number of objects as the next\-largest pack\&.
251 \fBgit repack\fR
252 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\&.
254 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\&.
256 When
257 \fB\-\-unpacked\fR
258 is specified, loose objects are implicitly included in this "roll\-up", without respect to their reachability\&. This is subject to change in the future\&. This option (implying a drastically different repack mode) is not guaranteed to work with all other combinations of option to
259 \fBgit repack\fR\&.
261 When writing a multi\-pack bitmap,
262 \fBgit repack\fR
263 selects the largest resulting pack as the preferred pack for object selection by the MIDX (see
264 \fBgit-multi-pack-index\fR(1))\&.
267 \-m, \-\-write\-midx
268 .RS 4
269 Write a multi\-pack index (see
270 \fBgit-multi-pack-index\fR(1)) containing the non\-redundant packs\&.
272 .SH "CONFIGURATION"
274 Various configuration variables affect packing, see \fBgit-config\fR(1) (search for "pack" and "delta")\&.
276 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\&.
278 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\&.
279 .SH "SEE ALSO"
281 \fBgit-pack-objects\fR(1) \fBgit-prune-packed\fR(1)
282 .SH "GIT"
284 Part of the \fBgit\fR(1) suite