API-CLI

 view release on metacpan or  search on metacpan

examples/html/githubcl.html  view on Meta::CPAN


<h3 id="DELETE-repos-:owner-:repo-subscription">DELETE /repos/:owner/:repo/subscription</h3>

<pre><code>    githubcl DELETE /repos/:owner/:repo/subscription &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Delete a Repository Subscription....</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="DELETE-teams-:teamId">DELETE /teams/:teamId</h3>

<pre><code>    githubcl DELETE /teams/:teamId &lt;teamId&gt;</code></pre>

<p>Delete team.</p>

<p>Parameters:</p>

<pre><code>    teamId  *  Id of team.</code></pre>

<h3 id="DELETE-teams-:teamId-members-:username">DELETE /teams/:teamId/members/:username</h3>

<pre><code>    githubcl DELETE /teams/:teamId/members/:username &lt;teamId&gt; &lt;username&gt;</code></pre>

<p>The &quot;Remove team member&quot; API is deprecated and is ...</p>

<p>Parameters:</p>

<pre><code>    teamId    *  Id of team.      
    username  *  Name of a member.</code></pre>

<h3 id="DELETE-teams-:teamId-memberships-:username">DELETE /teams/:teamId/memberships/:username</h3>

<pre><code>    githubcl DELETE /teams/:teamId/memberships/:username &lt;teamId&gt; &lt;username&gt;</code></pre>

<p>Remove team membership.</p>

<p>Parameters:</p>

<pre><code>    teamId    *  Id of team.      
    username  *  Name of a member.</code></pre>

<h3 id="DELETE-teams-:teamId-repos-:owner-:repo">DELETE /teams/:teamId/repos/:owner/:repo</h3>

<pre><code>    githubcl DELETE /teams/:teamId/repos/:owner/:repo &lt;teamId&gt; &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>In order to remove a repository from a team, the a...</p>

<p>Parameters:</p>

<pre><code>    teamId  *  Id of team.                
    owner   *  Name of a repository owner.
    repo    *  Name of a repository.      </code></pre>

<h3 id="DELETE-user-emails">DELETE /user/emails</h3>

<pre><code>    githubcl DELETE /user/emails</code></pre>

<p>Delete email address(es).</p>

<h3 id="DELETE-user-following-:username">DELETE /user/following/:username</h3>

<pre><code>    githubcl DELETE /user/following/:username &lt;username&gt;</code></pre>

<p>Unfollow a user.</p>

<p>Parameters:</p>

<pre><code>    username  *  Name of user.</code></pre>

<h3 id="DELETE-user-keys-:keyId">DELETE /user/keys/:keyId</h3>

<pre><code>    githubcl DELETE /user/keys/:keyId &lt;keyId&gt;</code></pre>

<p>Delete a public key. Removes a public key. Require...</p>

<p>Parameters:</p>

<pre><code>    keyId  *  ID of key.</code></pre>

<h3 id="DELETE-user-starred-:owner-:repo">DELETE /user/starred/:owner/:repo</h3>

<pre><code>    githubcl DELETE /user/starred/:owner/:repo &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Unstar a repository</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of a repository owner.
    repo   *  Name of a repository.      </code></pre>

<h3 id="DELETE-user-subscriptions-:owner-:repo">DELETE /user/subscriptions/:owner/:repo</h3>

<pre><code>    githubcl DELETE /user/subscriptions/:owner/:repo &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Stop watching a repository</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of the owner. 
    repo   *  Name of repository.</code></pre>

<h3 id="GET">GET</h3>

<pre><code>    githubcl  GET &lt;subcommands&gt;</code></pre>

<p>GET call</p>

<h3 id="GET-emojis">GET /emojis</h3>

<pre><code>    githubcl GET /emojis</code></pre>

<p>Lists all the emojis available to use on GitHub....</p>

<h3 id="GET-events">GET /events</h3>

<pre><code>    githubcl GET /events</code></pre>

<p>List public events.</p>

examples/html/githubcl.html  view on Meta::CPAN

<p>Options:</p>

<pre><code>    --q-since    Timestamp in ISO 8601 format YYYY-MM-DDTHH:MM:SSZ.    
                 Only gists updated at or after this time are returned.</code></pre>

<h3 id="GET-gitignore-templates">GET /gitignore/templates</h3>

<pre><code>    githubcl GET /gitignore/templates</code></pre>

<p>Listing available templates.</p>

