summaryrefslogtreecommitdiffstats
path: root/tools/git-migration/fetch-authors
blob: 111497b1a12cb86c7fb05538de1e11fce189e0da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

svn log --xml  svn://svn.debian.org/svn/secure-testing \
    | sed '/<author>/! d; s,<author>,,; s,</author>,,' > authors
sort authors | uniq > authors.uniq
cat authors.uniq | \
    while read a; do
        /srv/home/users/carnil/scripts/AUTHOR $a >> AUTHORS.txt
    done

© 2014-2024 Faster IT GmbH | imprint | privacy policy