0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 03:52:15 +02:00
Anki-Android/tools/list-of-committers-since-version.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
239 B
Bash
Raw Normal View History

2011-11-25 15:57:26 +01:00
#!/bin/bash
# List of committers since a particular commit or tag
# Usage: ./list-of-committers-since-version.sh v0.7
TAG=$1
git log $TAG.. --format="- %aN" --reverse | perl -e 'my %dedupe; while (<STDIN>) { print unless $dedupe{$_}++}'