Please enable JavaScript.
Coggle requires JavaScript to display documents.
Git Data Structure (Index (索引) (File Status (untracked, unmodified,…
Git Data Structure
-
Name (名稱)
-
-
相對名稱
-
除了第一個 commit 物件外,任何其他的 commit 物件一定都會有一個以上的上層 commit 物件(parent commit)
(因為你很有可能會合併兩個以上的分支到另一個分支裡,所以合併完成後的那個 commit 物件就會有多個 parent commit 物件。)
-
-
-
Objects (物件)
.git / objects /
以 8a6b275638f3cf164395e65066a1132bb36b7896 為例
Git 會先拿前兩個字元(8a)當作目錄
然後把剩下的 hash 值當成檔名 (6b275638f3cf164395e65066a1132bb36b7896)
-
-