I am trying to migrate our SVN repository to Git. Our SVN repository looks like this:
Repository name
->branches
->file1
->file2
->etc...
->trunk
->otherfile1
->otherfile2
->etc...
I initialize the repository likes this git svn init svn://example.com/project --stdlayout --no-metadata
After that git svn fetch
. When everything finishes it looks likes it fetches just elements from the trunk - otherfile1, otherfile2 and etc...
Problem is that I want to get the same folder structure as is was in our SVN repository and not just files from trunk. Is it possible to do that?
Thank you in advance