mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-01 05:45:33 +08:00
21 lines
622 B
Markdown
21 lines
622 B
Markdown
# git count-objects
|
||
|
||
> Paketlenmemiş cisimlerin miktarını ve disk tüketimlerini hesapla.
|
||
> Daha fazla bilgi için: <https://git-scm.com/docs/git-count-objects>.
|
||
|
||
- Tüm cisimleri say ve toplam disk tüketimlerini görüntüle:
|
||
|
||
`git count-objects`
|
||
|
||
- Tüm cisimleri say ve toplam disk tüketimlerini insanların okuyabileceği biçimde görüntüle:
|
||
|
||
`git count-objects {{[-H|--human-readable]}}`
|
||
|
||
- Daha fazla ayrıntı görüntüle:
|
||
|
||
`git count-objects {{[-v|--verbose]}}`
|
||
|
||
- Daha fazla ayrıntıyı insanların okuyabileceği biçimde görüntüle:
|
||
|
||
`git count-objects {{[-H|--human-readable]}} {{[-v|--verbose]}}`
|