如何确定 SVN 工作副本是否需要更新(从脚本)?

发布于 2024-09-06 22:58:26 字数 183 浏览 6 评论 0原文

我想从 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 技术交流群。

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

发布评论

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

评论(1

旧情别恋 2024-09-13 22:58:26

如果我关注你,也许是这样的:

svn st -u | find "*"
if not "%errorlevel%"=="0" goto end

svn update

:end

如果 find 成功找到“*”,则将错误级别设置为 0。

编辑:不小心遗漏了%errorlevel%周围的“”。

If I'm following you, maybe something like:

svn st -u | find "*"
if not "%errorlevel%"=="0" goto end

svn update

:end

find sets errorlevel to 0 if it successfully found "*".

EDIT: accidentally left off the "" around %errorlevel%.

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