Skip to content

Commit f8eadf4

Browse files
committed
Add script which generates list of release contributors
1 parent 0d8910e commit f8eadf4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
# Generates a list with all contributors between two tags
4+
# generate-release-contributors-list <tag-1> <tag-2>
5+
#
6+
# Example
7+
# $ ./generate-release-contributors-list v1.4.0 v1.5.0
8+
9+
git log $1..$2 --format='%aN' | sort | uniq > $2-contributors

0 commit comments

Comments
 (0)