Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-15 00:23:31 +00:00
parent af00816a7d
commit 27996b553a
7 changed files with 150 additions and 1 deletions

41
tldr/jira-issue Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jira issue
> Manage issues in a Jira project.
> More information: <https://github.com/ankitpokhrel/jira-cli#issue>.
- List recent issues:
`jira issue {{[ls|list]}}`
- List issues assigned to a specific user:
`jira issue {{[ls|list]}} {{[-a|--assignee]}} "{{email_or_display_name}}"`
- List high priority issues assigned to me:
`jira issue {{[ls|list]}} {{[-a|--assignee]}} $(jira me) {{[-y|--priority]}} High`
- Create an issue using an interactive prompt:
`jira issue create`
- Edit an issue using an interactive prompt:
`jira issue edit`
- Assign user to an issue using an interactive prompt:
`jira issue {{[asg|assign]}}`
- Move an issue to a certain state:
`jira issue {{[mv|move]}} {{issue_id}} "{{In Progress}}"`
- Open an issue in the terminal using `less`:
`jira issue view {{issue_id}}`

12
tldr/jira-issues Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jira issues
> This command is an alias of `jira issue`.
- View documentation for the original command:
`tldr jira issue`

25
tldr/jira-me Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jira me
> Display the configured `jira` user.
> More information: <https://github.com/ankitpokhrel/jira-cli#commands>.
- Display the configured `jira` user:
`jira me`
- List issues assigned to me:
`jira issue {{[ls|list]}} {{[-a|--assignee]}} $(jira me)`
- List issues from the current sprint, assigned to me:
`jira sprint {{[ls|list]}} --current {{[-a|--assignee]}} $(jira me)`
- Display help:
`jira me {{[-h|--help]}}`

29
tldr/jira-sprint Normal file
View File

@@ -0,0 +1,29 @@
---
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`

12
tldr/jira-sprints Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jira sprints
> This command is an alias of `jira sprint`.
- View documentation for the original command:
`tldr jira sprint`

View File

@@ -16,7 +16,7 @@ source: https://github.com/tldr-pages/tldr.git
`coredumpctl list {{program}}`
- Show information about the core dumps matching a program with `PID`:
- Show information about the core dumps matching a program with PID:
`coredumpctl info {{PID}}`

30
tldr/vibe Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# vibe
> Natural language code assistant for the terminal, powered by MistralAI.
> Reads and edits files in your current directory to fulfill requests.
> More information: <https://github.com/mistralai/mistral-vibe#usage>.
- Start an interactive Mistral Vibe session in the current directory:
`vibe`
- Resume the most recent Vibe session in the current directory:
`vibe {{[-c|--continue]}}`
- Start an interactive Vibe session to setup an API key then exit:
`vibe --setup`
- Run a single Vibe prompt in the terminal with automatic approval of file edits and commands:
`vibe {{[-p|--prompt]}} "{{your_prompt}}"`
- Run a single Vibe prompt in the terminal with the specified output format:
`vibe --output {{json|text|streaming}} {{[-p|--prompt]}} "{{your_prompt}}"`