我可以创建预结账 cvs 挂钩吗
我想阻止某些用户查看我的 cvs 存储库中的某些代码模块。我已经实现了预提交挂钩,可以防止这些相同的用户将代码提交到特定模块,但我没有看到任何方法来阻止同一模块的签出。
有谁知道如何使用钩子来防止 CVS 检出某些模块?
I would like to prevent certain users from checking out certain modules of code in my cvs repo. I have already implemented pre-commit hooks that prevent those same users from committing code to particular module, but I don't see any way to prevent a checkout of that same module.
Does anyone know of a way to prevent a CVS checkout of certain modules using hooks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此帖子提到了cvs_acls 脚本< /a>,在CVS的源代码分发中,在contrib/目录中。
它可以做你正在寻找的事情。
原始脚本仅用于防止提交,但也可以对其进行修补以防止签出。
更多替代方案在此CVS 常见问题解答。
This thread mentions the cvs_acls script, in the source code distribution of CVS, in the contrib/ directory.
It could do what you are looking for.
The original script is only for preventing commit, but it can be patched to prevent checkout as well.
More alternatives are presented in this CVS FAQ.