Reputation: 7709
I want to configure gitolite so that
The best thing I came up with is this:
repo foo bar
RW = @developers
R master = @developers
R stage1 = @developers
But the first rule gives developers full access to all branches. So how can this be done?
Upvotes: 3
Views: 1025
Reputation: 1329262
Following this example, the order of those access rules should work (normal then VREF):
- master = @developers
- stage1 = @developers
RW = @developers
See "access control rule matching" for the exact access control rule application recipe.
And since gitolite 3.6.1, you can trace this logic quickly and easily:
gitolite access -s foo adeveloper W any
More generally, your initial setting should work:
As commented by Mort, there is no VREF rules here, only "refex" rules as they apply to real refs in the repo
Since no refex is supplied, it defaults to refs/.*
.
Upvotes: 2