Reputation: 9544
I have a certain user (backup) that regularly clones/fetches all the repositories in our gitolite system. I have to manually add
R = backup
to every single repo I have. Is there an easier way to give this user access to every single repo?
Upvotes: 2
Views: 809
Reputation: 1323135
Note that if, for some reason, you need to exclude a repo from user 'backup
' access, you can add a deny rule:
repo gitolite-admin
- = backup
option deny-rules = 1
repo @all
R = backup
Here, you wouldn't backup the main gitolite-admin
repo, for instance.
Upvotes: 4