Subversion 定时提交

发布于 2024-08-23 13:59:05 字数 177 浏览 8 评论 0原文

我有一个受版本控制的文件夹;这些内容不是源代码,但它们是经常修改的二进制文件,通常每天提交一次。

问题是,这些文件的使用者无法掌握源代码控制的概念,他们实际上无法访问有问题的文件夹,并且“他们不愿意”每天提交一次。

我想做的是每天(凌晨 4 点)自动提交该文件夹一次。是否有任何现有工具,或者我必须编写一个?

I've got a folder under version control; the contents aren't source, but they are binaries that are modified frequently and would generally get committed once a day.

Problem is, the consumers of those files can't grasp the concept for source control, they don't realistically have access to the folder in question and 'they can't be bothered' to commit once a day.

What I'd like to do, is have an auto-commit, once a day (4 am) of that folder. Are there any existing tools, or do I have to write one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

春花秋月 2024-08-30 13:59:05

您可以使用 cronat 以及在每台客户端 PC 上调用相应 svn ci 命令的脚本文件来设置自动提交。在我看来,自动提交不是一个好主意:

  • 损坏的、未完成的代码可能会被检查,
  • 任何更改都不会被记录下来

,但我从你的描述中了解到,这在你的情况下可能并不重要。

You could set up an auto-commit using cron or at and a script file calling the appropriate svn ci commands on each client PC. Auto-committing is not a good idea IMO:

  • Broken, unfinished code might get checked in
  • any changes will not be documented

but I understand from your description that this may not matter in your case.

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