<h3 id="GET-gitignore-templates-:language">GET /gitignore/templates/:language</h3>

<pre><code>    githubcl GET /gitignore/templates/:language &lt;language&gt;</code></pre>

<p>Get a single template.</p>

<p>Parameters:</p>

<pre><code>    language  *  </code></pre>

<h3 id="GET-issues">GET /issues</h3>

<pre><code>    githubcl GET /issues [options]</code></pre>

<p>List issues.</p>

<p>Options:</p>

<pre><code>    --q-filter     *  Issues assigned to you / created by you / mentioning you / you&#39;re       
                      subscribed to updates for / All issues the authenticated user can see   
    --q-state      *                                                                          
    --q-labels     *  String list of comma separated Label names. Example - bug,ui,@high.     
    --q-sort       *                                                                          
    --q-direction  *                                                                          
    --q-since         Optional string of a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
                      Only issues updated at or after this time are returned.                 </code></pre>

<h3 id="GET-legacy-issues-search-:owner-:repository-:state-:keyword">GET /legacy/issues/search/:owner/:repository/:state/:keyword</h3>

<pre><code>    githubcl GET /legacy/issues/search/:owner/:repository/:state/:keyword &lt;keyword&gt; &lt;state&gt; &lt;owner&gt; &lt;repository&gt;</code></pre>

<p>Find issues by state and keyword....</p>

<p>Parameters:</p>

<pre><code>    keyword     *  The search term.                                                          
    state       *  Indicates the state of the issues to return. Can be either open or closed.
    owner       *                                                                            
    repository  *                                                                            </code></pre>

<h3 id="GET-legacy-repos-search-:keyword">GET /legacy/repos/search/:keyword</h3>

<pre><code>    githubcl GET /legacy/repos/search/:keyword [options] &lt;keyword&gt;</code></pre>

<p>Find repositories by keyword. Note, this legacy me...</p>

<p>Options:</p>

<pre><code>    --q-order         The sort field. if sort param is provided. Can be either asc or desc.                      
    --q-language      Filter results by language                                                                 
    --q-start_page    The page number to fetch                                                                   
    --q-sort          The sort field. One of stars, forks, or updated. Default: results are sorted by best match.</code></pre>

<p>Parameters:</p>

<pre><code>    keyword  *  The search term</code></pre>

<h3 id="GET-legacy-user-email-:email">GET /legacy/user/email/:email</h3>

<pre><code>    githubcl GET /legacy/user/email/:email &lt;email&gt;</code></pre>

<p>This API call is added for compatibility reasons o...</p>

<p>Parameters:</p>

<pre><code>    email  *  The email address</code></pre>

<h3 id="GET-legacy-user-search-:keyword">GET /legacy/user/search/:keyword</h3>

<pre><code>    githubcl GET /legacy/user/search/:keyword [options] &lt;keyword&gt;</code></pre>

<p>Find users by keyword.</p>

<p>Options:</p>

<pre><code>    --q-order         The sort field. if sort param is provided. Can be either asc or desc.                      
    --q-start_page    The page number to fetch                                                                   
    --q-sort          The sort field. One of stars, forks, or updated. Default: results are sorted by best match.</code></pre>

<p>Parameters:</p>

<pre><code>    keyword  *  The search term</code></pre>

<h3 id="GET-meta">GET /meta</h3>

<pre><code>    githubcl GET /meta</code></pre>

<p>This gives some information about GitHub.com, the ...</p>

<h3 id="GET-networks-:owner-:repo-events">GET /networks/:owner/:repo/events</h3>

<pre><code>    githubcl GET /networks/:owner/:repo/events &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>List public events for a network of repositories....</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of the owner. 
    repo   *  Name of repository.</code></pre>

<h3 id="GET-notifications">GET /notifications</h3>

<pre><code>    githubcl GET /notifications [options]</code></pre>

<p>List your notifications.</p>

<p>Options:</p>

<pre><code>    --q-all              True to show notifications marked as read.                                       
    --q-participating    True to show only notifications in which the user is directly participating      
                         or mentioned.                                                                    
    --q-since            The time should be passed in as UTC in the ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
                         Example: &quot;2012-10-09T23:39:01Z&quot;.                                                 </code></pre>

<h3 id="GET-notifications-threads-:id">GET /notifications/threads/:id</h3>

<pre><code>    githubcl GET /notifications/threads/:id &lt;id&gt;</code></pre>

<p>View a single thread.</p>

<p>Parameters:</p>

