Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_management.md « raketasks « doc - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5b173fde65b116600486bbc278a60e17639faf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# User management

### Add user as a developer to all projects

```bash
bundle exec rake gitlab:import:user_to_projects[username@domain.tld]
```


### Add all users to all projects

Notes:

* admin users are added as masters

```bash
bundle exec rake gitlab:import:all_users_to_all_projects
```

### Add user as a developer to all groups

```
bundle exec rake gitlab:import:user_to_groups[username@domain.tld]
```

### Add all users to all groups

Notes:

* admin users are added as owners so they can add additional users to the group

```
bundle exec rake gitlab:import:all_users_to_all_groups
```