Autogenerated manpages for v2.35.1-225-ge2ac9
[git-manpages.git] / man1 / git-pack-redundant.1
blobf24b03e30faae8da948bd56b66018d0dc1d2fe37
1 '\" t
2 .\"     Title: git-pack-redundant
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 02/17/2022
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.35.1.225.ge2ac9141e6
8 .\"  Language: English
9 .\"
10 .TH "GIT\-PACK\-REDUNDANT" "1" "02/17/2022" "Git 2\&.35\&.1\&.225\&.ge2ac91" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-pack-redundant \- Find redundant pack files
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit pack\-redundant\fR [ \-\-verbose ] [ \-\-alt\-odb ] ( \-\-all | <pack\-filename>\&... )
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 This program computes which packs in your repository are redundant\&. The output is suitable for piping to \fBxargs rm\fR if you are in the root of the repository\&.
41 .sp
42 \fIgit pack\-redundant\fR accepts a list of objects on standard input\&. Any objects given will be ignored when checking which packs are required\&. This makes the following command useful when wanting to remove packs which contain unreachable objects\&.
43 .sp
44 git fsck \-\-full \-\-unreachable | cut \-d \(aq \(aq \-f3 | \e git pack\-redundant \-\-all | xargs rm
45 .SH "OPTIONS"
46 .PP
47 \-\-all
48 .RS 4
49 Processes all packs\&. Any filenames on the command line are ignored\&.
50 .RE
51 .PP
52 \-\-alt\-odb
53 .RS 4
54 Don\(cqt require objects present in packs from alternate object directories to be present in local packs\&.
55 .RE
56 .PP
57 \-\-verbose
58 .RS 4
59 Outputs some statistics to stderr\&. Has a small performance penalty\&.
60 .RE
61 .SH "SEE ALSO"
62 .sp
63 \fBgit-pack-objects\fR(1) \fBgit-repack\fR(1) \fBgit-prune-packed\fR(1)
64 .SH "GIT"
65 .sp
66 Part of the \fBgit\fR(1) suite