diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-03 13:52:44 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-03 14:55:48 -0800 |
commit | 66158e331b385a81ac825c208c6160a0cdd2324c (patch) | |
tree | e7616c3aabc690b9c9b24a6cc7ef9d266f57c367 /README | |
parent | 160252f81626d865b9e902abffe5e4976944c930 (diff) | |
download | git-66158e331b385a81ac825c208c6160a0cdd2324c.tar.gz |
Illustration: "Fundamental Git Index Operations"
Jon Loeliger's ASCII art in the Discussion section.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'README')
-rw-r--r-- | README | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -399,6 +399,46 @@ save the note about that state, in practice we tend to just write the result to the file `.git/HEAD`, so that we can always see what the last committed state was. +Here is an ASCII art by Jon Loeliger that illustrates how +various pieces fit together. + +------------ + + commit-tree + commit obj + +----+ + | | + | | + V V + +-----------+ + | Object DB | + | Backing | + | Store | + +-----------+ + ^ + write-tree | | + tree obj | | + | | read-tree + | | tree obj + V + +-----------+ + | Index | + | "cache" | + +-----------+ + update-index ^ + blob obj | | + | | + checkout-index -u | | checkout-index + stat | | blob obj + V + +-----------+ + | Working | + | Directory | + +-----------+ + +------------ + + 6) Examining the data ~~~~~~~~~~~~~~~~~~~~~ |