<pre><code>    id  *  Id of thread.</code></pre>

<h3 id="GET-notifications-threads-:id-subscription">GET /notifications/threads/:id/subscription</h3>

<pre><code>    githubcl GET /notifications/threads/:id/subscription &lt;id&gt;</code></pre>

<p>Get a Thread Subscription.</p>

<p>Parameters:</p>

<pre><code>    id  *  Id of thread.</code></pre>

<h3 id="GET-orgs-:org">GET /orgs/:org</h3>

<pre><code>    githubcl GET /orgs/:org &lt;org&gt;</code></pre>

examples/html/githubcl.html  view on Meta::CPAN

<pre><code>    githubcl GET /repos/:owner/:repo/commits/:shaCode &lt;owner&gt; &lt;repo&gt; &lt;shaCode&gt;</code></pre>

<p>Get a single commit.</p>

<p>Parameters:</p>

<pre><code>    owner    *  Name of repository owner.
    repo     *  Name of repository.      
    shaCode  *  SHA-1 code of the commit.</code></pre>

<h3 id="GET-repos-:owner-:repo-commits-:shaCode-comments">GET /repos/:owner/:repo/commits/:shaCode/comments</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/commits/:shaCode/comments &lt;owner&gt; &lt;repo&gt; &lt;shaCode&gt;</code></pre>

<p>List comments for a single commitList comments for...</p>

<p>Parameters:</p>

<pre><code>    owner    *  Name of repository owner.
    repo     *  Name of repository.      
    shaCode  *  SHA-1 code of the commit.</code></pre>

<h3 id="GET-repos-:owner-:repo-compare-:baseId...:headId">GET /repos/:owner/:repo/compare/:baseId...:headId</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/compare/:baseId...:headId &lt;owner&gt; &lt;repo&gt; &lt;baseId&gt; &lt;headId&gt;</code></pre>

<p>Compare two commits</p>

<p>Parameters:</p>

<pre><code>    owner   *  Name of repository owner.
    repo    *  Name of repository.      
    baseId  *                           
    headId  *                           </code></pre>

<h3 id="GET-repos-:owner-:repo-contents-:path">GET /repos/:owner/:repo/contents/:path</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/contents/:path [options] &lt;owner&gt; &lt;repo&gt; &lt;path&gt;</code></pre>

<p>Get contents.</p>

<p>Options:</p>

<pre><code>    --q-path    The content path.                                              
    --q-ref     The String name of the Commit/Branch/Tag. Defaults to &#39;master&#39;.</code></pre>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      
    path   *                           </code></pre>

<h3 id="GET-repos-:owner-:repo-contributors">GET /repos/:owner/:repo/contributors</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/contributors [options] &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Get list of contributors.</p>

<p>Options:</p>

<pre><code>    --q-anon  *  Set to 1 or true to include anonymous contributors in results.</code></pre>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="GET-repos-:owner-:repo-deployments">GET /repos/:owner/:repo/deployments</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/deployments &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Users with pull access can view deployments for a ...</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="GET-repos-:owner-:repo-deployments-:id-statuses">GET /repos/:owner/:repo/deployments/:id/statuses</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/deployments/:id/statuses &lt;owner&gt; &lt;repo&gt; &lt;id&gt;</code></pre>

<p>Users with pull access can view deployment statuse...</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.                   
    repo   *  Name of repository.                         
    id     *  The Deployment ID to list the statuses from.</code></pre>

<h3 id="GET-repos-:owner-:repo-downloads">GET /repos/:owner/:repo/downloads</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/downloads &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Deprecated. List downloads for a repository....</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="GET-repos-:owner-:repo-downloads-:downloadId">GET /repos/:owner/:repo/downloads/:downloadId</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/downloads/:downloadId &lt;owner&gt; &lt;repo&gt; &lt;downloadId&gt;</code></pre>

<p>Deprecated. Get a single download....</p>

<p>Parameters:</p>

<pre><code>    owner       *  Name of repository owner.
    repo        *  Name of repository.      
    downloadId  *  Id of download.          </code></pre>

<h3 id="GET-repos-:owner-:repo-events">GET /repos/:owner/:repo/events</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/events &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Get list of repository events.</p>

<p>Parameters:</p>

examples/html/githubcl.html  view on Meta::CPAN


