I have 30 some projects which I migrated to Git, from SVN.
However, when I browse the folder structure, I still see the trunk folder there in each project. Is there a way to remove this quickly and automatically?
Here is my svn folder structure, note that the repository itself does not have trunk, but the projects do:
--MyRepository
  --Project1
    --trunk
      -- files
  --Project2
    --trunk
      -- files
  --Project3
    --trunk
      -- files
  --Project4
    --trunk
      -- files
  --Project5
    --trunk
      -- files
  -- ..
And this is what I want in my Git repository:
--MyRepository
  --Project1
    -- files
  --Project2
    -- files
  -- ..
Thanks in advance.
PS: I thought I could share the commands which I use to migrate. There it goes:
mkdir gitRepo && cd gitRepo
git svn init http://bla/svn/myRepo --no-metadata
git config svn.authorsfile ../authors.txt
git svn fetch