Export JIRA Data

2019-03-26 03:42发布

What is the best way to export all JIRA data (projects, issues, ...)? I saw that there is an API and a plugin mechanism which probably can provide all the information. But what is the easiest way to export the data? Does it work out of the box or do I have to implement a plugin?

5条回答
我只想做你的唯一
2楼-- · 2019-03-26 03:47

I'm using JIRA v1000.747.1 which has native export to CSV of issues.

If you navigate to https://[your-jira-instance]/issues you should see a query screen with results. Fine tune that via the UI or go to the Advanced menu to do more complicated JQL. Then you can click the export button (upper right) to export to XML/Word/HTML/CSV.

查看更多
够拽才男人
3楼-- · 2019-03-26 03:48

The following add-ons will work out of the box, they are configurable and there is no need to code anything:

You can use both free for 30 days, which should be sufficient to migrate your data to the new issue tracker.

查看更多
爷的心禁止访问
4楼-- · 2019-03-26 03:53

You can use this web application to export the data to Word:

http://www.jiratoword.com/

It is quite basic and it could be improved but it is free.

查看更多
相关推荐>>
5楼-- · 2019-03-26 04:07

I have written a little ruby utility that uses JIRA's REST API to export all tickets for a given project to the local file system. It is available as a ruby gem, so the installation is trivial.

The tickets are saved as individual JSON files. The tool also supports incremental updates.

查看更多
Fickle 薄情
6楼-- · 2019-03-26 04:08

Generally, there are two main approaches to backup your JIRA data. The first one is to back up your database in which JIRA info is stored. The second one is to use the “Backup Data to XML feature”, which is a JIRA feature. Personally, I prefer the second one, because it can be restored to any database engine (MySQL, MSSQL, etc). In addition, as far as it is Xml, it can be compressed to a great extent.

查看更多
登录 后发表回答