diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-03 23:40:39 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-03 23:40:39 -0700 |
commit | d820f918711446a74cc74577f6f2535a78752708 (patch) | |
tree | b46ae3884e9fa20eb0c8083d90a316e3631ab6f3 /Documentation | |
parent | 5dfde8715664d389de640d9475fb1678b8403596 (diff) | |
parent | 80fe7d2b54b1aebde6c067694cdbf3ba40ad0c39 (diff) | |
download | git-d820f918711446a74cc74577f6f2535a78752708.tar.gz |
Merge branch 'jc/count'
* jc/count:
builtin-count-objects: open packs when running -v
builtin-count-objects: make it official.
built-in count-objects.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-count-objects.txt | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Documentation/git-count-objects.txt b/Documentation/git-count-objects.txt index 47216f488b..198ce77a8a 100644 --- a/Documentation/git-count-objects.txt +++ b/Documentation/git-count-objects.txt @@ -7,13 +7,23 @@ git-count-objects - Reports on unpacked objects SYNOPSIS -------- -'git-count-objects' +'git-count-objects' [-v] DESCRIPTION ----------- This counts the number of unpacked object files and disk space consumed by them, to help you decide when it is a good time to repack. + +OPTIONS +------- +-v:: + In addition to the number of loose objects and disk + space consumed, it reports the number of in-pack + objects, and number of objects that can be removed by + running `git-prune-packed`. + + Author ------ Written by Junio C Hamano <junkio@cox.net> |