I'm able to complete the conversion, but don't like the resulting folder structure. The repository I'm converting to GIT is a Visual Studio Solution that contains about 10 Projects.
The commands I'm using are:
git svn init https:/svn.example.com/:8443/svn/myrepo --no-metadata
git config svn.authorsfile ./users.txt
git svn fetch
The operation completes with a structure like this:
.git
trunk
Project 1
Project 2
...
Solution.sln
I would like to eliminate the output subfolder (trunk/
) completely, like this:
.git
Project 1
Project 2
...
Solution.sln
I don't seem to be seeing the option to set the output folder. How can trunk/ be eliminated?