Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
add contrib script
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbender committed Jul 11, 2012
1 parent 1981b3f commit 898c602
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build/bin/contrib.sh
@@ -0,0 +1,13 @@
set -e

if [ $# -ne 2 ]; then
echo "please supply two versions, eg contribs.sh 1.1.0 1.1.0"
exit 1;
fi

format_contributors='%aN%n%cN';
git whatchanged $1..$2 --pretty=format:"$format_contributors" \
| sed '/^:/ d' \
| sed '/^$/ d' \
| sort \
| uniq

0 comments on commit 898c602

Please sign in to comment.