Created
October 31, 2014 08:11
-
-
Save 18601673727/f0a21e57161a97c91399 to your computer and use it in GitHub Desktop.
Convert svn to git
This file contains 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 <USER@DOMAIN>"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment