Win32: fix detection of empty directories in is_dir_empty
[git/dscho.git] / Documentation / git-count-objects.txt
blob23c80cea6465d23476935abcfabba8e1deb915ee
1 git-count-objects(1)
2 ====================
4 NAME
5 ----
6 git-count-objects - Count unpacked number of objects and their disk consumption
8 SYNOPSIS
9 --------
10 [verse]
11 'git count-objects' [-v]
13 DESCRIPTION
14 -----------
15 This counts the number of unpacked object files and disk space consumed by
16 them, to help you decide when it is a good time to repack.
19 OPTIONS
20 -------
21 -v::
22 --verbose::
23         In addition to the number of loose objects and disk
24         space consumed, it reports the number of in-pack
25         objects, number of packs, disk space consumed by those packs,
26         and number of objects that can be removed by running
27         `git prune-packed`.
29 GIT
30 ---
31 Part of the linkgit:git[1] suite