summaryrefslogtreecommitdiffstats
path: root/libvpx/tools/author_first_release.sh
blob: 7b0b79721253ee5f77586c276e22f951389490e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
##
## List the release each author first contributed to.
##
## Usage: author_first_release.sh [TAGS]
##
## If the TAGS arguments are unspecified, all tags reported by `git tag`
## will be considered.
##
tags=${@:-$(git tag)}
for tag in $tags; do
  git shortlog -n -e -s $tag |
      cut -f2- |
      awk "{print \"${tag#v}\t\"\$0}"
done | sort -k2  | uniq -f2