OSDN Git Service

contrib-list: don't show names starting with upper-case before others
authorscribu <mail@scribu.net>
Mon, 5 Aug 2013 00:02:13 +0000 (03:02 +0300)
committerscribu <mail@scribu.net>
Mon, 5 Aug 2013 00:02:13 +0000 (03:02 +0300)
utils/contrib-list

index fbce281..b47f016 100755 (executable)
@@ -23,7 +23,7 @@ githubify() {
 
 if [ '-l' == "$linked" ]
 then
-       git log --format="%aN" $prev_version -- | sort | uniq | githubify | tr '\n' ','
+       git log --format="%aN" $prev_version -- | sort -f | uniq | githubify | tr '\n' ','
 else
-       git log --format="%aN <%aE>" $prev_version -- | sort | uniq
+       git log --format="%aN <%aE>" $prev_version -- | sort -f | uniq
 fi