Skip to content

Instantly share code, notes, and snippets.

@gladkih
Last active March 13, 2016 06:17
Show Gist options
  • Save gladkih/9949116 to your computer and use it in GitHub Desktop.
Save gladkih/9949116 to your computer and use it in GitHub Desktop.
Подготовка svn репозитория для конвертации в git
#!/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