1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:02:08 +02:00
tldr/pages.ko/common/git-cat-file.md
코드싸이 0819a11434
git-*: add and update Korean translation (#14031)
* git-a*: add and update Korean translation

* git-b*: add and update Korean translation

* git-*: add and update Korean translation

* Update git-standup.md

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-10-08 00:22:02 +09:00

449 B

git cat-file

Git 저장소 객체의 콘텐츠 또는 유형 및 크기 정보를 제공합니다. 더 많은 정보: https://git-scm.com/docs/git-cat-file.

  • HEAD 커밋의 크기(바이트 단위) 확인:

git cat-file -s HEAD

  • 주어진 Git 객체의 유형(blob, tree, commit, tag) 확인:

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

  • 주어진 Git 객체의 유형에 따라 콘텐츠를 보기 좋게 출력:

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