SVN - 在开始提交挂钩中获取提交大小?
实际上,我在预提交挂钩中检查提交的大小。但在我可以拒绝预提交中的提交之前,所有文件都已提交。
例如,如果大小限制为 10 MB,并且用户发送 1 GB 文件,则这 1 GB 将完全传输到我的服务器,然后预提交挂钩将拒绝事务。
如果在所有文件传输到服务器之前提交大小大于存储库限制,我想拒绝事务。
这怎么可能?
Actually, I check the size of a commit in the pre-commit hook. But all the files are commited before I can refuse the commit in pre-commit.
For example, if the size limit is 10 MB and the user sends 1 GB file, the 1 GB will be completely transfered to my server and then the pre-commit hook will refuse the transaction.
I want to refuse the transaction if the commit size is greater that the repository limit before all the files are transfered to the server.
How is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
TSVN 支持客户端挂钩,发行说明位于此处,以及文档是此处。
TSVN Supports client side hooks, the release notes are here, and the documentation is here.
请参阅 apache 指令 LimitRequestBody 和 LimitXMLRequestBody
http://httpd.apache.org/ docs/2.2/mod/core.html#limitrequestbody
http://httpd.apache.org/docs/2.2/mod/core.html#limitxmlrequestbody
See the apache directives LimitRequestBody and LimitXMLRequestBody
http://httpd.apache.org/docs/2.2/mod/core.html#limitrequestbody
http://httpd.apache.org/docs/2.2/mod/core.html#limitxmlrequestbody