// Aula 3 - Criando três objetos blob, tree e commit $ git clone https://github.com/PacktPublishing/Git-Version-Control-Cookbook-Second-Edition.git $ cd Git-Version-Control-Cookbook-Second-Edition $ echo "teste de alteração" >> another-file.txt $ git status $ git add another-file.txt $ git status $ echo 'Opa quase esqueci isso' >> another-file.txt $ git status $ git add another-file.txt $ git status $ git commit -m 'Outra mudança para outro arquivo' $ git cat-file -p HEAD $ git cat-file -p HEAD^{tree} $ git fsck --dangling $ git cat-file -p ad46f2da274ed6c79a16577571a604d3281cd6d9 Veja mais a respeito nesse link: https://git-scm.com/docs/git-cat-file https://git-scm.com/docs/git-fsck