CVS 历史......无法让它工作
一个非常尴尬的问题:我已经指定了我的 CVS 根目录,并且在 这个 CVS 根目录我有一个存储库,我们称之为 REP。在 REP 中,我有 一个文件 TEST.TXT 我想在其中查看它的所有修订版。很遗憾, 我无法完成这项工作,我尝试了以下操作:
cvs history TEST.TXT
cvs history /REP/TEST.TXT
cvs history REP/TEST.TXT
有人知道我做错了什么吗?我是否错过了告诉 CVS 哪个存储库的命令 我指的是?
非常感谢!
An really embarrassing question: I have specified my CVS root, and within
this CVS root I have a repository, let call it REP. Within REP, I have
a file TEST.TXT where I wanna see all revisions of it. Unfortunately,
I cant get this work, i tried the following:
cvs history TEST.TXT
cvs history /REP/TEST.TXT
cvs history REP/TEST.TXT
Anyone an idea what I am doing wrong? Do i miss a command that tells CVS which repository
I am referring to?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我依稀记得 cvs...:-)
告诉 cvs 您正在使用哪个存储库的常用方法是使用
CVSROOT
环境变量。如果存储库位于本地主机上,那么这可以是完整路径名。获取文件修订历史记录的常用方法不是检查存储库范围的历史文件,而是运行 cvs log 命令,该命令将提取给定文件的 rcs 修订信息或子树。
例子:
I vaguely remember cvs... :-)
The usual way to tell cvs which repository you are using is with the
CVSROOT
environment variable. If the repository is on localhost then this can just be a full pathname.The usual way to get revision history on a file is not to examine the repository-wide history file, but rather it is to run the
cvs log
command which will extract the rcs revision information for a given file or subtree.Example: