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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2014-06-23 12:38:22 +0400
committerJacob Vosmaer <contact@jacobvosmaer.nl>2014-06-23 12:38:22 +0400
commitffece96dd13fc99e24d65f2a374572c218c1f892 (patch)
tree5c965cd879f5472f515e6657d5618a3c6bd0d319 /doc/raketasks/user_management.md
parent73c1030da1318284495288461210e8d145aa7181 (diff)
Spell out rake tasks for omnibus-gitlab
Diffstat (limited to 'doc/raketasks/user_management.md')
-rw-r--r--doc/raketasks/user_management.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/raketasks/user_management.md b/doc/raketasks/user_management.md
index 81378494c6b..eb9eebb4b4a 100644
--- a/doc/raketasks/user_management.md
+++ b/doc/raketasks/user_management.md
@@ -3,6 +3,10 @@
## Add user as a developer to all projects
```bash
+# omnibus-gitlab
+sudo gitlab-rake gitlab:import:user_to_projects[username@domain.tld]
+
+# installation from source or cookbook
bundle exec rake gitlab:import:user_to_projects[username@domain.tld]
```
@@ -13,12 +17,20 @@ Notes:
- admin users are added as masters
```bash
+# omnibus-gitlab
+sudo gitlab-rake gitlab:import:all_users_to_all_projects
+
+# installation from source or cookbook
bundle exec rake gitlab:import:all_users_to_all_projects
```
## Add user as a developer to all groups
```bash
+# omnibus-gitlab
+sudo gitlab-rake gitlab:import:user_to_groups[username@domain.tld]
+
+# installation from source or cookbook
bundle exec rake gitlab:import:user_to_groups[username@domain.tld]
```
@@ -29,5 +41,9 @@ Notes:
- admin users are added as owners so they can add additional users to the group
```bash
+# omnibus-gitlab
+sudo gitlab-rake gitlab:import:all_users_to_all_groups
+
+# installation from source or cookbook
bundle exec rake gitlab:import:all_users_to_all_groups
```