- git-svnを使う
# SVNリポジトリをチェックアウト
git svn clone -s http://svn.example.com/existing_svn_repo existing_svn_repo
# 新しいGitリポジトリにプッシュ
cd existing_svn_repo
git remote add origin ssh://git@git.example.com:12345/new_git_repo.git
git push -u origin master
こんなんでいいのかな