如何确定 SVN 工作副本是否需要更新(从脚本)?
我想从 Windows 上的批处理文件确定是否需要从服务器更新本地 SVN 工作副本。在类 UNIX 机器上,我会运行“svn status -u”并计算“*”。如何在批处理文件中实现相同的目标?
背景:我试图确定依赖库是否已过时,因为重新构建它需要很长时间,而且我们大约每 3 个月更新一次。这是用于自动化构建过程。
I'd like to determine from a batch file on Windows if a local SVN working copy needs to be updated from the server. On a unix-like machine, I would run "svn status -u" and count the '*'s. How do I achieve the same thing in a batch file?
Background: I'm trying to determine if a dependency library is out-of-date since it takes a long time to re-build it and we only update it about once every 3 months. This is for an automated build process.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我关注你,也许是这样的:
如果 find 成功找到“*”,则将错误级别设置为 0。
编辑:不小心遗漏了%errorlevel%周围的“”。
If I'm following you, maybe something like:
find sets errorlevel to 0 if it successfully found "*".
EDIT: accidentally left off the "" around %errorlevel%.