(评论)
(comments)
原始链接: https://news.ycombinator.com/item?id=38393238
根据给定的材料,人们常常由于各种原因而难以使用 Git,例如不熟悉基本的 Git 命令或误解 Git 独特的工作流程。 尽管网上有大量资源,但许多人仍然对 Git 文档表示失望,因为它倾向于提供命令行标志的广泛解释而不是实际示例。 虽然 Git 提供了工作流程方面的灵活性,但这种复杂性需要用户非常愿意彻底学习该工具,从而导致许多人产生了货物崇拜心态,他们仅仅依靠一组神奇的咒语来处理特定于 Git 的任务。 与 ClearCase、Perforce 和 Subversion 等集中版本控制系统 (CVCS) 工具不同,Git 明确支持众多工作流程,但要完全掌握它仍然具有挑战性。 此外,Git 处理边缘情况的能力有时会掩盖其可访问性,导致分支传输期间存储库之间的图表断开连接。 或者,其他分散版本控制系统工具(例如 Mercurial)提供改进的 CLI 可访问性。 最终,Git 的复杂性似乎源于其广泛支持的工作流程,这给 Git 新手带来了掌握 Git 功能细微差别的挑战。
Branches are pointers to a commit and that pointer is refreshed when a new commit is created. One could say they are a wandering tag (without explaining a tag for now).
The actual chain of commits that represent what we see as branch comes from the commits themselves. Those commits point back to their parent commit.
And then one can see why no branch has any special meaning: It is a chain of related commits with a named entrypoint. Once you delete a branch (i.e. the named wandering pointer to a commit), you cannot identify a branch as such anymore. It is just a chain of related commits without a named label now. And nothing besides the name distinguished the branch from other commit chains before.
The master/dev/release branches are then a convention to keep an updated commit pointer on the chain of commits containing changes of interest.
reply