如何在本地使用CVS存储库?
是否可以使用 (Win)CVS 作为本地存储库?我不需要在服务器上共享存储库的多用户配置(我在团队中使用 WinCVS 多年,它对我们来说工作得很好),但只想跟踪我的项目的不同版本本地代码。哪里有一些好的文档或教程?或者还有其他选择吗?
Is it possible to use (Win)CVS as a local repository? I don't need a multi-user configuration with sharing a repository on a server (I've been using WinCVS for years in a team, and it worked fine for us), but just want to keep track of different versions of my project code locally. Anywhere some good documentation or tutorials? Or are there other options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以在任何空目录中创建本地 CVS 存储库
通过设置
CVSROOT
环境变量在您的计算机上到该目录并运行 cvs init 命令。
CVS 手册描述了所有 CVS 概念和命令。
Yes, you can create a local CVS repository in any empty directory
on your computer by setting the
CVSROOT
environment variableto that directory and running the
cvs init
command.The CVS manual describes all the CVS concepts and commands.
我建议不要使用 CVS,它非常古老,并且缺乏重要功能,而是使用更现代的 DVCS,例如 Mercurial 或 git。这样,您不需要设置任何服务器,并且可以获得原子提交和更好的分支处理/合并(以及许多其他好处)。
I'd suggest not using CVS, which is extremely old, and lacks important features, and instead use a more modern DVCS such as Mercurial or git. That way you don't need to setup any server, and you get atomic commits and better branch handling/merging (among lots of other benefits).