diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-12 15:00:13 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-12 15:10:29 -0800 |
commit | b60daf0515889ca75f88f1d4d49a6a9c4117ba36 (patch) | |
tree | 2a51df5279f109da473efb03b8a85434e2f68e83 /Documentation/git-prune-packed.txt | |
parent | f215f27013e785ac11bf1190d0c03ba870faf080 (diff) | |
download | git-b60daf0515889ca75f88f1d4d49a6a9c4117ba36.tar.gz |
Make git-prune-packed a bit more chatty.
Steven Grimm noticed that git-repack's verbosity is inconsistent
because pack-objects is chatty and prune-packed is not. This
makes the latter a bit more chatty and gives -q option to
squelch it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-prune-packed.txt')
-rw-r--r-- | Documentation/git-prune-packed.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/git-prune-packed.txt b/Documentation/git-prune-packed.txt index 234882685d..a79193fb00 100644 --- a/Documentation/git-prune-packed.txt +++ b/Documentation/git-prune-packed.txt @@ -9,7 +9,7 @@ residing in a pack file. SYNOPSIS -------- -'git-prune-packed' [-n] +'git-prune-packed' [-n] [-q] DESCRIPTION @@ -32,6 +32,9 @@ OPTIONS Don't actually remove any objects, only show those that would have been removed. +-q:: + Squelch the progress indicator. + Author ------ Written by Linus Torvalds <torvalds@osdl.org> |