6 git-repack - Script used to pack a repository from a collection of
7 objects into pack files.
12 'git-repack' [-a] [-d] [-f] [-l] [-n] [-q] [--window=N] [--depth=N]
17 This script is used to combine all objects that do not currently
18 reside in a "pack", into a pack.
20 A pack is a collection of objects, individually compressed, with
21 delta compression applied, stored in a single file, with an
22 associated index file.
24 Packs are used to reduce the load on mirror systems, backup
25 engines, disk storage, etc.
31 Instead of incrementally packing the unpacked objects,
32 pack everything available into a single pack.
33 Especially useful when packing a repository that is used
34 for a private development and there no need to worry
35 about people fetching via dumb protocols from it. Use
39 After packing, if the newly created packs make some
40 existing packs redundant, remove the redundant packs.
41 Also runs gitlink:git-prune-packed[1].
44 Pass the `--local` option to `git pack-objects`, see
45 gitlink:git-pack-objects[1].
48 Pass the `--no-reuse-delta` option to `git pack-objects`, see
49 gitlink:git-pack-objects[1].
52 Pass the `-q` option to `git pack-objects`, see
53 gitlink:git-pack-objects[1].
56 Do not update the server information with
57 `git update-server-info`.
59 --window=[N], --depth=[N]::
60 These two options affects how the objects contained in the pack are
61 stored using delta compression. The objects are first internally
62 sorted by type, size and optionally names and compared against the
63 other objects within `--window` to see if using delta compression saves
64 space. `--depth` limits the maximum delta depth; making it too deep
65 affects the performance on the unpacker side, because delta data needs
66 to be applied that many times to get to the necessary object.
71 Written by Linus Torvalds <torvalds@osdl.org>
75 Documentation by Ryan Anderson <ryan@michonline.com>
79 gitlink:git-pack-objects[1]
80 gitlink:git-prune-packed[1]
84 Part of the gitlink:git[7] suite