I need to import svn repo (trunk, branches, tags) to new empty git repo WITHOUT history. Svn history is very large, because many branches and tags exist.
Svn's trunk must get into git's master. Svn's branches must get into git's branches. And svn's tags must get into git's tags. All without history.
This command will import with history:
git svn clone http://server.ru/myrepo/ --stdlayout --preserve-empty-dirs .
Do branches and tags import by hands (checkout each from svn and commit to git) is too laborious.