git cat-file

git cat-file 명령어란

git cat-file

리포지토리 개체에 대한 콘텐츠 또는 유형 및 크기 정보 제공

git cat-file <type> <object>
git cat-file (-e | -p) <object>
git cat-file (-t | -s) [--allow-unknown-type] <object>
git cat-file (--batch | --batch-check | --batch-command) [--batch-all-objects]
	     [--buffer] [--follow-symlinks] [--unordered]
	     [--textconv | --filters] [-z]
git cat-file (--textconv | --filters)
	     [<rev>:<path|tree-ish> | --path=<path|tree-ish> <rev>]

Options

-p

Git 레포지토리에 저장되어 있는 데이터를 조회할 때 사용하는 저수준 명령어

Last updated