diff --git a/man/git-effort.1 b/man/git-effort.1 index 5813cad..19f066f 100644 --- a/man/git-effort.1 +++ b/man/git-effort.1 @@ -1,13 +1,13 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-EFFORT" "1" "July 2015" "" "Git Extras" +.TH "GIT\-EFFORT" "1" "August 2015" "" "Git Extras" . .SH "NAME" \fBgit\-effort\fR \- Show effort statistics on file(s) . .SH "SYNOPSIS" -\fBgit\-effort\fR [\-\-above ] [] [] +\fBgit\-effort\fR [\-\-above ] [] [[\-\-] \.\.\.] . .SH "DESCRIPTION" Shows effort statistics about files in the repository\. @@ -40,10 +40,10 @@ to read about options to limit which commits are counted\. Note: \fBgit\-effort\fR does not accept commit ranges\. . .P - +[\-\-] \.\.\. . .P -Only display effort statistics for a specific filename\. +Only count commits that touches the given paths\. . .SH "EXAMPLES" Displays "effort" statistics: @@ -72,11 +72,29 @@ $ git effort \-\-after="one year ago" \-\-above 5 \-\-author="Leila Muhtasib" file commits active days git\-extras 15 12 - git\-release 6 9 + git\-release 6 4 git\-effort 6 2 git\-ignore 4 4 - git\-changelog 3 5 - git\-graft 2 3 + git\-changelog 3 2 + git\-graft 2 2 +. +.fi +. +.IP "" 0 +. +.P +Showing statistics on directories is also possible +. +.IP "" 4 +. +.nf + +$ git effort bin man + + file commits active days + + bin\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\. 406 232 + man\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\. 118 80 . .fi . diff --git a/man/git-effort.html b/man/git-effort.html index b72b5eb..92f0670 100644 --- a/man/git-effort.html +++ b/man/git-effort.html @@ -76,7 +76,7 @@

SYNOPSIS

-

git-effort [--above <value>] [<options>] [<filename>]

+

git-effort [--above <value>] [<options>] [[--] <path>...]

DESCRIPTION

@@ -98,9 +98,9 @@

Note: git-effort does not accept commit ranges.

-

<filename>

+

[--] <path>...

-

Only display effort statistics for a specific filename.

+

Only count commits that touches the given paths.

EXAMPLES

@@ -126,16 +126,26 @@ $ git effort --after="one year ago" --above 5 --author="Leila Muhtasib" file commits active days git-extras 15 12 - git-release 6 9 + git-release 6 4 git-effort 6 2 git-ignore 4 4 - git-changelog 3 5 - git-graft 2 3 + git-changelog 3 2 + git-graft 2 2 + + +

Showing statistics on directories is also possible

+ +
$ git effort bin man
+
+  file                                          commits    active days
+
+  bin.......................................... 406         232
+  man.......................................... 118         80
 

AUTHOR

-

Written by Leila Muhtasib <muhtasib@gmail.com>

+

Written by Leila Muhtasib <muhtasib@gmail.com>

REPORTING BUGS

@@ -148,7 +158,7 @@ $ git effort --after="one year ago" --above 5 --author="Leila Muhtasib"
  1. -
  2. July 2015
  3. +
  4. August 2015
  5. git-effort(1)
diff --git a/man/git-effort.md b/man/git-effort.md index 700dddc..b742702 100644 --- a/man/git-effort.md +++ b/man/git-effort.md @@ -59,6 +59,15 @@ git-effort(1) -- Show effort statistics on file(s) git-changelog 3 2 git-graft 2 2 + Showing statistics on directories is also possible + + $ git effort bin man + + file commits active days + + bin.......................................... 406 232 + man.......................................... 118 80 + ## AUTHOR