We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00ccd0e commit 9169baeCopy full SHA for 9169bae
tools/git/scripts/authors_per_month
@@ -2,16 +2,14 @@
2
#
3
# Prints the number of authors per month.
4
5
-# <weekday> <month> <year> <number_of_authors>
+# <month> <year> <number_of_authors>
6
7
# * `git log`
8
# - Show logs.
9
# * `awk '{}'`
10
# - Compute number of authors per month.
11
# * `sort -k1n -k2M`
12
# - Sort the year numerically and sort the second key as a month.
13
-# * `awk '{}'`
14
-# - Format the output.
15
git log --format=format:"%ad %aN" --date=format:"%b %Y" --use-mailmap | awk '
16
{
17
mon = $1 OFS $2
0 commit comments