Skip to content

Commit

Permalink
Simplify gitlog command, sort contributors by number of contributions
Browse files Browse the repository at this point in the history
  • Loading branch information
robertoaloi committed Apr 12, 2017
1 parent e76804f commit 867cc6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/gitlog.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#/bin/sh

git log | grep Author | sed -- 's/Author: /\* /g' | sed -- 's/<.*>//g' | sort -u | sed -- 's/\* Your Name//g' > $1
git shortlog -s -n | awk '{$1=""}1' | grep -v "Erik Stenman" | grep -v "Your Name" > $1

0 comments on commit 867cc6e

Please sign in to comment.