permissions.md 4.08 KB
Newer Older
Marin Jankovski's avatar
Marin Jankovski committed
1 2
# Permissions

3
Users have different abilities depending on the access level they have in a particular group or project.
4

5
If a user is both in a project group and in the project itself, the highest permission level is used.
6

7 8
If a user is a GitLab administrator they receive all permissions.

9 10 11 12 13 14 15 16 17
## Project

| Action                                | Guest   | Reporter   | Developer   | Master   | Owner  |
|---------------------------------------|---------|------------|-------------|----------|--------|
| Create new issue                      | ✓       | ✓          | ✓           | ✓        | ✓      |
| Leave comments                        | ✓       | ✓          | ✓           | ✓        | ✓      |
| Pull project code                     |         | ✓          | ✓           | ✓        | ✓      |
| Download project                      |         | ✓          | ✓           | ✓        | ✓      |
| Create code snippets                  |         | ✓          | ✓           | ✓        | ✓      |
18 19
| Manage issue tracker                  |         | ✓          | ✓           | ✓        | ✓      |
| Manage labels                         |         | ✓          | ✓           | ✓        | ✓      |
20 21 22
| Create new merge request              |         |            | ✓           | ✓        | ✓      |
| Create new branches                   |         |            | ✓           | ✓        | ✓      |
| Push to non-protected branches        |         |            | ✓           | ✓        | ✓      |
23
| Force push to non-protected branches  |         |            | ✓           | ✓        | ✓      |
24 25 26
| Remove non-protected branches         |         |            | ✓           | ✓        | ✓      |
| Add tags                              |         |            | ✓           | ✓        | ✓      |
| Write a wiki                          |         |            | ✓           | ✓        | ✓      |
27
| Create new milestones                 |         |            |             | ✓        | ✓      |
28 29
| Add new team members                  |         |            |             | ✓        | ✓      |
| Push to protected branches            |         |            |             | ✓        | ✓      |
Ben Bodenmiller's avatar
Ben Bodenmiller committed
30
| Enable/disable branch protection      |         |            |             | ✓        | ✓      |
31
| Turn on/off prot. branch push for devs|         |            |             | ✓        | ✓      |
32 33
| Rewrite/remove git tags               |         |            |             | ✓        | ✓      |
| Edit project                          |         |            |             | ✓        | ✓      |
Ben Bodenmiller's avatar
Ben Bodenmiller committed
34 35
| Add deploy keys to project            |         |            |             | ✓        | ✓      |
| Configure project hooks               |         |            |             | ✓        | ✓      |
36 37 38
| Switch visibility level               |         |            |             |          | ✓      |
| Transfer project to another namespace |         |            |             |          | ✓      |
| Remove project                        |         |            |             |          | ✓      |
39
| Force push to protected branches      |         |            |             |          |        |
40
| Remove protected branches             |         |            |             |          |        |
41 42 43

## Group

44 45 46 47 48
In order for a group to appear as public and be browsable, it must contain at
least one public project.

Any user can remove themselves from a group, unless they are the last Owner of the group.

49 50 51 52 53 54 55
| Action                  | Guest | Reporter | Developer | Master | Owner |
|-------------------------|-------|----------|-----------|--------|-------|
| Browse group            | ✓     | ✓        | ✓         | ✓      | ✓     |
| Edit group              |       |          |           |        | ✓     |
| Create project in group |       |          |           | ✓      | ✓     |
| Manage group members    |       |          |           |        | ✓     |
| Remove group            |       |          |           |        | ✓     |