diff options
author | Marcus Griep <marcus@griep.us> | 2008-08-15 00:20:20 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-17 01:01:42 -0700 |
commit | f223824943e23e593b5e9cc647417a4267acc82d (patch) | |
tree | 0ab6216159f97f27ac09e1cd75265e02a1e51871 /builtin-count-objects.c | |
parent | 053fd0c1c3da20474c4ff175c56ea4c1d6eeda11 (diff) | |
download | git-f223824943e23e593b5e9cc647417a4267acc82d.tar.gz git-f223824943e23e593b5e9cc647417a4267acc82d.tar.xz |
count-objects: Add total pack size to verbose output
Adds the total pack size (including indexes) the verbose count-objects
output, floored to the nearest kilobyte.
Updates documentation to match this addition.
Signed-off-by: Marcus Griep <marcus@griep.us>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-count-objects.c')
-rw-r--r-- | builtin-count-objects.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin-count-objects.c b/builtin-count-objects.c index 91b548747..249040b96 100644 --- a/builtin-count-objects.c +++ b/builtin-count-objects.c @@ -104,6 +104,7 @@ int cmd_count_objects(int argc, const char **argv, const char *prefix) if (verbose) { struct packed_git *p; unsigned long num_pack = 0; + unsigned long size_pack = 0; if (!packed_git) prepare_packed_git(); for (p = packed_git; p; p = p->next) { @@ -112,12 +113,14 @@ int cmd_count_objects(int argc, const char **argv, const char *prefix) if (open_pack_index(p)) continue; packed += p->num_objects; + size_pack += p->pack_size + p->index_size; num_pack++; } printf("count: %lu\n", loose); printf("size: %lu\n", loose_size / 2); printf("in-pack: %lu\n", packed); printf("packs: %lu\n", num_pack); + printf("size-pack: %lu\n", size_pack / 1024); printf("prune-packable: %lu\n", packed_loose); printf("garbage: %lu\n", garbage); } |