View the issues of a GitHub or GitLab repository directly from your command line.
- Browse all issues (open/closed) from both local and remote repositories
- View the discussion for each issue
- Discussions have fully rendered markdown as well as correctly colored tags
go install github.com/glad-dev/gin@latest
Authenticate with the GiHub/GitLab APIs by importing tokens with gin config add
.
If $XDG_CONFIG_HOME
is set, the tokens are stored at $XDG_CONFIG_HOME/gin/
, otherwise ~/.config/gin
is used.
Create a token with scopes read_api
, read_user
and read_repository
in Preferences > Access Tokens
.
Create a classic token with scopes repo
and read_user
in Settings > Developer settings > Personal access token
.
- To view the issues of a remote repository, use
gin issues --url https://github.com/path/to/your/repo
. - To view the issues of the repository you're currently in, use
gin issues
This project would not have been possible without charmbracelet and their bubbletea and glow libraries.