自底向上学习Git by: John Wiegley 翻译:Rang T 原文链接: Git from the Bottom Up 1. 引言 2. 代码仓库(repository) 2.1 代码仓库:目录内容追踪 2.2 blob介绍 2.3 blob存储在树对象中 2.4 树对象如何生成 2.5 提交之美 2.6 提交的不同叫法 2.7 分支,以及rebase的能力 2.8 交互式rebase 3. 索引(the index) 3.1 索引:见一见中间人 3.2 进一步认识索引 4. 重置(reset) 4.1 重置,还是毁灭? 4.2 混合重置 4.3 软重置 4.4 硬重置 5. 储藏(stash)与引用日志(reflog) 6. 总结 7. 延伸阅读