Error with Git SVN clone

前端 未结 6 2105
忘了有多久
忘了有多久 2021-01-17 10:58

I am migrating several projects from SVN to Git, and I am using Git\'s \'svn clone\' feature. I am trying to run the following:

git svn clone --stdlayout --a         


        
6条回答
  •  孤街浪徒
    2021-01-17 11:33

    I have had the same trouble when a svn repository is too large. I was able to handle it with an application SmartGit.

    http://www.syntevo.com/smartgit/svn-tour There is a free trail of 30 Days.

    Another way to solve this issue is too import from a revision if you don't need all the history.

    git svn clone -r12345:HEAD  --stdlayout --authors-file=authors.txt  
    

    And finally you can try this command (to set buffer size) :

    git config http.postBuffer 524288000
    

提交回复
热议问题