Skip to content

Git issues extension to list issues of a Git project

License

Notifications You must be signed in to change notification settings

arnochauveau/git-issues

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Git Issues

NPM

Description

git issues extension to list issues of a Git repository.

Install globally to have it automatically work (this command will probably require a sudo):

npm install -g git-issues

For non-global installs or repository clones, add the following path to your PATH (for example in .bash_profile):

<INSTALLED_OR_CLONE_LOCATION>/bin

Usage

For public repositories:

$ git issues
┌─┬─────────────────────────────────────────────────┬─────────────────────────────────────────────────┐
│#│Title                                            │Status                                           │
├─┼─────────────────────────────────────────────────┼─────────────────────────────────────────────────┤
│1│Test issue Open (Do not close!)                  │OPEN                                             │
├─┼─────────────────────────────────────────────────┼─────────────────────────────────────────────────┤
│4│Use le-table instead                             │OPEN                                             │
├─┼─────────────────────────────────────────────────┼─────────────────────────────────────────────────┤
│5│Cannot read property '2' of null                 │OPEN                                             │
├─┼─────────────────────────────────────────────────┼─────────────────────────────────────────────────┤
│7│Cache user & password or access token into a file│OPEN                                             │
└─┴─────────────────────────────────────────────────┴─────────────────────────────────────────────────┘

For private repositories you must provide your Git provider username. If the password is not provided you will be prompted for one:

$ git issues -u gabipetrovay
Password:
┌─┬─────────────────────────────────────────────────┬─────────────────────────────────────────────────┐
│#│Title                                            │Status                                           │
├─┼─────────────────────────────────────────────────┼─────────────────────────────────────────────────┤
│1│Test issue Open (Do not close!)                  │OPEN                                             │
├─┼─────────────────────────────────────────────────┼─────────────────────────────────────────────────┤
│4│Use le-table instead                             │OPEN                                             │
├─┼─────────────────────────────────────────────────┼─────────────────────────────────────────────────┤
│5│Cannot read property '2' of null                 │OPEN                                             │
├─┼─────────────────────────────────────────────────┼─────────────────────────────────────────────────┤
│7│Cache user & password or access token into a file│OPEN                                             │
└─┴─────────────────────────────────────────────────┴─────────────────────────────────────────────────┘

Arguments

  • username|u: the Git provider username (mandatory for private repositories or private issue trackers)
  • password|p: the Git provider user password (considered only if the username is provided)
  • status|s: the type of issues to return. Must be one of: open (default), closed

Git Providers

  • both GitHub and BitBucket repositories are supported

About

Git issues extension to list issues of a Git project

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 93.9%
  • Shell 6.1%