Simple Jira terminal client based on go-jira and github cli.
docker-compose run --rm gj
gj issue view --host <TAB>gj auth login [host] # e.g. 'issues.apache.org/jira'- anonymous without credentials
- basic auth with
usernameandtoken - cookie with
usernameandpassword(only cookie will be stored)
#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)