]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-count-objects.txt
Documentation: be consistent about "git-" versus "git "
[thirdparty/git.git] / Documentation / git-count-objects.txt
1 git-count-objects(1)
2 ====================
3
4 NAME
5 ----
6 git-count-objects - Count unpacked number of objects and their disk consumption
7
8 SYNOPSIS
9 --------
10 'git count-objects' [-v]
11
12 DESCRIPTION
13 -----------
14 This counts the number of unpacked object files and disk space consumed by
15 them, to help you decide when it is a good time to repack.
16
17
18 OPTIONS
19 -------
20 -v::
21 --verbose::
22 In addition to the number of loose objects and disk
23 space consumed, it reports the number of in-pack
24 objects, number of packs, and number of objects that can be
25 removed by running `git prune-packed`.
26
27
28 Author
29 ------
30 Written by Junio C Hamano <junkio@cox.net>
31
32 Documentation
33 --------------
34 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
35
36 GIT
37 ---
38 Part of the linkgit:git[1] suite