On Wed, Aug 25, 2021 at 7:36 AM Philipp Mueller <philipp.a.muel...@mahle.com> wrote: > Hello, > > I´m new to this topic and I have quite a hard time getting into programming > hooks for my problem. I need a hook which can distinguish between three > different user groups: > Group A: can do anything (delete tags and trunks, commit without comment) > Group B: can commit to tags and delete tags/branches; CANNOT delete trunks > and CANNOT commit without comment > Group C: can commit to tags; CANNOT change or delete anything > > Is there any way to do that?
I've used a predecessor of these pre-commit hook scripts for implementing similar checks at my company: https://github.com/qazwart/SVN-Precommit-Kitchen-Sink-Hook They work really well and are quite easy to configure IMHO. HTH, -- Johan