cvs - 如何确定我是否需要一个没有“cvs up”的新目录?
我编写了一个 shell 脚本来显示哪些文件需要修补,而无需实际执行 cvs up
。它只是一个简单的 cvs stat
解析器。
但是,它并没有告诉我新目录是否会带有新的cvs up -d
。
有没有办法查明我是否缺少使用下一个 cvs up -d
创建的目录?
I have written a shell script to show me what files need patching without actually doing a cvs up
. It's just a simple cvs stat
parser.
But, it doesn't tell me if a new directory would come down with a new cvs up -d
.
Is there a way to find out if I'm missing directories that would be created with the next cvs up -d
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-n
开关显示丢失的目录:-n
开关实际上并不运行cvs up -d
;它只是显示运行命令的效果。The
-n
switch shows me missing directories:The
-n
switch does not actually runcvs up -d
; it just shows the effects of running the command.