mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
Merge pull request #415 from nicolaiskogheim/contrib-docs
contrib: update docs
This commit is contained in:
commit
f943a2db50
|
|
@ -1,31 +1,42 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-CONTRIB" "1" "April 2015" "" ""
|
||||
.TH "GIT\-CONTRIB" "1" "August 2015" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-contrib\fR \- Show user\'s contributions
|
||||
.
|
||||
.SH "SYNOPSIS"
|
||||
\fBgit\-contrib\fR <username>
|
||||
\fBgit\-contrib\fR [<username>|<email>]
|
||||
.
|
||||
.SH "DESCRIPTION"
|
||||
Output a user\'s contributions to a project, based on the author name\.
|
||||
Output a user\'s contributions to a project, based on the author name or email\. Returns multiple entries if there are more than one match\.
|
||||
.
|
||||
.SH "OPTIONS"
|
||||
<username>
|
||||
.
|
||||
.P
|
||||
The name of the user who owns the contributions\.
|
||||
The name or email of the user who owns the contributions\.
|
||||
.
|
||||
.SH "EXAMPLES"
|
||||
.
|
||||
.nf
|
||||
|
||||
Searching with a username
|
||||
|
||||
$ git contrib visionmedia
|
||||
visionmedia (18):
|
||||
Export STATUS_CODES
|
||||
Replaced several Array\.prototype\.slice\.call() calls with Array\.prototype\.unshift\.call()
|
||||
Moved help msg to node\-repl
|
||||
Added multiple arg support for sys\.puts(), print(), etc\.
|
||||
Fix stack output on socket error
|
||||
\.\.\.
|
||||
|
||||
Searching with a partial email
|
||||
|
||||
$ git contrib tj@
|
||||
visionmedia (18):
|
||||
Export STATUS_CODES
|
||||
Moved help msg to node\-repl
|
||||
Added multiple arg support for sys\.puts(), print(), etc\.
|
||||
Fix stack output on socket error
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-contrib(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-contrib(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -76,24 +76,36 @@
|
|||
|
||||
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
||||
|
||||
<p><code>git-contrib</code> <username></p>
|
||||
<p><code>git-contrib</code> [<username>|<email>]</p>
|
||||
|
||||
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
||||
|
||||
<p> Output a user's contributions to a project, based on the author name.</p>
|
||||
<p> Output a user's contributions to a project, based on the author name or email.
|
||||
Returns multiple entries if there are more than one match.</p>
|
||||
|
||||
<h2 id="OPTIONS">OPTIONS</h2>
|
||||
|
||||
<p> <username></p>
|
||||
|
||||
<p> The name of the user who owns the contributions.</p>
|
||||
<p> The name or email of the user who owns the contributions.</p>
|
||||
|
||||
<h2 id="EXAMPLES">EXAMPLES</h2>
|
||||
|
||||
<pre><code>$ git contrib visionmedia
|
||||
<pre><code>Searching with a username
|
||||
|
||||
$ git contrib visionmedia
|
||||
visionmedia (18):
|
||||
Export STATUS_CODES
|
||||
Moved help msg to node-repl
|
||||
Added multiple arg support for sys.puts(), print(), etc.
|
||||
Fix stack output on socket error
|
||||
...
|
||||
|
||||
Searching with a partial email
|
||||
|
||||
$ git contrib tj@
|
||||
visionmedia (18):
|
||||
Export STATUS_CODES
|
||||
Replaced several Array.prototype.slice.call() calls with Array.prototype.unshift.call()
|
||||
Moved help msg to node-repl
|
||||
Added multiple arg support for sys.puts(), print(), etc.
|
||||
Fix stack output on socket error
|
||||
|
|
@ -102,7 +114,7 @@ visionmedia (18):
|
|||
|
||||
<h2 id="AUTHOR">AUTHOR</h2>
|
||||
|
||||
<p>Written by Tj Holowaychuk <<a href="mailto:tj@vision-media.ca" data-bare-link="true">tj@vision-media.ca</a>></p>
|
||||
<p>Written by Tj Holowaychuk <<a href="mailto:tj@vision-media.ca" data-bare-link="true">tj@vision-media.ca</a>></p>
|
||||
|
||||
<h2 id="REPORTING-BUGS">REPORTING BUGS</h2>
|
||||
|
||||
|
|
@ -115,7 +127,7 @@ visionmedia (18):
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>April 2015</li>
|
||||
<li class='tc'>August 2015</li>
|
||||
<li class='tr'>git-contrib(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,29 +3,42 @@ git-contrib(1) -- Show user's contributions
|
|||
|
||||
## SYNOPSIS
|
||||
|
||||
`git-contrib` <username>
|
||||
`git-contrib` [<username>|<email>]
|
||||
|
||||
## DESCRIPTION
|
||||
|
||||
Output a user's contributions to a project, based on the author name.
|
||||
Output a user's contributions to a project, based on the author name or email.
|
||||
Returns multiple entries if there are more than one match.
|
||||
|
||||
## OPTIONS
|
||||
|
||||
<username>
|
||||
|
||||
The name of the user who owns the contributions.
|
||||
The name or email of the user who owns the contributions.
|
||||
|
||||
## EXAMPLES
|
||||
|
||||
Searching with a username
|
||||
|
||||
$ git contrib visionmedia
|
||||
visionmedia (18):
|
||||
Export STATUS_CODES
|
||||
Replaced several Array.prototype.slice.call() calls with Array.prototype.unshift.call()
|
||||
Moved help msg to node-repl
|
||||
Added multiple arg support for sys.puts(), print(), etc.
|
||||
Fix stack output on socket error
|
||||
...
|
||||
|
||||
Searching with a partial email
|
||||
|
||||
$ git contrib tj@
|
||||
visionmedia (18):
|
||||
Export STATUS_CODES
|
||||
Moved help msg to node-repl
|
||||
Added multiple arg support for sys.puts(), print(), etc.
|
||||
Fix stack output on socket error
|
||||
...
|
||||
|
||||
|
||||
## AUTHOR
|
||||
|
||||
Written by Tj Holowaychuk <<tj@vision-media.ca>>
|
||||
|
|
|
|||
Loading…
Reference in a new issue