Using group(8)

group(8) is a frontend to groupadd(8), groupmod(8),groupinfo(8), and groupdel(8).

Create a new group

New groups can help with handling permissions. For example, we could create a new group to give special rights for code committers:

# groupadd commit

Then, we can assign username to the group commit:

# usermod -G commit username