Metadata-Version: 1.0
Name: gh-cli
Version: 0.1.b
Summary: Command-line access to GitHub via github3.py
Home-page: https://github.com/sigmavirus24/github-cli
Author: Ian Cordasco
Author-email: graffatcolmingov@gmail.com
License: UNKNOWN
Description: github-cli
        ==========
        
        .. image::
        https://secure.travis-ci.org/sigmavirus24/github-cli.png?branch=master
        :alt: Build Status
        :target: http://travis-ci.org/sigmavirus24/github-cli
        
        
        This tool provides partial itneraction with GitHub and its API from the
        command line. This tool is far from complete or comprehensive.
        
        Dependencies
        ------------
        
        - github3.py_
        
        + requests_
        
        Current Usage
        -------------
        
        If you would like command completion, look in the completion directory for
        your shell of choice. If you don't see one for your shell, feel free to send a
        pull request adding one! **Note**: The current bash completion is imperfect so
        feel free to improve on it and send pull requests.
        
        To get a comprehensive look at the following commands, use their help pages
        like below.
        
        help
        ~~~~
        
        ::
        
        $ gh help
        # Alternatively gh -h
        
        ::
        
        $ gh help follow
        $ gh help fork
        $ gh help gists
        $ gh help issues
        $ gh help my
        $ gh help pulls
        $ gh help repos
        $ gh help unfollow
        
        follow
        ~~~~~~
        
        ::
        
        $ gh follow kennethreitz
        $ gh follow sigmavirus24
        
        fork
        ~~~~
        
        ::
        
        $ gh fork kennethreitz/requests
        $ gh fork sigmavirus24/github3.py
        $ gh fork sigmavirus24/github-cli
        
        gists
        ~~~~~
        
        ::
        
        $ gh gists
        $ gh gists -u sigmavirus24
        $ gh gists create -d "Public gist" file1.rb file2.rb file3.rb
        $ gh gists create -p -d "Private gist" file1.py file2.py file3.py
        
        issues
        ~~~~~~
        
        ::
        
        $ cd path/to/repo/on/GitHub
        $ gh issues
        $ gh sigmavirus24/github3.py issues
        $ gh sigmavirus24/github3.py issues 48
        $ gh issues 48 close
        $ gh issues 48 reopen
        $ gh issues 48 comment
        $ gh issues 48 comments
        
        my
        ~~
        
        ::
        
        $ gh my notifications
        $ gh my dashboard
        $ gh my issues
        $ gh my stars
        $ gh my profile
        
        pulls
        ~~~~~
        
        ::
        
        $ cd path/to/repo/on/GitHub
        $ gh pulls
        $ gh pulls 48 merge
        $ gh pulls 48 close
        $ gh pulls 48 comments
        $ gh pulls create -h
        $ gh pulls create -t "Pull Request Title" kennethreitz:master develop
        
        repos
        ~~~~~
        
        ::
        
        $ gh repos
        $ gh repos create new_repo
        $ gh repos -o orgname create new_repo
        
        unfollow
        ~~~~~~~~
        
        ::
        
        $ gh unfollow sigmavirus24
        
        License
        -------
        
        .. image::
        http://gplv3.fsf.org/gplv3-127x51.png
        :alt: GPLv3
        :target: https://github.com/sigmavirus24/github-cli/blob/master/LICENSE
        
        
        .. links:
        .. _github3.py: https://github.com/sigmavirus24/github3.py
        .. _requests: https://github.com/kennethreitz/requests
        .. _design.rst:
        https://github.com/sigmavirus24/github-cli/blob/master/design.rst
        
        
        0.1.0 xxxx-xx-xx
        ================
        
        First version includes the ability to:
        
        - follow/unfollow a user
        
        - create a gist
        
        - (create/close/reopen/comment on/list comments on) an issue
        
        - create/list/fork repositories
        
        - print out your dashboard, notifications, stars, and issues
        
        - (create/close/reopen/merge) pull requests
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
