svnリポジトリからgitリポジトリに移行する


  • 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://[email protected]:12345/new_git_repo.git
git push -u origin master

こんなんでいいのかな