mirror of https://github.com/CrimsonTome/tldr.git
21 lines
580 B
Markdown
21 lines
580 B
Markdown
# git count-objects
|
||
|
||
> Paketlenmemiş cisimlerin miktarını ve disk tüketimlerini hesapla.
|
||
> Daha fazla bilgi: <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 --human-readable`
|
||
|
||
- Daha fazla ayrıntı görüntüle:
|
||
|
||
`git count-objects --verbose`
|
||
|
||
- Daha fazla ayrıntıyı insanların okuyabileceği biçimde görüntüle:
|
||
|
||
`git count-objects --human-readable --verbose`
|