I am trying to convert a svn repo to Git. I've done the standard Git svn clone <url>
however it stops around a certain point.
These are the commands I ran:
java -jar ../svn-migration-scripts.jar authors <svn-repo-url> > authors.txt
mkdir repo && cd repo
git svn init --prefix="" --stdlayout <svn-repo-url>
git config svn.authorsfile <authors.txt path>
git svn fetch
The error that comes out is:
fatal: Unable to create 'C:/Users/user1/migrate/proj1/.git\svn\refs\remotes\https;C:\Program Files\Git\index.lock':
Invalid argument write-tree: command returned error:128
I'm on Windows 10. I'm not understanding what the error is and how to fix it.