Metadata-Version: 1.0
Name: git-query
Version: 0.0.1.dev13
Summary: Tool to query info from Gerrit like pending reviews
Home-page: https://github.com/sudocode/git-query
Author: Daniel Park
Author-email: sudocoder@ymail.com
License: MIT
Description: git-query
        =========
        
        A Git plugin to look up stuff like pending reviews, review URLs, etc
        from Gerrit
        
        Setup
        ~~~~~
        
        ``sudo pip install git+https://github.com/sudocode/git-query.git``
        
        Configuration
        ~~~~~~~~~~~~~
        
        Add the following lines to your .bash\_profile:
        
        ::
        
            export GERRIT_HOST='http://gerrit.example.com'
            export GERRIT_USERNAME='your_username'
            export GERRIT_TOKEN='your_api_token'  # explained below
        
        Don't forget to source (or reset your terminal session)!
        
        Generating a Gerrit API Token
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        1. Go to your Settings in Gerrit (in the menu when you click on your
           name in the top-right)
        2. Click **HTTP Password**
        3. Click **Generate Password**
        
        Usage
        ~~~~~
        
        You can either use ``git query`` or ``git ?``. You will need to be in a
        repo that exists in Gerrit.
        
        ::
        
            # get info from Gerrit about the current commit
            git query
            git ?
        
            # list all Gerrit IDs for the current repo
            git query -a
            git query --all
            git ? -a
            git ? --all
        
            # get info from Gerrit about a specific ID
            git query 1234
            git ? 1234
        
        
Keywords: gerrit
review
gerrit review
Platform: UNKNOWN
