diff options
author | Patricio Cano <patricio@gitlab.com> | 2014-10-30 12:38:09 -0500 |
---|---|---|
committer | Patricio Cano <patricio@gitlab.com> | 2014-10-30 12:38:09 -0500 |
commit | 19caccf77390c320b1ff4579bb72a638f5d553cf (patch) | |
tree | 035d30684d470a2d18d178d44057e04272c59ff0 /doc/raketasks | |
parent | e712583a5e0c3fdb74abcd7c394237354edb3b45 (diff) | |
download | gitlab-ce-19caccf77390c320b1ff4579bb72a638f5d553cf.tar.gz |
Added the satellites:create step, that might be necessary after the import.
Corrected syntax.
Diffstat (limited to 'doc/raketasks')
-rw-r--r-- | doc/raketasks/import.md | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/doc/raketasks/import.md b/doc/raketasks/import.md index e7dc4138f6f..e78e1480405 100644 --- a/doc/raketasks/import.md +++ b/doc/raketasks/import.md @@ -11,7 +11,7 @@ Notes: How to use: -1. Create a new folder inside the git repositories path. +1. Create a new folder inside the git repositories path. This will be the name of the new group. - For omnibus-gitlab it is located at: `/var/opt/gitlab/git-data/repositories` - For manual installations it is usually located at: `/home/git/repositories` or you can see where @@ -41,23 +41,31 @@ gitlab_shell: 2. Copy your bare repositories inside this newly created folder, e.g.: ``` -$ cp /old/git/foo.git /home/git/repositories/new_group/foo.git +$ cp -r /old/git/foo.git/ /home/git/repositories/new_group/ ``` -3. Run the command below depending on you type of installation: +3. Run the commands below depending on you type of installation: #### Omnibus Installation ``` $ sudo gitlab-rake gitlab:import:repos ``` +``` +$ sudo gitlab-rake gitlab:satellites:create +``` #### Manual Installation +Before running these commands you need to change the directory to where your GitLab installation is located: + ``` $ cd /home/git/gitlab $ sudo -u git -H bundle exec rake gitlab:import:repos RAILS_ENV=production ``` +``` +$ sudo -u git -H bundle exec rake gitlab:satellites:create +``` #### Example output: |