diff --git a/man/git-summary.1 b/man/git-summary.1 index 83ec205d5..3c1ba2d41 100644 --- a/man/git-summary.1 +++ b/man/git-summary.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SUMMARY" "1" "July 2019" "" "Git Extras" +.TH "GIT\-SUMMARY" "1" "October 2019" "" "Git Extras" . .SH "NAME" \fBgit\-summary\fR \- Show repository summary @@ -75,6 +75,27 @@ $ git summary v42\.\. . .IP "" 0 . +.P +Outputs a repo summary by line: +. +.IP "" 4 +. +.nf + +$ git summary \-\-line + +project : git\-extras +lines : 26820 +authors : + \.\.\. +. +.fi +. +.IP "" 0 +. +.P +The commitish is ignored when \-\-line is specified\. +. .SH "AUTHOR" Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR> . diff --git a/man/git-summary.html b/man/git-summary.html index 686ac78f2..450115d84 100644 --- a/man/git-summary.html +++ b/man/git-summary.html @@ -131,9 +131,21 @@

EXAMPLES

$ git summary v42..
 
+

Outputs a repo summary by line:

+ +
$ git summary --line
+
+project  : git-extras
+lines    : 26820
+authors  :
+  ...
+
+ +

The commitish is ignored when --line is specified.

+

AUTHOR

-

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

+

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

REPORTING BUGS

@@ -146,7 +158,7 @@

SEE ALSO

  1. -
  2. July 2019
  3. +
  4. October 2019
  5. git-summary(1)
diff --git a/man/git-summary.md b/man/git-summary.md index 9c580699d..8946ef44c 100644 --- a/man/git-summary.md +++ b/man/git-summary.md @@ -12,12 +12,12 @@ Shows a summary of the repository. ## OPTIONS <commitish> - + Summarize only the range of commits included in the <commitish>. --line - Summarize with lines other than commits. + Summarize with lines other than commits. Any <commitish> is ignored when --line is specified. ## EXAMPLES @@ -56,6 +56,17 @@ Shows a summary of the repository. $ git summary v42.. + Outputs a repo summary by line: + + $ git summary --line + + project : git-extras + lines : 26820 + authors : + ... + + The commitish is ignored when --line is specified. + ## AUTHOR Written by Tj Holowaychuk <>