mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
git-summary: add missing example of --line option
This commit is contained in:
parent
fd36fc0ea2
commit
cf3e1e7e7d
|
|
@ -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>
|
||||
.
|
||||
|
|
|
|||
|
|
@ -131,9 +131,21 @@ authors :
|
|||
<pre><code>$ git summary v42..
|
||||
</code></pre>
|
||||
|
||||
<p> Outputs a repo summary by line:</p>
|
||||
|
||||
<pre><code>$ git summary --line
|
||||
|
||||
project : git-extras
|
||||
lines : 26820
|
||||
authors :
|
||||
...
|
||||
</code></pre>
|
||||
|
||||
<p> The commitish is ignored when --line is specified.</p>
|
||||
|
||||
<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>
|
||||
|
||||
|
|
@ -146,7 +158,7 @@ authors :
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>July 2019</li>
|
||||
<li class='tc'>October 2019</li>
|
||||
<li class='tr'>git-summary(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -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 <<tj@vision-media.ca>>
|
||||
|
|
|
|||
Loading…
Reference in a new issue