<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="GET-repos-:owner-:repo-tags">GET /repos/:owner/:repo/tags</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/tags &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Get list of tags.</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="GET-repos-:owner-:repo-teams">GET /repos/:owner/:repo/teams</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/teams &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Get list of teams</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="GET-repos-:owner-:repo-watchers">GET /repos/:owner/:repo/watchers</h3>

<pre><code>    githubcl GET /repos/:owner/:repo/watchers &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>List Stargazers. New implementation....</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="GET-repositories">GET /repositories</h3>

<pre><code>    githubcl GET /repositories [options]</code></pre>

<p>List all public repositories.</p>

<p>Options:</p>

<pre><code>    --q-since    The time should be passed in as UTC in the ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
                 Example: &quot;2012-10-09T23:39:01Z&quot;.                                                 </code></pre>

<h3 id="GET-search-code">GET /search/code</h3>

<pre><code>    githubcl GET /search/code [options]</code></pre>

<p>Search code.</p>

<p>Options:</p>

<pre><code>    --q-order     The sort field. if sort param is provided. Can be either asc or desc.      
    --q-q      *  The search terms. This can be any combination of the supported code        
                  search parameters:                                                         
                  &#39;Search In&#39; Qualifies which fields are searched. With this qualifier       
                  you can restrict the search to just the file contents, the file path,      
                  or both.                                                                   
                  &#39;Languages&#39; Searches code based on the language it&#39;s written in.           
                  &#39;Forks&#39; Filters repositories based on the number of forks, and/or          
                  whether code from forked repositories should be included in the results    
                  at all.                                                                    
                  &#39;Size&#39; Finds files that match a certain size (in bytes).                   
                  &#39;Path&#39; Specifies the path that the resulting file must be at.              
                  &#39;Extension&#39; Matches files with a certain extension.                        
                  &#39;Users&#39; or &#39;Repositories&#39; Limits searches to a specific user or repository.
    --q-sort      Can only be &#39;indexed&#39;, which indicates how recently a file has been indexed
                  by the GitHub search infrastructure. If not provided, results are sorted   
                  by best match.                                                             </code></pre>

<h3 id="GET-search-issues">GET /search/issues</h3>

<pre><code>    githubcl GET /search/issues [options]</code></pre>

