如何从 Perl 中的 Subversion 预提交挂钩访问提交的文件?
我需要执行以下操作:
在 Perl 中编写预提交挂钩
Hook 应该检查所有正在提交的文件是否存在某些文本,如果该文本是,则失败not find
基本上,我需要一个读取正在提交的文件的 Perl 挂钩示例。
我我真的在寻找一些代码量最少的优雅解决方案。
笔记: Hook 应该使用 svnlook 或其他更好的方式来查找文件。
I need to do the following:
Write pre-commit hook in Perl
Hook should check all files being committed for presence of some text, and fail if that text is not found
Basically, I need an example of Perl hook that reads files being committed.
I am really looking for some elegant solution with the least amount of code.
Notes:
Hook should use svnlook
or other better way to find files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
预提交挂钩:
pre-commit hook:
听起来你已经弄清楚了基础:
你将找到一些有关编写预提交挂钩的信息手册。
It sounds like you've got the foundation figured out already:
You'll find some information on writing pre-commit hooks in the manual.
修改 Python 中的这个示例 可以完成您想要的操作。另请参阅存储库的
hooks
子目录以获取一些模板和 挂钩脚本 和 贡献的钩子脚本。It should not be too difficult to modify this example in Python to do what you want. See also the
hooks
subdirectory of your repository for some templates and hook scripts and contributed hook scripts.