This is the right way to learn Git. I don't know how good this is, but I feel most of the strange unintuitiveness of git went away and was replaced by a feeling of productivity since I understood what happens under git's hood.
Git from the Bottom Up (2009) [pdf]
11–20 of 26 posts
Re: Git from the Bottom Up (2009) [pdf]
#12Re: Git from the Bottom Up (2009) [pdf]
#13Earlier quoted context omitted.
The big take away for me was the idea of blobs and trees as Hickeyian values and commits as Von Neumann places. [1] If there is one weakness is the article it is ending with stash , which to me seems to be a bit of a feature in search of a workflow more than something that enhances distribution and sharing among a team in so far as the class of problem it addresses seems to result from larger issues of team structure…
I find stash useful primarily as a place to hold things for a few minutes, and no longer. In particular, I frequently use "git stash", followed by "git pull --rebase", and if all went well, "git stash pop". I could just as easily do "git commit -a -m 'WIP'", "git pull --rebase", and "git reset HEAD^", but I find stash more intuitive.
Though again, it's a minor criticism and mostly related to the impression of importance positioning it at the end of the article suggests [i.e. placing the strongest point in paragraph four of the five paragraph essay].
Re: Git from the Bottom Up (2009) [pdf]
#14*Part of a new publication by Recurse Center/Hacker School
Re: Git from the Bottom Up (2009) [pdf]
#15This is the right way to learn Git. I don't know how good this is, but I feel most of the strange unintuitiveness of git went away and was replaced by a feeling of productivity since I understood what happens under git's hood.
Re: Git from the Bottom Up (2009) [pdf]
#16Re: Git from the Bottom Up (2009) [pdf]
#17Web version: http://jwiegley.github.io/git-from-the-bottom-up/ A nice resource in the same vein -- build a bare bones git in javascript: http://kushagragour.in/blog/2014/01/build-git-learn-git/ And finally, Linus's one page explanation of git's central concepts for the initial commit of git: https://github.com/git/git/tree/e83c5163316f89bfbde7d9ab23ca...
Re: Git from the Bottom Up (2009) [pdf]
#18http://marc.info/?l=linux-kernel&m=139033182525831
there's clearly a balance between "octopus merges are fine" and "Christ, that's not an octopus, that's a Cthulhu merge".
(Also, GitHub's logo is reminiscent of the "octopus merge".)