如何在本地使用CVS存储库?

发布于 2024-11-14 15:41:06 字数 125 浏览 3 评论 0原文

是否可以使用 (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦巷 2024-11-21 15:41:06

是的,您可以在任何空目录中创建本地 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 variable
to that directory and running the cvs init command.

The CVS manual describes all the CVS concepts and commands.

超可爱的懒熊 2024-11-21 15:41:06

我建议不要使用 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文