blob: 8973510a41c1e31319dad85d4987b3f0dfd7d8ca [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-pack-objects(1)
2===================
3
4NAME
5----
Junio C Hamano01078922006-03-10 00:31:476git-pack-objects - Create a packed archive of objects
Junio C Hamano1a4e8412005-12-27 08:17:237
8
9SYNOPSIS
10--------
Junio C Hamano7e9f6b72006-02-22 10:44:5511[verse]
Junio C Hamano5706e0b2009-11-24 10:54:1612'git pack-objects' [-q | --progress | --all-progress] [--all-progress-implied]
13[--no-reuse-delta] [--delta-base-offset] [--non-empty]
Junio C Hamanod2179ef2010-10-22 04:12:1714[--local] [--incremental] [--window=<n>] [--depth=<n>]
15[--revs [--unpacked | --all]] [--stdout | base-name]
Junio C Hamano629edff2015-01-12 23:46:0216[--shallow] [--keep-true-parents] < object-list
Junio C Hamano1a4e8412005-12-27 08:17:2317
18
19DESCRIPTION
20-----------
21Reads list of objects from the standard input, and writes a packed
22archive with specified base-name, or to the standard output.
23
Junio C Hamano4fdccb22010-02-19 09:58:1424A packed archive is an efficient way to transfer a set of objects
25between two repositories as well as an access efficient archival
26format. In a packed archive, an object is either stored as a
27compressed whole or as a difference from some other object.
28The latter is often called a delta.
Junio C Hamano1a4e8412005-12-27 08:17:2329
Junio C Hamano4fdccb22010-02-19 09:58:1430The packed archive format (.pack) is designed to be self-contained
31so that it can be unpacked without any further information. Therefore,
32each object that a delta depends upon must be present within the pack.
33
34A pack index file (.idx) is generated for fast, random access to the
35objects in the pack. Placing both the index file (.idx) and the packed
36archive (.pack) in the pack/ subdirectory of $GIT_OBJECT_DIRECTORY (or
Junio C Hamano9810d632007-09-24 01:05:3437any of the directories on $GIT_ALTERNATE_OBJECT_DIRECTORIES)
Junio C Hamano076ffcc2013-02-06 05:13:2138enables Git to read from the pack archive.
Junio C Hamano9810d632007-09-24 01:05:3439
Junio C Hamano1aa40d22010-01-21 17:46:4340The 'git unpack-objects' command can read the packed archive and
Junio C Hamano1a4e8412005-12-27 08:17:2341expand the objects contained in the pack into "one-file
42one-object" format; this is typically done by the smart-pull
43commands when a pack is created on-the-fly for efficient network
44transport by their peers.
45
Junio C Hamano1a4e8412005-12-27 08:17:2346
47OPTIONS
48-------
49base-name::
50Write into a pair of files (.pack and .idx), using
51<base-name> to determine the name of the created file.
52When this option is used, the two files are written in
Junio C Hamanoe3f080d2013-04-22 02:27:1353<base-name>-<SHA-1>.{pack,idx} files. <SHA-1> is a hash
Junio C Hamanob1acf022013-12-28 00:33:1654based on the pack content and is written to the standard
Junio C Hamano1a4e8412005-12-27 08:17:2355output of the command.
56
57--stdout::
Junio C Hamano235a91e2006-01-07 01:13:5858Write the pack contents (what would have been written to
Junio C Hamano1a4e8412005-12-27 08:17:2359.pack file) out to the standard output.
60
Junio C Hamano3eb513f2006-09-18 02:47:1661--revs::
62Read the revision arguments from the standard input, instead of
63individual object names. The revision arguments are processed
Junio C Hamano1aa40d22010-01-21 17:46:4364the same way as 'git rev-list' with the `--objects` flag
Junio C Hamano3eb513f2006-09-18 02:47:1665uses its `commit` arguments to build the list of objects it
66outputs. The objects on the resulting list are packed.
Junio C Hamano7c59c672014-03-21 22:08:3167Besides revisions, `--not` or `--shallow <SHA-1>` lines are
68also accepted.
Junio C Hamano3eb513f2006-09-18 02:47:1669
70--unpacked::
71This implies `--revs`. When processing the list of
72revision arguments read from the standard input, limit
73the objects packed to those that are not already packed.
74
75--all::
76This implies `--revs`. In addition to the list of
77revision arguments read from the standard input, pretend
Junio C Hamano4fdccb22010-02-19 09:58:1478as if all refs under `refs/` are specified to be
Junio C Hamano3eb513f2006-09-18 02:47:1679included.
80
Junio C Hamanobb343172008-03-09 10:39:0981--include-tag::
82Include unasked-for annotated tags if the object they
83reference was included in the resulting packfile. This
Junio C Hamano076ffcc2013-02-06 05:13:2184can be useful to send new tags to native Git clients.
Junio C Hamanobb343172008-03-09 10:39:0985
Junio C Hamanod2179ef2010-10-22 04:12:1786--window=<n>::
87--depth=<n>::
Junio C Hamano93567a62006-10-08 08:47:5688These two options affect how the objects contained in
Junio C Hamano1a4e8412005-12-27 08:17:2389the pack are stored using delta compression. The
90objects are first internally sorted by type, size and
91optionally names and compared against the other objects
92within --window to see if using delta compression saves
93space. --depth limits the maximum delta depth; making
94it too deep affects the performance on the unpacker
95side, because delta data needs to be applied that many
96times to get to the necessary object.
Junio C Hamano91d44c52007-05-09 07:16:0797The default value for --window is 10 and --depth is 50.
Junio C Hamano1a4e8412005-12-27 08:17:2398
Junio C Hamanod2179ef2010-10-22 04:12:1799--window-memory=<n>::
Junio C Hamano235d53f2007-07-13 00:25:15100This option provides an additional limit on top of `--window`;
101the window size will dynamically scale down so as to not take
Junio C Hamanod2179ef2010-10-22 04:12:17102up more than '<n>' bytes in memory. This is useful in
Junio C Hamano235d53f2007-07-13 00:25:15103repositories with a mix of large and small objects to not run
104out of memory with a large window, but still be able to take
105advantage of the large window for the smaller objects. The
106size can be suffixed with "k", "m", or "g".
Junio C Hamano0f1d17c2016-08-12 19:42:26107`--window-memory=0` makes memory usage unlimited. The default
108is taken from the `pack.windowMemory` configuration variable.
Junio C Hamano235d53f2007-07-13 00:25:15109
Junio C Hamanod2179ef2010-10-22 04:12:17110--max-pack-size=<n>::
Junio C Hamano4d979582010-02-04 06:27:29111Maximum size of each output pack file. The size can be suffixed with
112"k", "m", or "g". The minimum size allowed is limited to 1 MiB.
Junio C Hamano74fd0fc2016-05-10 21:23:56113If specified, multiple packfiles may be created, which also
114prevents the creation of a bitmap index.
Junio C Hamano49dccaf2008-02-10 10:48:01115The default is unlimited, unless the config variable
116`pack.packSizeLimit` is set.
Junio C Hamano591dc6a2007-05-29 09:18:19117
Junio C Hamano28363492008-11-14 08:26:31118--honor-pack-keep::
119This flag causes an object already in a local pack that
Junio C Hamano3eee5872011-04-13 22:40:23120has a .keep file to be ignored, even if it would have
Junio C Hamano636c8b22010-03-07 22:25:17121otherwise been packed.
Junio C Hamano28363492008-11-14 08:26:31122
Junio C Hamano1a4e8412005-12-27 08:17:23123--incremental::
Junio C Hamano636c8b22010-03-07 22:25:17124This flag causes an object already in a pack to be ignored
125even if it would have otherwise been packed.
Junio C Hamano1a4e8412005-12-27 08:17:23126
127--local::
Junio C Hamano636c8b22010-03-07 22:25:17128This flag causes an object that is borrowed from an alternate
129object store to be ignored even if it would have otherwise been
130packed.
Junio C Hamano1a4e8412005-12-27 08:17:23131
132--non-empty::
133 Only create a packed archive if it would contain at
134 least one object.
135
Junio C Hamano0d3c8152006-11-08 01:33:41136--progress::
137Progress status is reported on the standard error stream
138by default when it is attached to a terminal, unless -q
139is specified. This flag forces progress status even if
140the standard error stream is not directed to a terminal.
141
142--all-progress::
143When --stdout is specified then progress report is
Junio C Hamano5706e0b2009-11-24 10:54:16144displayed during the object count and compression phases
Junio C Hamano0d3c8152006-11-08 01:33:41145but inhibited during the write-out phase. The reason is
146that in some cases the output stream is directly linked
147to another command which may wish to display progress
148status of its own as it processes incoming pack data.
149This flag is like --progress except that it forces progress
150report for the write-out phase as well even if --stdout is
151used.
152
Junio C Hamano5706e0b2009-11-24 10:54:16153--all-progress-implied::
154This is used to imply --all-progress whenever progress display
155is activated. Unlike --all-progress this flag doesn't actually
156force any progress display by itself.
157
Junio C Hamano7e9f6b72006-02-22 10:44:55158-q::
159This flag makes the command not to report its progress
160on the standard error stream.
161
162--no-reuse-delta::
163When creating a packed archive in a repository that
164has existing packs, the command reuses existing deltas.
165This sometimes results in a slightly suboptimal pack.
166This flag tells the command not to reuse existing deltas
167but compute them from scratch.
168
Junio C Hamanof2ce2972007-05-20 19:12:09169--no-reuse-object::
170This flag tells the command not to reuse existing object data at all,
171including non deltified object, forcing recompression of everything.
172This implies --no-reuse-delta. Useful only in the obscure case where
173wholesale enforcement of a different compression level on the
174packed data is desired.
175
Junio C Hamanod2179ef2010-10-22 04:12:17176--compression=<n>::
Junio C Hamanof2ce2972007-05-20 19:12:09177Specifies compression level for newly-compressed data in the
178generated pack. If not specified, pack compression level is
179determined first by pack.compression, then by core.compression,
180and defaults to -1, the zlib default, if neither is set.
Junio C Hamanofce7c7e2008-07-02 03:06:38181Add --no-reuse-object if you want to force a uniform compression
Junio C Hamanoef4c2d12007-09-10 08:11:27182level on all data no matter the source.
Junio C Hamanof2ce2972007-05-20 19:12:09183
Junio C Hamano4fdccb22010-02-19 09:58:14184--thin::
185Create a "thin" pack by omitting the common objects between a
186sender and a receiver in order to reduce network transfer. This
187option only makes sense in conjunction with --stdout.
188+
189Note: A thin pack violates the packed archive format by omitting
Junio C Hamano076ffcc2013-02-06 05:13:21190required objects and is thus unusable by Git without making it
Junio C Hamano4fdccb22010-02-19 09:58:14191self-contained. Use `git index-pack --fix-thin`
192(see linkgit:git-index-pack[1]) to restore the self-contained property.
193
Junio C Hamano629edff2015-01-12 23:46:02194--shallow::
195Optimize a pack that will be provided to a client with a shallow
Junio C Hamano1dbca522015-05-22 20:48:55196repository. This option, combined with --thin, can result in a
Junio C Hamano629edff2015-01-12 23:46:02197smaller pack at the cost of speed.
198
Junio C Hamano77b7e902006-10-23 07:18:50199--delta-base-offset::
Junio C Hamano059bca52011-03-30 22:47:46200A packed archive can express the base object of a delta as
201either a 20-byte object name or as an offset in the
Junio C Hamano076ffcc2013-02-06 05:13:21202stream, but ancient versions of Git don't understand the
Junio C Hamano1aa40d22010-01-21 17:46:43203latter. By default, 'git pack-objects' only uses the
Junio C Hamano77b7e902006-10-23 07:18:50204former format for better compatibility. This option
205allows the command to use the latter format for
206compactness. Depending on the average delta chain
207length, this option typically shrinks the resulting
208packfile by 3-5 per-cent.
Junio C Hamanoa7e3c512011-04-03 08:34:11209+
210Note: Porcelain commands such as `git gc` (see linkgit:git-gc[1]),
211`git repack` (see linkgit:git-repack[1]) pass this option by default
Junio C Hamano076ffcc2013-02-06 05:13:21212in modern Git when they put objects in your repository into pack files.
Junio C Hamanoa7e3c512011-04-03 08:34:11213So does `git bundle` (see linkgit:git-bundle[1]) when it creates a bundle.
Junio C Hamano77b7e902006-10-23 07:18:50214
Junio C Hamano58155b42007-09-15 07:46:14215--threads=<n>::
216Specifies the number of threads to spawn when searching for best
217delta matches. This requires that pack-objects be compiled with
218pthreads otherwise this option is ignored with a warning.
219This is meant to reduce packing time on multiprocessor machines.
220The required amount of memory for the delta search window is
221however multiplied by the number of threads.
Junio C Hamano076ffcc2013-02-06 05:13:21222Specifying 0 will cause Git to auto-detect the number of CPU's
Junio C Hamano24bc09a2008-02-28 00:27:44223and set the number of threads accordingly.
Junio C Hamano58155b42007-09-15 07:46:14224
Junio C Hamanoe90436a2007-04-22 07:22:13225--index-version=<version>[,<offset>]::
226This is intended to be used by the test suite only. It allows
227to force the version for the generated pack index, and to force
22864-bit index entries on objects located above the given offset.
229
Junio C Hamanod594fb62009-07-25 09:09:54230--keep-true-parents::
231With this option, parents that are hidden by grafts are packed
232nevertheless.
233
Junio C Hamano9049d912008-05-29 02:09:50234SEE ALSO
Junio C Hamano1a4e8412005-12-27 08:17:23235--------
Junio C Hamano35738e82008-01-07 07:55:46236linkgit:git-rev-list[1]
237linkgit:git-repack[1]
238linkgit:git-prune-packed[1]
Junio C Hamano1a4e8412005-12-27 08:17:23239
240GIT
241---
Junio C Hamanof7c042d2008-06-06 22:50:53242Part of the linkgit:git[1] suite