diff --git a/tldr/jira-issue b/tldr/jira-issue new file mode 100644 index 00000000..f71f16c5 --- /dev/null +++ b/tldr/jira-issue @@ -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: . + +- 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}}` diff --git a/tldr/jira-issues b/tldr/jira-issues new file mode 100644 index 00000000..6ead01bf --- /dev/null +++ b/tldr/jira-issues @@ -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` diff --git a/tldr/jira-me b/tldr/jira-me new file mode 100644 index 00000000..cbe919d9 --- /dev/null +++ b/tldr/jira-me @@ -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: . + +- 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]}}` diff --git a/tldr/jira-sprint b/tldr/jira-sprint new file mode 100644 index 00000000..e0d72acf --- /dev/null +++ b/tldr/jira-sprint @@ -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: . + +- 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` diff --git a/tldr/jira-sprints b/tldr/jira-sprints new file mode 100644 index 00000000..456a7c9c --- /dev/null +++ b/tldr/jira-sprints @@ -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` diff --git a/tldr/linux/coredumpctl b/tldr/linux/coredumpctl index a6497d85..1b37be80 100644 --- a/tldr/linux/coredumpctl +++ b/tldr/linux/coredumpctl @@ -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}}` diff --git a/tldr/vibe b/tldr/vibe new file mode 100644 index 00000000..6aff70cc --- /dev/null +++ b/tldr/vibe @@ -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: . + +- 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}}"`