I am trying to clone an svn repository into git on Windows 10. To provide a sense of the size of the repository, it contains 100 revisions and the current (exported) codebase is about 4MB in 430 files. The repository does not have the "standard" root/branch/tag layout.
My "anonymized" command is:
git svn clone https://my_svn_url --prefix=svn/ --no-metadata C:/my_folder_path
The clone command reports "Initialized empty Git repository ..." and I can see the resulting folders, but beyond that, I see a perl process chewing up CPU with nothing happening. I've let it run for about 15 minutes before giving up and killing the processes.
Is there something wrong with my command? Is it just very slow? (I am running on a 2.4GHz i7 laptop and the perl process sits at about 18%). Is it unable to handle the non-standard repository layout?