diff --git a/man/git-contrib.1 b/man/git-contrib.1 index 3b5858c..20e7e32 100644 --- a/man/git-contrib.1 +++ b/man/git-contrib.1 @@ -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 +\fBgit\-contrib\fR [|] . .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" . .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 diff --git a/man/git-contrib.html b/man/git-contrib.html index 6b4b84e..cb806f6 100644 --- a/man/git-contrib.html +++ b/man/git-contrib.html @@ -65,7 +65,7 @@
  1. git-contrib(1)
  2. -
  3. +
  4. Git Extras
  5. git-contrib(1)
@@ -76,24 +76,36 @@

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

-
$ git contrib visionmedia
+
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):
 
 

AUTHOR

-

Written by Tj Holowaychuk <tj@vision-media.ca>

+

Written by Tj Holowaychuk <tj@vision-media.ca>

REPORTING BUGS

@@ -115,7 +127,7 @@ visionmedia (18):
  1. -
  2. April 2015
  3. +
  4. August 2015
  5. git-contrib(1)
diff --git a/man/git-contrib.md b/man/git-contrib.md index 7bba0d9..2112545 100644 --- a/man/git-contrib.md +++ b/man/git-contrib.md @@ -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 <>