[PATCH] Documentation: Update all files to use the new gitlink: macro
[git.git] / Documentation / git-prune.txt
1 git-prune(1)
2 ============
3 v0.99.5, Aug 2005
4
5 NAME
6 ----
7 git-prune - Prunes all unreachable objects from the object database
8
9
10 SYNOPSIS
11 --------
12 'git-prune' [-n]
13
14 DESCRIPTION
15 -----------
16
17 This runs `git-fsck-objects --unreachable` using the heads
18 specified on the command line (or `$GIT_DIR/refs/heads/\*` and
19 `$GIT_DIR/refs/tags/\*` if none is specified), and prunes all
20 unreachable objects from the object database.  In addition, it
21 prunes the unpacked objects that are also found in packs by
22 running `git prune-packed`.
23
24 OPTIONS
25 -------
26
27 -n::
28         Do not remove anything; just report what it would
29         remove.
30
31
32 Author
33 ------
34 Written by Linus Torvalds <torvalds@osdl.org>
35
36 Documentation
37 --------------
38 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
39
40 GIT
41 ---
42 Part of the gitlink:git[7] suite
43