2019-02-15 15:39:39 +05:30
|
|
|
# Importing Issues from CSV
|
|
|
|
|
|
|
|
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/23532) in GitLab 11.7.
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
Issues can be imported to a project by uploading a CSV file. Supported fields are
|
|
|
|
`title` and `description`.
|
|
|
|
|
|
|
|
The user uploading the CSV file will be set as the author of the imported issues.
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
> **Note:** A permission level of `Developer` or higher is required to import issues.
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
To import issues:
|
|
|
|
|
|
|
|
1. Ensure your CSV file meets the [file format](#csv-file-format) requirements.
|
|
|
|
1. Navigate to a project's Issues list page.
|
|
|
|
1. If existing issues are present, click the import icon at the top right, next to the **Edit issues** button.
|
|
|
|
1. For a project without any issues, click the button labeled **Import CSV** in the middle of the page.
|
|
|
|
1. Select the file and click the **Import issues** button.
|
|
|
|
|
|
|
|
The file is processed in the background and a notification email is sent
|
|
|
|
to you once the import is completed.
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
## CSV File Format
|
|
|
|
|
|
|
|
### Header row
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
CSV files must contain a header row beginning with at least two columns, `title` and `description`, in that order.
|
|
|
|
If additional columns are present, they will be ignored.
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
### Column separator
|
|
|
|
|
|
|
|
The column separator is automatically detected from the header row.
|
|
|
|
|
|
|
|
Supported separator characters are: commas (`,`), semicolons (`;`), and tabs (`\t`).
|
|
|
|
|
|
|
|
### Row separator
|
|
|
|
|
|
|
|
Lines ending in either `CRLF` or `LF` are supported.
|
|
|
|
|
|
|
|
### Quote character
|
|
|
|
|
|
|
|
The double-quote (`"`) character is used to quote fields so you can use the column separator within a field. To insert
|
|
|
|
a double-quote (`"`) within a quoted field, use two double-quote characters in succession, i.e. `""`.
|
|
|
|
|
|
|
|
### Data rows
|
|
|
|
|
|
|
|
After the header row, succeeding rows must follow the same column order. The issue title is required while the
|
|
|
|
description is optional.
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
### File size
|
|
|
|
|
|
|
|
The limit depends on the configuration value of Max Attachment Size for the GitLab instance.
|
|
|
|
|
|
|
|
For GitLab.com, it is set to 10 MB.
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
## Sample Data
|
|
|
|
|
|
|
|
```csv
|
|
|
|
title,description
|
|
|
|
My Issue Title,My Issue Description
|
|
|
|
Another Title,"A description, with a comma"
|
|
|
|
"One More Title","One More Description"
|
|
|
|
```
|