diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2008-09-29 18:49:52 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-09-30 14:30:00 -0700 |
commit | b35ddf41eeee1465c9c5a34357664d22b929b79a (patch) | |
tree | 4ebf485a4e4ca606423ae77ed5d88b46e3042528 /Documentation/git-prune.txt | |
parent | 8b745e3ffdabe6ef110dc064af46b0ba993941e0 (diff) | |
download | git-b35ddf41eeee1465c9c5a34357664d22b929b79a.tar.gz |
make prune report removed objects on -v
This adds an option "-v" which makes "git prune" more verbose:
It outputs all removed objects while removing them.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'Documentation/git-prune.txt')
-rw-r--r-- | Documentation/git-prune.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/git-prune.txt b/Documentation/git-prune.txt index 54f1dab38d..da6055d4b8 100644 --- a/Documentation/git-prune.txt +++ b/Documentation/git-prune.txt @@ -8,7 +8,7 @@ git-prune - Prune all unreachable objects from the object database SYNOPSIS -------- -'git-prune' [-n] [--expire <expire>] [--] [<head>...] +'git-prune' [-n] [-v] [--expire <expire>] [--] [<head>...] DESCRIPTION ----------- @@ -34,6 +34,9 @@ OPTIONS Do not remove anything; just report what it would remove. +-v:: + Report all removed objects. + \--:: Do not interpret any more arguments as options. |