[PATCH] Fix silly pathspec bug in git-ls-files
[git/jrn.git] / Documentation / git-repack-script.txt
blob497d0dfe80738154b643e327f718977d42e2981a
1 git-repack-script(1)
2 =====================
3 v0.1, August 2005
5 NAME
6 ----
7 git-repack-script - Script used to pack a repository from a collection of
8 objects into pack files.
11 SYNOPSIS
12 --------
13 'git-repack-script'
15 DESCRIPTION
16 -----------
17 This script is used to combine all objects that do not currently reside in a
18 "pack", into a pack.
20 A pack is a collection of objects, individually compressed, with delta
21 compression applied, stored in a single file, with an associated index file.
23 Packs are used to reduce the load on mirror systems, backup engines, disk storage, etc.
25 Author
26 ------
27 Written by Linus Torvalds <torvalds@osdl.org>
29 Documentation
30 --------------
31 Documentation by Ryan Anderson <ryan@michonline.com>
33 See-Also
34 --------
35 git-pack-objects(1) git-prune-packed(1)
37 GIT
38 ---
39 Part of the link:git.html[git] suite