შიგნით, Git არის კონტენტის მიხედვით მისამართებული ობიექტის მაგაზინი — ის ყველაფერს ინახავს როგორც ობიექტებს (ბლობები, ხეები, კომიტები, ტეგები), რომლებიც იდენტიფიცირებული არიან მათი SHA-1 ჰეშით. ამ მოდელის გაგება Git-ს დემისტიფიცირებს და ხსნის, რატომ იქცევა მისი ოპერაციები ისე, როგორც ისინი იქცევიან.
Git არის კონტენტის მიხედვით მისამართებული ობიექტის მაგაზინი
Git stores 4 types of OBJECTS, each identified by the SHA-1 HASH of its content:
BLOB → file CONTENTS (just the data, no filename)
TREE → a directory: maps names → blobs (files) and trees (subdirs) + permissions
COMMIT → a snapshot: points to a TREE (the root) + parent commit(s) + author/message
TAG → an annotated tag object (points to a commit, with metadata)
→ Content-addressable: an object's ID IS the hash of its content (same content = same hash).
