如何签出单个文件?
我想将 file1
从 CVS 存储库签出到当前目录。
File1 的路径是: /opt/application/CVS_REPOSITORY/project/lib/source/file1
我该怎么做?
首先我设定:
setenv CVSROOT /opt/application/CVS_REPOSITORY
那我该怎么办?
cvs co -r . /lib/source/file1 ??
或者
cvs co -r . project/lib/source/file1 ??
I would like to checkout file1
from CVS repository to the current directory.
File1's path is: /opt/application/CVS_REPOSITORY/project/lib/source/file1
How do I do it?
First I set:
setenv CVSROOT /opt/application/CVS_REPOSITORY
Then what should I do?
cvs co -r . /lib/source/file1 ??
Or
cvs co -r . project/lib/source/file1 ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
cvs co project/lib/source/file1
Try
cvs co project/lib/source/file1
我必须使用“cvs update 文件名”从 cvs 模块中提取单个文件。在模块本地工作区中运行此命令。
I had to use "cvs update filename" to pull single file from cvs module. Run this command in the module local workspace.