|
NAMEgit-effort - Show effort statistics on file(s)SYNOPSISgit-effort [--above <value>] [<path>...] [-- [<log options>...]]DESCRIPTIONShows effort statistics about files in the repository.Display includes:
OPTIONS--above <value>Ignore files with commits <= a value. <path>... Only count commits that touches the given paths. Note: git-effort does not accept revision ranges, but the underlying git log does (See the examples). <log options>... Options for git log. Note that you must use -- to separate options to git log from options to git effort. This makes it possible to only count commits you are interested in. Not all options are relevant in the context of git-effort, but those that are is listed under the "Commit Limiting" section on the git-log manpages. EXAMPLESNote: Output will first appear unsorted, then the screen is cleared and the sorted list is output. The initial unsorted list is not shown in the examples for brevity.Displays "effort" statistics:
Showing statistics on directories is also possible:
Only count commits in the specified revision range: $ git effort -- master..feature
AUTHORWritten by Leila Muhtasib <muhtasib@gmail.com>REPORTING BUGS<https://github.com/tj/git-extras/issues>SEE ALSO<https://github.com/tj/git-extras>
Visit the GSP FreeBSD Man Page Interface. |