cvs - 如何确定我是否需要一个没有“cvs up”的新目录?

发布于 2024-08-23 11:33:22 字数 205 浏览 3 评论 0原文

我编写了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满身野味 2024-08-30 11:33:22

-n 开关显示丢失的目录:

cvs -n up -d

-n 开关实际上并不运行 cvs up -d;它只是显示运行命令的效果。

The -n switch shows me missing directories:

cvs -n up -d

The -n switch does not actually run cvs up -d; it just shows the effects of running the command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文