Commit 114e67564dbcfadafc237459a7549e5a85640817

Authored by dosire
1 parent f420ae4b

The 4.0 raketask is no longer needed and rebuilding of missing satellites is automatic.

doc/raketasks/README.md
1 1 + [Backup restore](backup_restore.md)
2 2 + [Cleanup](cleanup.md)
3   -+ [Features](features.md)
4 3 + [Maintenance](maintenance.md) and self-checks
5 4 + [User management](user_management.md)
6 5 + [Web hooks](web_hooks.md)
... ...
doc/raketasks/features.md
... ... @@ -1,36 +0,0 @@
1   -### Enable usernames and namespaces for user projects
2   -
3   -This command will enable the namespaces feature introduced in v4.0. It will move every project in its namespace folder.
4   -
5   -Note:
6   -
7   -* Because the **repository location will change**, you will need to **update all your git url's** to point to the new location.
8   -* Username can be changed at [Profile / Account](/profile/account)
9   -
10   -**Example:**
11   -
12   -Old path: `git@example.org:myrepo.git`
13   -New path: `git@example.org:username/myrepo.git` or `git@example.org:groupname/myrepo.git`
14   -
15   -```
16   -bundle exec rake gitlab:enable_namespaces RAILS_ENV=production
17   -```
18   -
19   -
20   -### Rebuild project satellites
21   -
22   -This command will build missing satellites for projects. After this you will be able to **merge a merge request** via GitLab and use the **online editor**.
23   -
24   -```
25   -bundle exec rake gitlab:satellites:create RAILS_ENV=production
26   -```
27   -
28   -Example output:
29   -
30   -```
31   -Creating satellite for abcd.git
32   -[git clone output]
33   -Creating satellite for abcd2.git
34   -[git clone output]
35   -done
36   -```