Last active
March 13, 2016 06:17
-
-
Save gladkih/9949116 to your computer and use it in GitHub Desktop.
Подготовка svn репозитория для конвертации в git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
authors=$(svn log -q | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print $2 }' | sort | uniq) | |
for author in ${authors}; do | |
echo "${author} = NAME <EMAIL>"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment