(1) author 추출

체크아웃

$ svn co http://my_svn.com/trunk/

author 추출

$ svn log | grep -e '^r' | awk 'BEGIN { FS = "|" } ; { print $2 }' | sort | uniq > ../authors.txt

(2) svn to git 전환

필요 도구들 설치

$ yum install git-core git-svn ruby ruby rubygems
$ gem install svn2git

git으로 전환

$ svn2git http://my_svn.com/xxx/yyy --authors ../authors.txt --nobranches --notags --username {SVN ID입력}
$ git remote add origin https://my_git/xxx.git
$ git push origin --all

(옵션) 만약에 git 으로 옮긴 이후에 svn에 추가 커밋된 것 전환이 필요하다면 다음과 같이 수행

$ svn2git --rebase