Skip to content

Commit 0fcae2d

Browse files
committed
Add comments
1 parent 2200d40 commit 0fcae2d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tools/git/scripts/list_contributors

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,10 @@
22
#
33
# List contributors in alphabetical order.
44

5+
# * `git shortlog -sne`
6+
# - Generate a log summary with commit counts.
7+
# * `cut -f 2`
8+
# - Keep everything on the line starting from the second column.
9+
# * `sort`
10+
# - Sort in alphabetical order.
511
git shortlog -sne | cut -f 2 | sort

0 commit comments

Comments
 (0)