gitolite/doc/groups.mkd

31 lines
874 B
Markdown
Raw Normal View History

# group definitions
2012-03-16 02:54:47 +01:00
You can group repos or users for convenience. The syntax is the same for both
and does not distinguish; until you *use* the group name it could really be
either.
Here's an example:
@developers = dilbert alice wally
Group definitions accumulate; this is the same as the above:
@developers = dilbert
@developers = alice
@developers = wally
You can use one group in another group definition; the values will be expanded
right there (meaning later additions will not appear in the second group).
@developers = dilbert alice
@interns = ashok
@staff = @interns @developers
@developers = wally
# wally is NOT part of @staff
## special group `@all`
2012-03-16 02:54:47 +01:00
`@all` is a special group name that is often convenient to use if you really
mean "all repos" or "all users".