2005-09-08 02:26:23 +02:00
|
|
|
git-count-objects(1)
|
|
|
|
====================
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-count-objects - Count unpacked number of objects and their disk consumption
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-06-30 08:09:04 +02:00
|
|
|
'git count-objects' [-v]
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-08-27 03:18:48 +02:00
|
|
|
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.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2006-05-02 08:05:39 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-v::
|
2008-06-08 03:36:10 +02:00
|
|
|
--verbose::
|
2006-05-02 08:05:39 +02:00
|
|
|
In addition to the number of loose objects and disk
|
|
|
|
space consumed, it reports the number of in-pack
|
2008-08-15 06:20:20 +02:00
|
|
|
objects, number of packs, disk space consumed by those packs,
|
|
|
|
and number of objects that can be removed by running
|
|
|
|
`git prune-packed`.
|
2006-05-02 08:05:39 +02:00
|
|
|
|
|
|
|
|
2005-08-23 10:49:47 +02:00
|
|
|
Author
|
|
|
|
------
|
2008-07-21 21:14:42 +02:00
|
|
|
Written by Junio C Hamano <gitster@pobox.com>
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|