A cli tool for jira interaction
You need to have node.js installed on your computer. Then clone this repo and create a .env file at the root of the project. There you will set the following lines:
JIRA_EMAIL_ADDRESS=<your_email_address_used_in_jira>
JIRA_TOKEN=<your_jira_token>
JIRA_HOST=<your_jira_server_url>
Generate your jira token by following this link
Install the project globally :
npm install -gjira --helpView list of project
jira project listView list of issues in one project
jira issue list -p <project_key>The -s can be used to filter issues by status. Ex :
jira issue list -p <project_key> -s="In Progress"Open an issue in the browser
When invoqued from a git repo, this command attempt to open the issue in the browser,
assuming that the issue key matchs the git branch name.
The -i option can be used to provide the issue key.
jira issue view