mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 17:02:09 +02:00

* 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>
16 lines
449 B
Markdown
16 lines
449 B
Markdown
# 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}}`
|