mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
747 B
Plaintext
30 lines
747 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# jira sprint
|
|
|
|
> Manage sprints in a Jira project board.
|
|
> More information: <https://github.com/ankitpokhrel/jira-cli#sprint>.
|
|
|
|
- List sprints and their issues in an explorer view:
|
|
|
|
`jira sprint {{[ls|list]}}`
|
|
|
|
- List issues from the current sprint:
|
|
|
|
`jira sprint {{[ls|list]}} --current`
|
|
|
|
- List issues from the current sprint, assigned to me:
|
|
|
|
`jira sprint {{[ls|list]}} --current {{[-a|--assignee]}} $(jira me)`
|
|
|
|
- List high priority issues from the current sprint assigned to me:
|
|
|
|
`jira sprint {{[ls|list]}} --current {{[-a|--assignee]}} $(jira me) {{[-y|--priority]}} High`
|
|
|
|
- Add issues to a sprint using an interactive prompt:
|
|
|
|
`jira sprint add`
|