A CLI application that integrates with Jira. After annoyance by having to leave Vim / IDE / Editor to check something in jira, I created a little application that brings jira issues straight into the terminal.
There are multiple ways of installing this software.
> brew tap sbvalois/sbvalois
> brew install gojira
- Find the newest release under releases
- Download the correct version for your system.
- Add the binary to your path for convenience.
This requires you to have go installed on your computer.
Simply run the command to install it in go's bin
directory
> go install
Run the Gojira setup wizard
> gojira setup
Gets all issues with status todo
/ open
> gojira issues open
Gets all issues with status in progress
> gojira issues inprogress
Prints information of a single issue
> gojira issue {{ISSUE-123}}
Sets an issue to in progress
> gojira issue start {{ISSUE-123}}
Sets an issue to review
> gojira issue review {{ISSUE-123}}
Sets an issue to done
> gojira issue done {{ISSUE-123}}
Sets an issue back to open
> gojira issue open {{ISSUE-123}}
Opens a specific jira issue in your default browser
> gojira issue browser {{ISSUE-123}}