2014-05-27 08:12:15 -04:00
|
|
|
# User management
|
|
|
|
|
2014-04-24 18:48:22 -04:00
|
|
|
## Add user as a developer to all projects
|
2012-12-02 07:56:04 -05:00
|
|
|
|
2014-01-27 06:12:58 -05:00
|
|
|
```bash
|
2014-06-23 04:38:22 -04:00
|
|
|
# omnibus-gitlab
|
|
|
|
sudo gitlab-rake gitlab:import:user_to_projects[username@domain.tld]
|
|
|
|
|
2015-01-28 01:50:31 -05:00
|
|
|
# installation from source
|
2014-08-18 17:07:32 -04:00
|
|
|
bundle exec rake gitlab:import:user_to_projects[username@domain.tld] RAILS_ENV=production
|
2012-12-02 07:56:04 -05:00
|
|
|
```
|
|
|
|
|
2014-04-24 18:48:22 -04:00
|
|
|
## Add all users to all projects
|
2012-12-02 07:56:04 -05:00
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
2014-04-24 18:48:22 -04:00
|
|
|
- admin users are added as masters
|
2012-12-02 07:56:04 -05:00
|
|
|
|
2014-01-27 06:12:58 -05:00
|
|
|
```bash
|
2014-06-23 04:38:22 -04:00
|
|
|
# omnibus-gitlab
|
|
|
|
sudo gitlab-rake gitlab:import:all_users_to_all_projects
|
|
|
|
|
2015-01-28 01:50:31 -05:00
|
|
|
# installation from source
|
2014-08-18 17:07:32 -04:00
|
|
|
bundle exec rake gitlab:import:all_users_to_all_projects RAILS_ENV=production
|
2012-12-02 07:56:04 -05:00
|
|
|
```
|
2013-11-02 18:12:29 -04:00
|
|
|
|
2014-04-24 18:48:22 -04:00
|
|
|
## Add user as a developer to all groups
|
2013-11-02 18:12:29 -04:00
|
|
|
|
2014-04-24 18:48:22 -04:00
|
|
|
```bash
|
2014-06-23 04:38:22 -04:00
|
|
|
# omnibus-gitlab
|
|
|
|
sudo gitlab-rake gitlab:import:user_to_groups[username@domain.tld]
|
|
|
|
|
2015-01-28 01:50:31 -05:00
|
|
|
# installation from source
|
2014-08-18 17:07:32 -04:00
|
|
|
bundle exec rake gitlab:import:user_to_groups[username@domain.tld] RAILS_ENV=production
|
2013-11-02 18:12:29 -04:00
|
|
|
```
|
|
|
|
|
2014-04-24 18:48:22 -04:00
|
|
|
## Add all users to all groups
|
2013-11-02 18:12:29 -04:00
|
|
|
|
|
|
|
Notes:
|
|
|
|
|
2014-04-24 18:48:22 -04:00
|
|
|
- admin users are added as owners so they can add additional users to the group
|
2013-11-02 18:12:29 -04:00
|
|
|
|
2014-04-24 18:48:22 -04:00
|
|
|
```bash
|
2014-06-23 04:38:22 -04:00
|
|
|
# omnibus-gitlab
|
|
|
|
sudo gitlab-rake gitlab:import:all_users_to_all_groups
|
|
|
|
|
2015-01-28 01:50:31 -05:00
|
|
|
# installation from source
|
2014-08-18 17:07:32 -04:00
|
|
|
bundle exec rake gitlab:import:all_users_to_all_groups RAILS_ENV=production
|
2013-11-02 18:12:29 -04:00
|
|
|
```
|