We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2200d40 commit 0fcae2dCopy full SHA for 0fcae2d
tools/git/scripts/list_contributors
@@ -2,4 +2,10 @@
2
#
3
# List contributors in alphabetical order.
4
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.
11
git shortlog -sne | cut -f 2 | sort
0 commit comments