-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #391 from nicolaiskogheim/effort-limit-commits
[RFC] effort: Allow sending options to log. Fix #326
- Loading branch information
Showing
5 changed files
with
134 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ git-effort(1) -- Show effort statistics on file(s) | |
|
||
## SYNOPSIS | ||
|
||
`git-effort` [--above <value>] [<filename>] | ||
`git-effort` [--above <value>] [<options>] [<filename>] | ||
|
||
## DESCRIPTION | ||
|
||
|
@@ -19,6 +19,12 @@ git-effort(1) -- Show effort statistics on file(s) | |
|
||
Ignore files with commits <= a value. | ||
|
||
Run | ||
man -P 'less +/Commit\ Limiting' git-log | ||
to read about options to limit which commits are counted. | ||
|
||
Note: `git-effort` does not accept commit ranges. | ||
|
||
<filename> | ||
|
||
Only display effort statistics for a specific filename. | ||
|
@@ -42,6 +48,17 @@ git-effort(1) -- Show effort statistics on file(s) | |
git-repl 7 5 | ||
|
||
|
||
$ git effort --after="one year ago" --above 5 --author="Leila Muhtasib" | ||
|
||
file commits active days | ||
|
||
git-extras 15 12 | ||
git-release 6 9 | ||
git-effort 6 2 | ||
git-ignore 4 4 | ||
git-changelog 3 5 | ||
git-graft 2 3 | ||
|
||
## AUTHOR | ||
|
||
Written by Leila Muhtasib <<[email protected]>> | ||
|
@@ -52,4 +69,4 @@ Written by Leila Muhtasib <<[email protected]>> | |
|
||
## SEE ALSO | ||
|
||
<<https://github.com/tj/git-extras>> | ||
<<https://github.com/tj/git-extras>> |