Blob 物件

blob 包含任意二進位制檔案內容。通常,它將是原始文字,例如原始碼或部落格文章。但它可能很容易就是 PNG 檔案的位元組或其他任何東西。

如果你有 blob 的雜湊值,你可以檢視它的內容。

$ git cat-file -p d429810
package com.example.project

class Foo {
 ...
}
...

例如,你可以如上所述瀏覽 tree,然後檢視其中的一個 blobs

$ git cat-file -p 07b1a631
100644 blob b91bba1b   .gitignore
100644 blob cc0956f1   Makefile
040000 tree 92e1ca7e   src
100644 blob cae391ff   Readme.txt

$ git cat-file -p cae391ff
Welcome to my project! This is the readmefile
...