]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-prune.txt
qsort(): ptrdiff_t may be larger than int
[thirdparty/git.git] / Documentation / git-prune.txt
CommitLineData
215a7ad1
JH
1git-prune(1)
2============
2cf565c5
DG
3
4NAME
5----
215a7ad1 6git-prune - Prunes all unreachable objects from the object database
2cf565c5
DG
7
8
9SYNOPSIS
10--------
c82365dc 11'git-prune' [-n] [--] [<head>...]
2cf565c5
DG
12
13DESCRIPTION
14-----------
f85a4191 15
215a7ad1 16This runs `git-fsck-objects --unreachable` using the heads
f85a4191
JH
17specified on the command line (or `$GIT_DIR/refs/heads/\*` and
18`$GIT_DIR/refs/tags/\*` if none is specified), and prunes all
19unreachable objects from the object database. In addition, it
20prunes the unpacked objects that are also found in packs by
21running `git prune-packed`.
22
23OPTIONS
24-------
25
26-n::
27 Do not remove anything; just report what it would
28 remove.
2cf565c5 29
c82365dc
JH
30--::
31 Do not interpret any more arguments as options.
32
33<head>...::
34 Instead of keeping objects
35 reachable from any of our references, keep objects
36 reachable from only listed <head>s.
37+
38Note that the explicitly named <head>s are *not* appended to the
39default set of references, but they replace them. In general you
40would want to say `git prune $(git-rev-parse --all) extra1
41extra2` to keep chains of commits leading to extra1, extra2,
42... in addition to what are reachable from your own refs.
43Saying `git prune extra1 extra2` would *lose* objects reachable
44only from the usual refs, which is usually not what you want.
45
46
47EXAMPLE
48-------
49
50To prune objects not used by your repository and another that
51borrows from your repository via its
52`.git/objects/info/alternates`:
53
54------------
55$ git prune $(git-rev-parse --all) \
56 $(cd ../another && $(git-rev-parse --all))
57------------
2cf565c5
DG
58
59Author
60------
61Written by Linus Torvalds <torvalds@osdl.org>
62
63Documentation
64--------------
65Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
66
67GIT
68---
a7154e91 69Part of the gitlink:git[7] suite
2cf565c5 70