1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:22:08 +02:00
tldr/pages.tr/common/git-cat-file.md

442 B

git cat-file

Git depo cisimlerine dair içerik, tür ve boyut bilgisini sağla. Daha fazla bilgi için: https://git-scm.com/docs/git-cat-file.

  • HEAD commit'inin byte bazında boyutunu öğren:

git cat-file -s HEAD

  • Belirtilen Git cisminin türünü (blob, ağaç, commit, etiket) öğren:

git cat-file -t {{8c442dc3}}

  • Git objesinin içeriğini, türüne uygun olarak hoş şekilde yansıt:

git cat-file -p {{HEAD~2}}