vote up 9 vote down star
6

I would like to understand the way git works from a architects point of view. How are files stored, how are versions kept and how do changes happen (branches, merges, etc.)?

I am not searching for information how to use it. (I already found a lot of pages with tutorials.) But I did not find any "behind the scenes" details, that would make me understand.

flag

15 Answers

vote up 8 vote down check

Check out Git from the Bottom Up

link|flag
vote up 1 vote down

The Git Internals ebook has already been mentioned. I will point out that its author, Scott Chacon, gave a fantastic presentation about git at RailsConf 2008 that covers much the same ground as the book.

Said Scott now maintains http://git-scm.com/, which includes the Git community book, which is more of a usage tutorial than a technical description, but does include both a nice conceptual overview of the git data model in the introductory chapter and a detailed one in its closing chapter.

link|flag
vote up 1 vote down

For me, the following three resources were very, very helpful, in this order:

  1. The Thing About Git explained why I should even care

  2. Git Magic explained how to get started

  3. Git The Basics [pdf] explained - graphically, and in detail - what happens when I add, remove, merge, etc.

link|flag
vote up 0 vote down

There are some interesting documents on the Documentation/technical directory of the git source code.

link|flag
vote up 3 vote down

The US$9 100+ page PDF book from PeepCode called Git Internals is fantastic. It's well written, uses great, clear visuals and is also a quick read. I absorbed as much free online material as I could but this book put me over the top.

link|flag
vote up 1 vote down

One day I actually sat down and read the entire Git User's Manual. Turned out to be a good idea -- the manual is very helpful, explains a lot, and is quite clear and provides useful examples.

link|flag
vote up 0 vote down

I found these pages useful :

link|flag
vote up 1 vote down

This talk by Randal Schwartz gave me a pretty good overview.

link|flag
vote up 5 vote down

http://eagain.net/articles/git-for-computer-scientists/

http://www.loria.fr/~molli/pmwiki/uploads/Main/gitmanual.pdf Chap 7

http://www.newartisans.com/blog_files/git.from.bottom.up.php

link|flag
Git From the Bottom Up is the starting point for understanding the architecture. Linus's talk complements it well. – Paul Nov 4 '08 at 13:50
vote up 1 vote down

There's a good Google tech talk: Linus Torvalds on git

OK, it's not something to read but it does cover some of the Git internals and design philosophy.

link|flag
vote up 0 vote down

I've found the Git User Manual to be very enlightening.

link|flag
vote up -1 vote down

Wikipedia might get you started.

I do remember encountering some documents describing some of the internal architecture, so I know that they are out there. I just can't remember where they were...

link|flag
vote up 2 vote down

I found this site when I googled "git architecture": http://speirs.org/2007/07/19/a-subversion-user-looks-at-git

Git has a mailing list: "majordomo@vger.kernel.org&body=subscribe%20git" (http://git.or.cz/#community)

And this wikipedia article may be helpful: http://en.wikipedia.org/wiki/Git_(software)

link|flag
vote up -2 vote down

http://git.or.cz/

link|flag
I found that site before. And I still do not find information on design/architecture - only for the usage. – MrFox Nov 4 '08 at 12:36
vote up 4 vote down

The git source code. :-)

link|flag
1  
First I had a line in my description that said: "And please something that is shorter than the source code" :) I decided to drop it, because I thought that was somehow obvious. ;) – MrFox Nov 4 '08 at 11:38
1  
Nothing is ever obvious, especially when your primary target audience is primarily composed of geeks. ;-) – JesperE Nov 4 '08 at 13:06
But, MrFox, the sources aren't that hard to read, and they are the best place to figure out details that aren't documented. – Ben Collins Nov 4 '08 at 13:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.