[PATCH] Improved "git add"
[git/gitweb.git] / Documentation / git-repack.txt
blobd8e3ad093339766a494de10ca4b99e4d1c23d286
1 git-repack(1)
2 =============
3 v0.99.5, August 2005
5 NAME
6 ----
7 git-repack - Script used to pack a repository from a collection of
8 objects into pack files.
11 SYNOPSIS
12 --------
13 'git-repack' [-a] [-d]
15 DESCRIPTION
16 -----------
18 This script is used to combine all objects that do not currently
19 reside in a "pack", into a pack.
21 A pack is a collection of objects, individually compressed, with
22 delta compression applied, stored in a single file, with an
23 associated index file.
25 Packs are used to reduce the load on mirror systems, backup
26 engines, disk storage, etc.
28 OPTIONS
29 -------
31 -a::
32         Instead of incrementally packing the unpacked objects,
33         pack everything available into a single pack.
34         Especially useful when packing a repository that is used
35         for a private development and there no need to worry
36         about people fetching via dumb protocols from it.  Use
37         with '-d'.
39 -d::
40         After packing, if the newly created packs make some
41         existing packs redundant, remove the redundant packs.
44 Author
45 ------
46 Written by Linus Torvalds <torvalds@osdl.org>
48 Documentation
49 --------------
50 Documentation by Ryan Anderson <ryan@michonline.com>
52 See-Also
53 --------
54 git-pack-objects(1) git-prune-packed(1)
56 GIT
57 ---
58 Part of the link:git.html[git] suite