Guillaume Hérail

Ramblings in Frenglish

jira

Jan 4, 2021
JIRA on the CLI Small discovery I’ve made a while ago: jira. It’s a small go binary that can do about everything you want on JIRA. Let’s first log into our JIRA instance: mkdir ~/.jira.d/ echo 'endpoint: jira.company.com' > ~/.jira.d/config.yml jira login And then create our first issue! jira create -p PROJ -i Task -b This command will create a Task in PROJECT and then open it in your browser. Upon creation, it’ll fire up your $EDITOR for you to edit the fields you need.