rsteube / go-jira-cli

simple jira command line client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-jira-cli

Simple Jira terminal client based on go-jira and github cli.

asciicast

Example

docker-compose run --rm gj
gj issue view --host <TAB>

Getting Started

gj auth login [host] # e.g. 'issues.apache.org/jira'
  • anonymous without credentials
  • basic auth with username and token
  • cookie with username and password (only cookie will be stored)

Shell completion

#bash
source <(gj _carapace)

# elvish
eval (gj _carapace|slurp)

# fish
gj _carapace | source

# oil
source <(gj _carapace)

# powershell
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
gj _carapace | Out-String | Invoke-Expression

# xonsh
COMPLETIONS_CONFIRM=True
exec($(gj _carapace))

# zsh
source <(gj _carapace)

About

simple jira command line client

License:MIT License


Languages

Language:Go 99.1%Language:Dockerfile 0.9%