Use sensible domain name (the DNS one) when guessing ident information
[git/dscho.git] / Documentation / git-prune-packed.txt
blob28a1500d39a503e8341ad9c39c1c1597b1653d7c
1 git-prune-packed(1)
2 =====================
4 NAME
5 ----
6 git-prune-packed - Program used to remove the extra object files that are now
7 residing in a pack file.
10 SYNOPSIS
11 --------
12 'git-prune-packed'
14 DESCRIPTION
15 -----------
16 This program search the GIT_OBJECT_DIR for all objects that currently exist in
17 a pack file as well as the independent object directories.
19 All such extra objects are removed.
21 A pack is a collection of objects, individually compressed, with delta
22 compression applied, stored in a single file, with an associated index file.
24 Packs are used to reduce the load on mirror systems, backup engines, disk storage, etc.
26 Author
27 ------
28 Written by Linus Torvalds <torvalds@osdl.org>
30 Documentation
31 --------------
32 Documentation by Ryan Anderson <ryan@michonline.com>
34 See-Also
35 --------
36 gitlink:git-pack-objects[1]
37 gitlink:git-repack[1]
39 GIT
40 ---
41 Part of the gitlink:git[7] suite