CVS 查看我有四个选项。它们是什么意思?
当我检查应用程序时,我会看到四个选项:HEAD、Branches、Versions 和 Date,它们是什么意思?它们之间有什么区别?
When I am checking out an application i get four options HEAD, Branches, Versions and Dates what do they mean? What is the difference between each of them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
代码存储库是一个版本树,每个版本都代表代码在某个特定点的状态。可以从任意点创建树的新分支。因此......
您将看到的另一件事是标记版本。这就是为树的特定状态赋予名称的地方(例如,代表确切的版本)。
A code repository is a tree of versions, each of which represents the state of the code at some particular point. It's possible to create a new branch of the tree from any point. Thus…
The other thing that you'll see is a tagged version. That's where a name is given to a particular state of the tree (e.g., to represent an exact release).
请查看使用 CVS 进行开源开发,尤其是分支 章节。这解释了 CVS 的工作原理以及头部修订版和分支是什么。
Please take a look at Open Source Development with CVS, especially the Branches chapter. That explains how CVS works and what the head revision is and what branches are.