OSDN Git Service

7a2a4b668bd0e2852baad1fa52983c6b8d93829e
[wvm/gitlab.git] / doc / raketasks / features.md
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
17 ```
18
19
20 ### Enable auto merge
21
22 This command will enable the auto merge feature. 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:enable_automerge
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 ```