1
0
mirror of https://github.com/git/git.git synced 2024-10-05 15:01:39 +02:00
git/Documentation/git-repack-script.txt
Junio C Hamano e31bb3bb93 [PATCH] Add documentation for git repack and git-prune-packed.
[jc: the patch forgot to update the main git.txt documentation,
making all these new documentation practically no-op, so I added
a minimum attempt linking them from there.]

Signed-off-by: Ryan Anderson <ryan@michonline.com>
2005-08-15 15:48:47 -07:00

41 lines
822 B
Plaintext

git-repack-script(1)
=====================
v0.1, August 2005
NAME
----
git-repack-script - Script used to pack a repository from a collection of
objects into pack files.
SYNOPSIS
--------
'git-repack-script'
DESCRIPTION
-----------
This script is used to combine all objects that do not currently reside in a
"pack", into a pack.
A pack is a collection of objects, individually compressed, with delta
compression applied, stored in a single file, with an associated index file.
Packs are used to reduce the load on mirror systems, backup engines, disk storage, etc.
Author
------
Written by Linus Torvalds <torvalds@osdl.org>
Documentation
--------------
Documentation by Ryan Anderson <ryan@michonline.com>
See-Also
--------
git-pack-objects(1) git-prune-packed(1)
GIT
---
Part of the link:git.html[git] suite