Skip to content

Instantly share code, notes, and snippets.

View timanrebel's full-sized avatar
💭
I may be slow to respond.

Timan Rebel timanrebel

💭
I may be slow to respond.
View GitHub Profile
@stefanfoulis
stefanfoulis / findauthors.sh
Created April 8, 2011 12:37
How to sync svn to git
#!/usr/bin/env bash
# Run this script inside a SVN checkout of the project
authors=$(svn log -q | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print $2 }' | sort | uniq)
for author in ${authors}; do
echo "${author} = NAME <USER@DOMAIN>";