Subversion post commit 到标签钩子

发布于 2024-11-02 13:26:38 字数 119 浏览 1 评论 0原文

我可以让提交后挂钩在每次有人检查某些内容时发送一封电子邮件,但是我可以限制为仅当人们将某些内容检查到标签目录中时吗?基本上我想要当有人推广版本时收到通知。我的 Subversion 在 Windows 上运行。有什么想法吗?

I can have the post commit hook send out an email every time someone checks something, but can I limit that to only if people check something into the tags directory? Basically I want a notification when anyone promotes a release. My subversion is running on Windows. Any ideas?

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

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

发布评论

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

评论(2

滥情稳全场 2024-11-09 13:26:38

您将获得作为提交后挂钩参数提交的存储库和修订版本。

使用svnlook获取修订中更改的文件的路径,并查看它是否有标签并触发您的电子邮件。

 svnlook changed -r $rev $repo

上面将给出看起来像

A   trunk/app/file.cs

使用该信息来查看标签是否已添加并在提交后写入的行

You get the repo and revision that was committed as the arguments to the post-commit hook.

Use svnlook to get the path of the files changed in the revision and see if it has tags and trigger your email.

 svnlook changed -r $rev $repo

The above will give lines that look like

A   trunk/app/file.cs

Use that info to see if tag was added and write you post-commit

三生路 2024-11-09 13:26:38

是的,提交后脚本的第一个参数是存储库路径;在其中查找 /tags,并且仅在找到时才发送电子邮件。

Yes, the first argument to the post-commit script is the repository path; look for <whatever>/tags in there, and only send email if you find it.

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