<p>Find issues by state and keyword. (This method ret...</p>

<p>Options:</p>

<pre><code>    --q-order     The sort field. if sort param is provided. Can be either asc or desc.                           
    --q-q      *  The q search term can also contain any combination of the supported issue search qualifiers:    
    --q-sort      The sort field. Can be comments, created, or updated. Default: results are sorted by best match.</code></pre>

<h3 id="GET-search-repositories">GET /search/repositories</h3>

<pre><code>    githubcl GET /search/repositories [options]</code></pre>

<p>Search repositories.</p>

<p>Options:</p>

<pre><code>    --q-order     The sort field. if sort param is provided. Can be either asc or desc.       
    --q-q      *  The search terms. This can be any combination of the supported repository   
                  search parameters:                                                          
                  &#39;Search In&#39; Qualifies which fields are searched. With this qualifier you    
                  can restrict the search to just the repository name, description, readme,   
                  or any combination of these.                                                
                  &#39;Size&#39; Finds repositories that match a certain size (in kilobytes).         
                  &#39;Forks&#39; Filters repositories based on the number of forks, and/or whether   
                  forked repositories should be included in the results at all.               
                  &#39;Created&#39; and &#39;Last Updated&#39; Filters repositories based on times of         
                  creation, or when they were last updated.                                   
                  &#39;Users or Repositories&#39; Limits searches to a specific user or repository.   
                  &#39;Languages&#39; Searches repositories based on the language they are written in.
                  &#39;Stars&#39; Searches repositories based on the number of stars.                 
    --q-sort      If not provided, results are sorted by best match.                          </code></pre>

<h3 id="GET-search-users">GET /search/users</h3>

<pre><code>    githubcl GET /search/users [options]</code></pre>

<p>Search users.</p>

<p>Options:</p>

<pre><code>    --q-order     The sort field. if sort param is provided. Can be either asc or desc.    
    --q-q      *  The search terms. This can be any combination of the supported user      
                  search parameters:                                                       
                  &#39;Search In&#39; Qualifies which fields are searched. With this qualifier you 
                  can restrict the search to just the username, public email, full name,   
                  location, or any combination of these.                                   
                  &#39;Repository count&#39; Filters users based on the number of repositories they
                  have.                                                                    
                  &#39;Location&#39; Filter users by the location indicated in their profile.      
                  &#39;Language&#39; Search for users that have repositories that match a certain  
                  language.                                                                
                  &#39;Created&#39; Filter users based on when they joined.                        
                  &#39;Followers&#39; Filter users based on the number of followers they have.     
    --q-sort      If not provided, results are sorted by best match.                       </code></pre>

<h3 id="GET-teams-:teamId">GET /teams/:teamId</h3>

<pre><code>    githubcl GET /teams/:teamId &lt;teamId&gt;</code></pre>

<p>Get team.</p>

<p>Parameters:</p>

<pre><code>    teamId  *  Id of team.</code></pre>

<h3 id="GET-teams-:teamId-members">GET /teams/:teamId/members</h3>

<pre><code>    githubcl GET /teams/:teamId/members &lt;teamId&gt;</code></pre>

<p>List team members.</p>

<p>Parameters:</p>

<pre><code>    teamId  *  Id of team.</code></pre>

<h3 id="GET-teams-:teamId-members-:username">GET /teams/:teamId/members/:username</h3>

<pre><code>    githubcl GET /teams/:teamId/members/:username &lt;teamId&gt; &lt;username&gt;</code></pre>

<p>The &quot;Get team member&quot; API is deprecated and is sch...</p>

<p>Parameters:</p>

<pre><code>    teamId    *  Id of team.      
    username  *  Name of a member.</code></pre>

<h3 id="GET-teams-:teamId-memberships-:username">GET /teams/:teamId/memberships/:username</h3>

<pre><code>    githubcl GET /teams/:teamId/memberships/:username &lt;teamId&gt; &lt;username&gt;</code></pre>

<p>Get team membership.</p>

<p>Parameters:</p>

<pre><code>    teamId    *  Id of team.      
    username  *  Name of a member.</code></pre>

<h3 id="GET-teams-:teamId-repos">GET /teams/:teamId/repos</h3>

<pre><code>    githubcl GET /teams/:teamId/repos &lt;teamId&gt;</code></pre>

<p>List team repos</p>

<p>Parameters:</p>

<pre><code>    teamId  *  Id of team.</code></pre>

<h3 id="GET-teams-:teamId-repos-:owner-:repo">GET /teams/:teamId/repos/:owner/:repo</h3>

<pre><code>    githubcl GET /teams/:teamId/repos/:owner/:repo &lt;teamId&gt; &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Check if a team manages a repository...</p>

<p>Parameters:</p>

<pre><code>    teamId  *  Id of team.                
    owner   *  Name of a repository owner.
    repo    *  Name of a repository.      </code></pre>

<h3 id="GET-user">GET /user</h3>

<pre><code>    githubcl GET /user</code></pre>

<p>Get the authenticated user.</p>

<h3 id="GET-user-emails">GET /user/emails</h3>

<pre><code>    githubcl GET /user/emails</code></pre>

<p>List email addresses for a user....</p>

<h3 id="GET-user-followers">GET /user/followers</h3>

<pre><code>    githubcl GET /user/followers</code></pre>

<p>List the authenticated user&#39;s followers...</p>

<h3 id="GET-user-following">GET /user/following</h3>

<pre><code>    githubcl GET /user/following</code></pre>

<p>List who the authenticated user is following....</p>

<h3 id="GET-user-following-:username">GET /user/following/:username</h3>

<pre><code>    githubcl GET /user/following/:username &lt;username&gt;</code></pre>

<p>Check if you are following a user....</p>

<p>Parameters:</p>

<pre><code>    username  *  Name of user.</code></pre>

<h3 id="GET-user-issues">GET /user/issues</h3>

<pre><code>    githubcl GET /user/issues [options]</code></pre>

<p>List issues.</p>

<p>Options:</p>

<pre><code>    --q-filter     *  Issues assigned to you / created by you / mentioning you / you&#39;re       
                      subscribed to updates for / All issues the authenticated user can see   
    --q-state      *                                                                          
    --q-labels     *  String list of comma separated Label names. Example - bug,ui,@high.     
    --q-sort       *                                                                          
    --q-direction  *                                                                          
    --q-since         Optional string of a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
                      Only issues updated at or after this time are returned.                 </code></pre>

<h3 id="GET-user-keys">GET /user/keys</h3>

<pre><code>    githubcl GET /user/keys</code></pre>

<p>List your public keys.</p>

<h3 id="GET-user-keys-:keyId">GET /user/keys/:keyId</h3>

<pre><code>    githubcl GET /user/keys/:keyId &lt;keyId&gt;</code></pre>

<p>Get a single public key.</p>

<p>Parameters:</p>

<pre><code>    keyId  *  ID of key.</code></pre>

<h3 id="GET-user-orgs">GET /user/orgs</h3>

<pre><code>    githubcl GET /user/orgs</code></pre>

examples/html/githubcl.html  view on Meta::CPAN


<pre><code>    githubcl POST /repos/:owner/:repo/milestones &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Create a milestone.</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="POST-repos-:owner-:repo-pulls">POST /repos/:owner/:repo/pulls</h3>

<pre><code>    githubcl POST /repos/:owner/:repo/pulls &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Create a pull request.</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="POST-repos-:owner-:repo-pulls-:number-comments">POST /repos/:owner/:repo/pulls/:number/comments</h3>

<pre><code>    githubcl POST /repos/:owner/:repo/pulls/:number/comments &lt;owner&gt; &lt;repo&gt; &lt;number&gt;</code></pre>

<p>Create a comment.</p>

<p>Parameters:</p>

<pre><code>    owner   *  Name of repository owner.
    repo    *  Name of repository.      
    number  *  Id of pull.              </code></pre>

<h3 id="POST-repos-:owner-:repo-releases">POST /repos/:owner/:repo/releases</h3>

<pre><code>    githubcl POST /repos/:owner/:repo/releases &lt;owner&gt; &lt;repo&gt;</code></pre>

<p>Create a release</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.
    repo   *  Name of repository.      </code></pre>

<h3 id="POST-repos-:owner-:repo-statuses-:ref">POST /repos/:owner/:repo/statuses/:ref</h3>

<pre><code>    githubcl POST /repos/:owner/:repo/statuses/:ref &lt;owner&gt; &lt;repo&gt; &lt;ref&gt;</code></pre>

<p>Create a Status.</p>

<p>Parameters:</p>

<pre><code>    owner  *  Name of repository owner.                                                    
    repo   *  Name of repository.                                                          
    ref    *  Ref to list the statuses from. It can be a SHA, a branch name, or a tag name.</code></pre>

<h3 id="POST-user-emails">POST /user/emails</h3>

<pre><code>    githubcl POST /user/emails</code></pre>

<p>Add email address(es).</p>

<h3 id="POST-user-keys">POST /user/keys</h3>

<pre><code>    githubcl POST /user/keys</code></pre>

<p>Create a public key.</p>

<h3 id="POST-user-repos">POST /user/repos</h3>

<pre><code>    githubcl POST /user/repos</code></pre>

<p>Create a new repository for the authenticated user...</p>

<h3 id="PUT">PUT</h3>

<pre><code>    githubcl  PUT &lt;subcommands&gt;</code></pre>

<p>PUT call</p>

<h3 id="PUT-gists-:id-star">PUT /gists/:id/star</h3>

<pre><code>    githubcl PUT /gists/:id/star &lt;id&gt;</code></pre>

<p>Star a gist.</p>

<p>Parameters:</p>

<pre><code>    id  *  Id of gist.</code></pre>

<h3 id="PUT-notifications">PUT /notifications</h3>

<pre><code>    githubcl PUT /notifications</code></pre>

<p>Mark as read.</p>

<h3 id="PUT-notifications-threads-:id-subscription">PUT /notifications/threads/:id/subscription</h3>

<pre><code>    githubcl PUT /notifications/threads/:id/subscription &lt;id&gt;</code></pre>

<p>Set a Thread Subscription.</p>

<p>Parameters:</p>

<pre><code>    id  *  Id of thread.</code></pre>

<h3 id="PUT-orgs-:org-public_members-:username">PUT /orgs/:org/public_members/:username</h3>

<pre><code>    githubcl PUT /orgs/:org/public_members/:username &lt;org&gt; &lt;username&gt;</code></pre>

<p>Publicize a user&#39;s membership.</p>

<p>Parameters:</p>

<pre><code>    org       *  Name of organisation.
    username  *  Name of the user.    </code></pre>

<h3 id="PUT-repos-:owner-:repo-collaborators-:user">PUT /repos/:owner/:repo/collaborators/:user</h3>

<pre><code>    githubcl PUT /repos/:owner/:repo/collaborators/:user &lt;owner&gt; &lt;repo&gt; &lt;user&gt;</code></pre>



( run in 0.556 second using v1.01-cache-2.11-cpan-39bf76dae61 )