Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions man/git-contrib.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
28 changes: 20 additions & 8 deletions man/git-contrib.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 17 additions & 4 deletions man/git-contrib.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,42 @@ git-contrib(1) -- Show user's contributions

## SYNOPSIS

`git-contrib` &lt;username&gt;
`git-contrib` [&lt;username&gt;|&lt;email&gt;]

## 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

&lt;username&gt;

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 &lt;<[email protected]>&gt;
Expand Down