0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-19 19:42:17 +02:00
Anki-Android/tools/list-of-committers-since-version.sh
2011-11-25 23:57:26 +09:00

8 lines
239 B
Bash
Executable File

#!/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{$_}++}'