Skip to content

Instantly share code, notes, and snippets.

@inz
Created April 19, 2011 12:56
Show Gist options
  • Save inz/927466 to your computer and use it in GitHub Desktop.
Save inz/927466 to your computer and use it in GitHub Desktop.
List svn authors for easier migration to 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} = ${author} <${author}>";
done
@tgenlschmidt
Copy link

Awesome 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment