top | item 24517925

Show HN: ugit – Learn Git Internals by Building Git in Python

309 points| nikital | 5 years ago |leshenko.net

30 comments

order
[+] Conlectus|5 years ago|reply
Looks neat! This reminds me heavily of the excellent Building Git by James Coglan[1].

From a cursory glance though, it doesn't seem to support reading packfiles. This was the big thing that prevented me from using a fully custom Git implementation when I wrote my git churn calculator[2]. For larger repositories, it seems that almost all files are stored in packfiles, rather than the conceptually simpler "loose" format.

For me, the most valuable resource was reading the Git / libgit2 source and reference documentation.

[1] https://shop.jcoglan.com/building-git/

[2] https://github.com/samdoiron/butter

[+] nikital|5 years ago|reply
Thanks! Note that ugit isn't supposed to be a custom compatible Git implementation, but rather a simplified Git-like implementation for teaching Git concepts. So even if ugit supported packfiles, it still won't be able to read a real Git repo.
[+] microtherion|5 years ago|reply
Seconding the recommendation for "Building Git", one of the most lucid and edifying books I've read in recent years.
[+] codesections|5 years ago|reply
This strikes me as a cool and polished version of shit, the Git implementation Drew DeVault did in pure POSIX shell. https://git.sr.ht/~sircmpwn/shit
[+] wrycoder|5 years ago|reply
Upvote for amusement. And from the link:

“How to Use: 1. Don’t”

LOL. Thanks! Both interesting!

[+] dimator|5 years ago|reply
Polished presentation! I like to learn from first principles, so this is perfect.

There is also write you a git: https://wyag.thb.lt/

[+] ravenide|5 years ago|reply
Is this tutorial interface (navigation, diffs, files/downloads at each step) custom made? It's pretty nice for this kind of format.
[+] nikital|5 years ago|reply
It was custom made for the tutorial. I didn't release it yet because I mostly focused on polishing the tutorial itself and not the code for the interface. Do you think people would be interested in the interface by itself?
[+] travmatt|5 years ago|reply
I was wondering the same, this format feels extremely intuitive for the material it explores. Looking at the HTML and the CSS class names I'd assume it was handmade, but it seems like standardizing this format or even generating this webpage format from a repo would be a useful tool. The comment left at the end is ambiguous as to whether it refers to the tutorial or the website as a whole.
[+] gumby|5 years ago|reply
> The real Git code is too complicated to be useful for learning basic concepts with ease. ... It deals with a lot of edge cases that we don't care about for learning.

Good choice, well explained. More than a toy problem space but stripped of factors that obscure the lesson. The author knows what they are doing.

[+] nikital|5 years ago|reply
> stripped of factors that obscure the lesson

Yes! I'm going to adopt that wording. Originally I tried to do a screencast about guided Git source code exploration but it didn't work because of that reason.

[+] spapas82|5 years ago|reply
For anybody interested I've built a python lib to read the latest commit from a git repo: https://github.com/spapas/python-git-info/

This is a pure python implementation that started simple (just read a couple of files from the .git folder) but after a little I understood that for non trivial repos you'll need to deal with pack for files. Because I had already published the package I actually completed the pack parsing work but I have to confess that it's way too complex and I wouldn't have started the project if I knew better...

In any case the source is there if you want to take a look!

[+] necovek|5 years ago|reply
I believe this is a wonderful way for someone to learn a piece of technology in depth.

But I have to wonder if you actually had anyone (else!) successfully _use_ this to further their understanding of git?

Generally, for me, it's either myself doing the exercise unguided, reading the documentation on internals, or reading the original source code. So I am certain it was a huge benefit for you, but it's more of a question on the approach being used with "students" and how successful would it be?

[+] nikital|5 years ago|reply
I've seen people's Git skills improve after I taught them Git internals, but I taught them in a standard lecture format.

I didn't try teaching Git internals using code before, but I hypothesized it would be a good idea, and here is the result :) I'm curious about its effectiveness as well.

[+] parksy|5 years ago|reply
This is great, I appreciate the effort that has gone into it.

I have used git now for about 10 years, always via cli so I am pretty fluent with it and understand intuitively what is going on behind the scenes, but have only rarely needed to venture into the .git folders.

Working through the steps in this tutorial is helping to give a foundation to that intuition. I love the presentation format and would like to see more like this, and in other languages.

Is the tutorial itself available on github or elsewhere?

[+] nikital|5 years ago|reply
I'm happy to hear that! You can clone the tutorial content using the link in the "Download" section. The interface isn't available yet on Github.
[+] mraza007|5 years ago|reply
Really cool Implementation if you don’t mind can you share how did you build this
[+] narwally|5 years ago|reply
I definitely agree that having a good understanding of git's internals is a must for using it to its full potential. I'm not sure you have to go as far as implementing it yourself, but it is a sure fire way to get there. For me it didn't all click into place until I understood the data model behind git[1]. A git project is just one big DAG of objects, and each object at its core is either a blob, a tree, or a commit. When you understand that, you can start to view every git command for what they actually are, a sequence of operations on this data structure.

[1] relevant xkcd: https://xkcd.com/1597/

[+] howon92|5 years ago|reply
I logged in just to upvote and comment how nice this is! Well done :)
[+] sorokod|5 years ago|reply
Such a well thought out interface, congrats!