1GIT-SUMMARY(1) Git Extras GIT-SUMMARY(1)
2
3
4
6 git-summary - Show repository summary
7
9 git-summary [--line] [<commitish>]
10
12 Shows a summary of the repository.
13
15 <commitish>
16
17 Summarize only the range of commits included in the <commitish>.
18
19 --line
20
21 Summarize with lines other than commits. This actually just results in
22 a call to git-line-summary(1). Any <commitish> is ignored when --line
23 is specified. See git-line-summary(1) for more info.
24
26 Outputs a repo summary:
27
28
29
30 $ git summary
31
32 project : express
33 repo age : 10 months ago
34 commits : 1893
35 active : 93 days
36 files : 111
37 authors :
38 1285 visionmedia
39 478 Tj Holowaychuk
40 48 Aaron Heckmann
41 34 csausdev
42 26 ciaranj
43 6 Guillermo Rauch
44 3 Nick Poulden
45 2 Brian McKinney
46 2 Benny Wong
47 1 Justin Lilly
48 1 James Herdman
49 1 Adam Sanderson
50 1 Viktor Kelemen
51 1 Gregory Ritter
52 1 Greg Ritter
53 1 ewoudj
54 1 isaacs
55 1 Matt Colyer
56
57
58
59 This command can also take a commitish, and will print a summary for
60 the range of commits included in the commitish:
61
62
63
64 $ git summary v42..
65
66
67
69 Written by Tj Holowaychuk <tj@vision-media.ca>
70
72 <https://github.com/tj/git-extras/issues>
73
75 <https://github.com/tj/git-extras>
76
77
78
79 October 2017 GIT-SUMMARY(1)