如何在 CVS 存储库中搜索特定文件?
有什么办法可以做到吗? 我只有客户端访问权限,无法访问服务器。 是否有我错过的命令或一些我可以在本地安装的可以连接并按文件名查找文件的软件?
Is there any way to do it? I only have client access and no access to the server. Is there a command I've missed or some software that I can install locally that can connect and find a file by filename?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以 grep 的输出
(注意末尾的句点字符 - 这实际上意味着:整个存储库)。
这应该为您提供有关整个 shebang 的信息,包括删除的文件和在分支上添加的文件。
You could grep the output of
(note the period character at the end - this effectively means: the whole repository).
That should give you info about the whole shebang including removed files and files added on branches.
您可以使用
它将递归地为您提供所有文件,例如
请注意,-d 选项还为您提供了已删除的文件; 不确定你是否
想要那个。 如果没有 -e,它只提供文件名。
You can use
which will give you all files in recursively, e.g.
Notice that the -d option gives you also deleted files; not sure whether you
wanted that. Without -e, it only gives you the file names.