是否有 Subversion Checkout Hook 或类似的东西?

发布于 2024-08-18 15:44:22 字数 210 浏览 5 评论 0原文

我正在使用 subversion 存储库,并且我想知道何时有人要求我的存储库签出;就像“svn co”或“svn up”。每当有人从我的 svn 服务器请求信息时,我是否可以使用挂钩或其他方法来运行脚本或发送电子邮件?如何在不依赖 apache 日志的情况下实现这一目标?

顺便说一句,它是一个非常简单的存储库,仅用于教育目的。

(如果您需要更多信息,请询问。提前致谢。)

I'm using a subversion repository and I want to know whenever somebody asks my repository for a checkout; like a 'svn co' or an 'svn up'. Is there a hook or some other method that I can use so that a script is run, or email sent, whenever somebody requests information from my svn server? How can I achieve this without relying on apache logs?

BTW it is a pretty simple repository just meant for Educational purposes.

(If you need more information then just ask. Thanks in advance.)

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

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

发布评论

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

评论(3

别挽留 2024-08-25 15:44:22

以下是 Subversion 1.5 中支持的所有挂钩,来自 Version Control with Subversion book:

  • start-commit
  • pre-commit
  • post-commit
  • pre-revprop-change
  • post-revprop-change
  • pre-lock
  • post-lock
  • pre-unlock
  • post-unlock

没有像您描述的那样的预签出或预更新挂钩。

The following are all the supported hooks in Subversion 1.5, from the Version Control with Subversion book:

  • start-commit
  • pre-commit
  • post-commit
  • pre-revprop-change
  • post-revprop-change
  • pre-lock
  • post-lock
  • pre-unlock
  • post-unlock

There is no pre-checkout or pre-update hook like you describe.

∝单色的世界 2024-08-25 15:44:22

如果您使用 TortoiseSVN,则可以访问 客户端挂钩

If you are using TortoiseSVN, you have access to client-side hooks.

戴着白色围巾的女孩 2024-08-25 15:44:22

您可以使用 Apache 作为 SVN 服务器和(例如)mod_perl 来挂钩请求,做任何您想做的事情。也许日志文件已经显示了您想要的信息。

通过 SSH 的 SVN 也应该是可能的:分析 SVN 客户端启动的命令并包装它们(例如,通过使用“.orig”扩展名重命名原始二进制文件并将(shell)脚本放入该位置。

You could do whatever you want using Apache as SVN server and (for example) mod_perl to hook into the requests. Maybe the log files already show the information you want.

SVN via SSH should also be possible: Analyze the commands started by the SVN client and wrap them (for example, by renaming the original binary with ".orig" extension and putting a (shell) script into that place.

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