Documentation
¶
Overview ¶
Command jiraexport prints the named Jira issues, and their comments, in RFC 5322 mail message format (email).
Usage:
jiraexport [ -d duration ] issue...
The options are:
-d duration Exclude any issues and comments unmodified since duration. Duration may be given in the format accepted by time.ParseDuration. For example, 24h (24 hours). The default is 7 days. -c Only print comments, excluding the issue.
Example ¶
Print the last day's updates to tickets SRE-1234 and SRE-5678:
jiraexport -d 24h SRE-1234 SRE-5678
Archive the first 500 tickets of a project in a mbox file:
for i in `seq 1 500` do jiraexport TEST-$i >>issues.mbox done
Click to show internal directories.
Click to hide internal directories.