2016-06-21 14:07:52 -04:00
|
|
|
# Project import/export
|
|
|
|
|
|
|
|
>**Note:**
|
2016-08-08 04:09:54 -04:00
|
|
|
>
|
|
|
|
> - [Introduced][ce-3050] in GitLab 8.9.
|
|
|
|
> - Importing will not be possible if the import instance version is lower
|
|
|
|
> than that of the exporter.
|
|
|
|
> - For existing installations, the project import option has to be enabled in
|
|
|
|
> application settings (`/admin/application_settings`) under 'Import sources'.
|
|
|
|
> - The exports are stored in a temporary [shared directory][tmp] and are deleted
|
|
|
|
> every 24 hours by a specific worker.
|
2016-06-21 14:07:52 -04:00
|
|
|
|
|
|
|
The GitLab Import/Export version can be checked by using:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# Omnibus installations
|
|
|
|
sudo gitlab-rake gitlab:import_export:version
|
|
|
|
|
|
|
|
# Installations from source
|
|
|
|
bundle exec rake gitlab:import_export:version RAILS_ENV=production
|
|
|
|
```
|
|
|
|
|
|
|
|
The current list of DB tables that will get exported can be listed by using:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
# Omnibus installations
|
|
|
|
sudo gitlab-rake gitlab:import_export:data
|
|
|
|
|
|
|
|
# Installations from source
|
|
|
|
bundle exec rake gitlab:import_export:data RAILS_ENV=production
|
|
|
|
```
|
|
|
|
|
|
|
|
[ce-3050]: https://gitlab.com/gitlab-org/gitlab-ce/issues/3050
|
2016-06-22 05:31:07 -04:00
|
|
|
[tmp]: ../../development/shared_files.md
|