2.1.7 • Published 4 months ago
git-jira-fast-ticket v2.1.7
git-jira-fast-ticket
git-jira-fast-ticket
is a CLI tool that allows you to create Jira tickets and automatically switch to a new branch
named after the created ticket.
Installation
To install this tool globally via npm, run the following command:
npm install -g git-jira-fast-ticket
Usage
Before using the command, ensure the following environment variables are set:
JIRA_URL
: The base URL for your Jira instance.JIRA_EMAIL
: Your Jira account email.JIRA_PAT
: Your Jira personal access token (PAT).
Command:
git jira-fast-ticket PROJECT_KEY "Title" "Description"
PROJECT_KEY
: The Jira project key.Title
: The summary/title of the ticket.Description
: (Optional) The description of the ticket; defaults to the title if not provided.
This command will:
- Create a new Jira task in the specified project.
- Automatically create and checkout a new Git branch named after the created ticket.