2019-07-08 04:50:38 -04:00
# Project import/export administration **(CORE ONLY)**
2016-06-21 14:07:52 -04:00
2020-05-21 02:08:25 -04:00
> - [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/3050) in GitLab 8.9.
2020-01-31 04:08:53 -05:00
> - From GitLab 11.3, import/export can use object storage automatically.
2020-04-27 02:09:51 -04:00
GitLab provides Rake tasks relating to project import and export. For more information, see:
2020-01-31 04:08:53 -05:00
- [Project import/export documentation ](../../user/project/settings/import_export.md ).
- [Project import/export API ](../../api/project_import_export.md ).
2020-06-17 14:09:08 -04:00
- [Developer documentation: project import/export ](../../development/import_export.md )
## Project import status
You can query an import through the [Project import/export API ](../../api/project_import_export.md#import-status ).
As described in the API documentation, the query may return an import error or exceptions.
## Import large projects
If you have a larger project, consider using a Rake task, as described in our [developer documentation ](../../development/import_project.md#importing-via-a-rake-task ).
2020-01-31 04:08:53 -05:00
2020-04-27 02:09:51 -04:00
## Import/export tasks
2020-01-31 04:08:53 -05:00
The GitLab import/export version can be checked by using the following command:
2016-06-21 14:07:52 -04:00
2020-01-30 10:09:15 -05:00
```shell
2016-06-21 14:07:52 -04:00
# Omnibus installations
sudo gitlab-rake gitlab:import_export:version
# Installations from source
bundle exec rake gitlab:import_export:version RAILS_ENV=production
```
2020-01-31 04:08:53 -05:00
The current list of DB tables that will be exported can be listed by using the following command:
2016-06-21 14:07:52 -04:00
2020-01-30 10:09:15 -05:00
```shell
2016-06-21 14:07:52 -04:00
# Omnibus installations
sudo gitlab-rake gitlab:import_export:data
# Installations from source
bundle exec rake gitlab:import_export:data RAILS_ENV=production
```
2020-01-31 04:08:53 -05:00
Note the following:
2020-02-10 22:09:13 -05:00
- Importing is only possible if the version of the import and export GitLab instances are
compatible as described in the [Version history ](../../user/project/settings/import_export.md#version-history ).
- The project import option must be enabled in
application settings (`/admin/application_settings/general`) under **Import sources** , which is available
2020-07-28 23:09:51 -04:00
under **Admin Area > Settings > Visibility and access controls** .
2020-01-31 04:08:53 -05:00
- The exports are stored in a temporary [shared directory ](../../development/shared_files.md )
and are deleted every 24 hours by a specific worker.