-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-runstats.1
67 lines (58 loc) · 1.39 KB
/
git-runstats.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.TH GIT-RUNSTATS 1 "JULY 2020" GIT-RUNSTATS "git contribution statistics"
.SH NAME
git-runstats - display git contribution statistics (changes)
.SH SYNPOSIS
git-runstats [--limit] [--no-tty] [GITARGS]...
.SH DESCRIPTION
Display git contribution statistics (insertions + deletions). Answers the
questions: "Who dunnit?", "Who can I ask?". git-runstats updates the statistics
live as `git log` outputs the data, press Ctrl-C once you have enough
information. It is meants to be a more humanfriendly `git shortlog`. Use -- to
separate GITARGS.
.SH OPTIONS
-l, --limit INTEGER Number of commits to read
--tty / --no-tty Enable tty
Most arguments of `git log` are valid too, but do not change the output-format.
.SH EXAMPLES
.RE
Live-stats
.RS
git runstats
.RE
Stats for `README.md`
.RS
git runstats README.md
.RE
Display help
.RS
git-runstats --help
.RE
Non-live stats with limit
.RS
git runstats -l 1000 | less
.RE
Non-live stats reversed
.RS
git runstats -l 1000 | head -n -1 | sort -n
.RE
Show stats in branch
.RS
git runstats master..my_branch
.RE
Show stats in current branch
.RS
git runstats master..
.RE
Show stats from 2019
.RS
git runstats -- --since=2019-01-01 --until=2019-12-31
.RE
Who knows most about the rust alpine linux package
.RS
cd aports
git runstats community/rust
.SH AUTHOR
Jean-Louis Fuchs - https://github.com/adfinis-sygroup/git-runstats
.SH "SEE ALSO"
.BR git-log(1)
.BR git(1)