如何在CVS中为已删除的文件添加标签?
我需要从几天前的 HEAD
状态创建一个分支,为此我想在模块中的所有文件上添加一个标签。问题是从那天到现在,有一些文件被使用 cvs
remove 删除了。当我尝试使用 -D
选项执行“cvs rtag
”时,尽管删除的文件当时存在于 中,但我在已删除的文件上看不到标签。简历。
有没有一种直接的方法可以从特定日期分支到当时存在的所有文件?
I need to create a branch from the state of the HEAD
several days ago, for which I would like to add a tag on all files in a module. Trouble is that a few files were removed using cvs
remove between that day and now. When I tried to do "cvs rtag
" using -D
option, I don't see the tag on the deleted files although the deleted files existed then in the cvs
.
Is there a straightforward way to branch from a specific date with all the files that existed then?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,
cvs (r)tag
不允许混合-D
和-r
选项。但cvs update
可以,因此您可以将工作副本更新为所需的日期和分支,然后cvs tag
您的工作副本。Unfortunately
cvs (r)tag
does not allow mixing the-D
and-r
options. Butcvs update
does, so you can update your working copy to the date and branch you want and thencvs tag
your working copy.