Book Image

JIRA 6.x Administration Cookbook

By : Patrick Li
Book Image

JIRA 6.x Administration Cookbook

By: Patrick Li

Overview of this book

Table of Contents (16 chapters)
JIRA 6.x Administration Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Importing data from CSV


JIRA comes with a number of importers to import data from other popular issue trackers. If you want to import data from an unsupported issue tracker, JIRA provides a generic comma-separated values (CSV) importer. This is also quite useful if you want to import data from some generic applications, such as MS Excel.

In this recipe, we will look at importing data from a CSV file.

How to do it…

Perform the following steps to use the CSV importer:

  1. Navigate to Administration | System | External System Import.

  2. Select the Import from Comma-separated values (CSV) option.

  3. Select the source CSV file in the CSV Source File field:

  4. Expand the Advanced section and select the file encoding used in the CSV file and the delimiter if you are not using the default comma (,) character. Click on Next to go to step 2.

  5. Select the project you want to import your CSV data to and the format used to represent the date. This is important; otherwise, JIRA may not be able to parse the date values contained...