gitlab-org--gitlab-foss/doc/raketasks/import.md

52 lines
1.4 KiB
Markdown
Raw Normal View History

2014-10-30 18:10:07 +00:00
# Import bare repositories into your GitLab instance
2014-10-31 11:51:25 +00:00
## Notes
- The owner of the project will be the first admin
- The groups will be created as needed
- The owner of the group will be the first admin
- Existing projects will be skipped
2014-10-31 11:51:25 +00:00
## How to use
2014-10-30 18:10:07 +00:00
### 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` by default, unless you changed
it in the `/etc/gitlab/gitlab.rb` file.
- For manual installations, it is usually located at: `/home/git/repositories` or you can see where
your repositories are located by looking at `config/gitlab.yml` under the `gitlab_shell => repos_path` entry.
2014-10-30 18:14:31 +00:00
### Copy your bare repositories inside this newly created folder:
```
$ cp -r /old/git/foo.git/ /home/git/repositories/new_group/
```
### Run the command below depending on your type of installation:
2014-10-30 18:10:07 +00:00
#### Omnibus Installation
```
$ sudo gitlab-rake gitlab:import:repos
```
2014-10-30 18:10:07 +00:00
#### Manual Installation
Before running this command 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
```
2014-10-31 11:51:25 +00:00
#### Example output
```
Processing abcd.git
* Created abcd (abcd.git)
Processing group/xyz.git
* Created Group group (2)
* Created xyz (group/xyz.git)
[...]
```