I try to use subgit to migrate a 12yo with 14.4kcommit svn repository to git.
My svn repo looks like this:
ProjectA/
branches/
shelving/
tags/
trunk/
ProjectB/
branches/
shelving/
tags/
trunk/
I only want to import it once and so I came with that cmd useing this documentation:
./subgit.bat import --svn-url http://<URL>/collectionOfRepositories/Repository1/ProjectA/ C:\Project1-subgit --default-domain unknownUser.com --minimal-revision 14300 --authors-file authors.txt -T trunk -b branches -t tags --username myUsername
No errors seems to occur but I get stuck on the first commit at 99% less than a minute in :
Translating Subversion revisions to Git commits...
r14300 => ad8d0ea3903771846aa8db32849223ab85c0ed03 | 99% [||||||||| ]
I tried letting it process for an hour but the git project folder hadn't its size changed by 1 byte.
Following the same documentation I tried to use the subgit configure
command with --layout auto
but I get the exact same result.
I'm in a windows environment.
What am I doing wrong ?