Skip to content

Commit c6fca87

Browse files
committed
Document output format
1 parent 70cc737 commit c6fca87

20 files changed

+42
-2
lines changed

tools/git/scripts/additions_per_day

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of additions per day.
4+
#
5+
# <month> <day> <year> <additions>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

tools/git/scripts/additions_per_hour

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of additions per hour.
4+
#
5+
# <hour> <additions>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

tools/git/scripts/additions_per_month

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of additions per month.
4+
#
5+
# <month> <year> <additions>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

tools/git/scripts/additions_per_weekday

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of additions per weekday.
4+
#
5+
# <weekday> <additions>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

tools/git/scripts/author_additions_per_day

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of additions per day per author.
4+
#
5+
# <month> <day> <year> <author_first_name> <author_last_name> <additions>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

tools/git/scripts/author_additions_per_month

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of additions per month per author.
4+
#
5+
# <month> <year> <author_first_name> <author_last_name> <additions>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

tools/git/scripts/author_additions_per_weekday

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of additions per weekday per author.
4+
#
5+
# <weekday> <author_first_name> <author_last_name> <additions>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

tools/git/scripts/author_commits_per_day

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of commits per day per author.
4+
#
5+
# <month> <day> <year> <author_first_name> <author_last_name> <number_of_commits>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

tools/git/scripts/author_commits_per_hour

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of commits per hour per author.
4+
#
5+
# <hour> <author_first_name> <author_last_name> <number_of_commits>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

tools/git/scripts/author_commits_per_month

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
#
33
# Prints the number of commits per month per author.
4+
#
5+
# <month> <year> <author_first_name> <author_last_name> <number_of_commits>
46

57
# Determine root directory:
68
root="$(git rev-parse --show-toplevel)"

0 commit comments

Comments
 (0)