]> granicus.if.org Git - curl/commitdiff
contributors.sh: split list of names at comma
authorDaniel Stenberg <daniel@haxx.se>
Fri, 12 Sep 2014 13:12:06 +0000 (15:12 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 12 Sep 2014 13:12:06 +0000 (15:12 +0200)
... to support a list of names provided in a commit message.

contributors.sh

index 153fec9e16ed822ba8143dbbbc267b8fa11a5c85..d148f52898941ace0c23b8200fe1184edddfd8ac 100755 (executable)
@@ -34,6 +34,7 @@ fi
 
 # filter out Author:, Commit: and *by: lines
 # cut off the email parts
+# split list of names at comma
 # cut off spaces first and last on the line
 # only count names with a space (ie more than one word)
 # sort all unique names
@@ -42,6 +43,7 @@ git log $start..HEAD | \
 egrep -i '(Author|Commit|by):' | \
 cut -d: -f2- | \
 cut '-d<' -f1 | \
+tr , '\012' | \
 sed -e 's/^ //' -e 's/ $//g' | \
 grep ' ' | \
 sort -fu |