Git Structure

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2020 Jun 17 0:45
Editor
Edited
Edited
2025 Jun 7 16:26
Refs
Refs

Consists of blobs and trees (directory and file)

  • Basically Git is Key Value Store
  • File is Blob, Director y is Tree
  • Every Commit, Blob, Tree has hash value
Git internally uses 4 types of objects:
  1. blob: file contents
  1. tree: directory structure
  1. commit: commit information + tree pointer
  1. tag: annotated tag
Git Folder Structure
 
 
Git Structure notion
 
 
 
 
 

Recommendations