https://github.com/rsteube/go-jira-cli
simple jira command line client
https://github.com/rsteube/go-jira-cli
cli go-jira jira
Last synced: about 1 year ago
JSON representation
simple jira command line client
- Host: GitHub
- URL: https://github.com/rsteube/go-jira-cli
- Owner: rsteube
- License: mit
- Created: 2021-05-16T19:14:29.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T22:41:39.000Z (over 2 years ago)
- Last Synced: 2025-03-29T17:41:20.032Z (over 1 year ago)
- Topics: cli, go-jira, jira
- Language: Go
- Homepage:
- Size: 483 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-jira-cli
Simple [Jira](https://www.atlassian.com/software/jira) terminal client based on [go-jira](https://github.com/andygrunwald/go-jira) and [github cli](https://github.com/cli/cli).
[](https://asciinema.org/a/414802)
## Example
```sh
docker-compose run --rm gj
gj issue view --host
```
## Getting Started
```sh
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
```sh
#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)
```