Git web API wrapper written in Kotlin. It's git, but all command line for when a gui is just too much effort.
Run mvn package
. Add repository location to PATH environment variable.
Usage: glazy [-hV] [COMMAND]
A command line interface to the github api.
-h, --help Show this help message and exit.
-V, --version Print version information and exit.
Commands:
issue Perform operations on repository issues
repo Perform operations on a repository.
cache Perform operations on the glazy cache.
pull Perform operations on pull requests
label Perform operations on repository labels
collab Perform operations on repository collaborators.
Pass the --help
option to any subcommand to view its usage text.
Much of the functionality of this project relies on the local git configuration, specifically the github.user
and
github.token
fields. To properly configure these fields please use the following commands:
git config --global github.user <username>
git config --global github.token <token>