git-count-objects: add page (#5114)

translation-badges
bl-ue 2021-01-16 10:43:31 -05:00 committed by GitHub
parent 9614569655
commit 1f6db5a934
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# git count-objects
> Count the number of unpacked objects and their disk consumption.
> More information: <https://git-scm.com/docs/git-count-objects>.
- Count all objects and display the total disk usage:
`git count-objects`
- Display a count of all objects and their total disk usage, displaying sizes in human readable units:
`git count-objects --human-readable`
- Display more verbose information:
`git count-objects --verbose`
- Display more verbose information, displaying sizes in human readable units:
`git count-objects --human-readable --verbose`