projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
468eb79
)
builtin-count-objects: open packs when running -v
author
Junio C Hamano
<junkio@cox.net>
Wed, 3 May 2006 06:03:15 +0000
(23:03 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 3 May 2006 06:03:15 +0000
(23:03 -0700)
Otherwise we would report absolutely no objects in a fully
packed repository.
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-count.c
patch
|
blob
|
history
diff --git
a/builtin-count.c
b/builtin-count.c
index
0256369
..
5ee72df
100644
(file)
--- a/
builtin-count.c
+++ b/
builtin-count.c
@@
-105,6
+105,8
@@
int cmd_count_objects(int ac, const char **av, char **ep)
}
if (verbose) {
struct packed_git *p;
+ if (!packed_git)
+ prepare_packed_git();
for (p = packed_git; p; p = p->next) {
if (!p->pack_local)
continue;